@@ -25,13 +25,52 @@ helm repo update
2525### RTC Egress
2626
2727``` bash
28- helm install egress agora/rtc-egress
28+ helm install my-rtc- egress agora/rtc-egress
2929```
3030
3131With custom values:
3232
3333``` bash
34- helm install egress agora/rtc-egress -f my-values.yaml
34+ helm install my-rtc-egress agora/rtc-egress -f my-values.yaml
35+ ```
36+
37+ Full values.yaml:
38+
39+ ``` bash
40+ helm install my-rtc-egress agora/rtc-egress \
41+ --namespace myrtc-egress \
42+ --set agora.appId=$AGORA_APP_ID \
43+ --set redis.external.host=$REDIS_HOST \
44+ --set redis.external.port=$REDIS_PORT \
45+ --set image.tag=$IMAGE_TAG \
46+ --set ' global.imagePullSecrets[0].name=ghcr-secret'
47+ ```
48+
49+ ``` bash
50+ helm list -n myrtc-egress
51+ ```
52+
53+ ``` bash
54+ kubectl get pods -n myrtc-egress
55+ ```
56+
57+ ``` bash
58+ kubectl logs -n myrtc-egress my-rtc-egress-69b7b86d5b-sfzcq
59+ ```
60+
61+ If you want to upgrade the chart:
62+ ``` bash
63+ helm upgrade my-rtc-egress ./charts/rtc-egress \
64+ --namespace myrtc-egress \
65+ --set agora.appId=$AGORA_APP_ID \
66+ --set redis.external.host=$REDIS_HOST \
67+ --set redis.external.port=$REDIS_PORT \
68+ --set ' global.imagePullSecrets[0].name=ghcr-secret'
69+ ```
70+
71+ If you want to uninstall the chart:
72+ ``` bash
73+ helm uninstall my-rtc-egress -n myrtc-egress
3574```
3675
3776## Development(Chart Maintainer)
0 commit comments