Skip to content

Commit 8ae3719

Browse files
chore: add some details to dynamo deploy quickstart and fix deploy.sh (#1978)
Signed-off-by: Hongkuan Zhou <tedzhouhk@gmail.com> Co-authored-by: julienmancuso <161955438+julienmancuso@users.noreply.github.com>
1 parent 08891ff commit 8ae3719

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

deploy/cloud/helm/deploy.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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}
200199
echo "Helm chart deployment complete"

docs/guides/dynamo_deploy/quickstart.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export DOCKER_SERVER=your-docker-registry.com
7272
export 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

7779
You 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
```

0 commit comments

Comments
 (0)