We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eefd4de commit 384185bCopy full SHA for 384185b
README.md
@@ -25,7 +25,12 @@ helm repo update
25
### RTC Egress
26
27
```bash
28
-helm install my-rtc-egress agora/rtc-egress
+# Create the secret for private registry
29
+kubectl create secret docker-registry ghcr-secret \
30
+ --docker-server=ghcr.io \
31
+ --docker-username=YOUR_GITHUB_USERNAME \
32
+ --docker-password=YOUR_GITHUB_TOKEN \
33
+ --namespace myrtc-egress
34
```
35
36
With custom values:
@@ -65,6 +70,7 @@ helm upgrade my-rtc-egress ./charts/rtc-egress \
65
70
--set agora.appId=$AGORA_APP_ID \
66
71
--set redis.external.host=$REDIS_HOST \
67
72
--set redis.external.port=$REDIS_PORT \
73
+ --set image.tag=$IMAGE_TAG \
68
74
--set 'global.imagePullSecrets[0].name=ghcr-secret'
69
75
76
0 commit comments