File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
docs/guides/dynamo_deploy Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -196,5 +196,4 @@ helm upgrade --install dynamo-platform ./platform/ \
196196 --set " dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER} /dynamo-operator" \
197197 --set " dynamo-operator.controllerManager.manager.image.tag=${IMAGE_TAG} " \
198198 --set " dynamo-operator.imagePullSecrets[0].name=docker-imagepullsecret" \
199- --set controller.env.DYNAMO_CLOUD=${DYNAMO_CLOUD}
200199echo " Helm chart deployment complete"
Original file line number Diff line number Diff line change @@ -72,6 +72,8 @@ export DOCKER_SERVER=your-docker-registry.com
7272export IMAGE_TAG=your-image-tag
7373```
7474
75+ The operator image will be pulled from ` $DOCKER_SERVER/dynamo-operator:$IMAGE_TAG ` .
76+
7577### Install Dynamo Cloud
7678
7779You could run the ` deploy.sh ` or use the manual commands under Step 1 and Step 2.
@@ -89,6 +91,12 @@ kubectl create secret docker-registry docker-imagepullsecret \
8991 --namespace=${NAMESPACE}
9092```
9193
94+ You need to add the bitnami helm repository by running:
95+
96+ ``` bash
97+ helm repo add bitnami https://charts.bitnami.com/bitnami
98+ ```
99+
92100``` bash
93101./deploy.sh --crds
94102```
You can’t perform that action at this time.
0 commit comments