File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -187,16 +187,16 @@ export IMAGE_TAG=latest
187187
188188# Build operator image
189189cd deploy/operator
190- docker build -t $DOCKER_SERVER /dynamo -operator:$IMAGE_TAG .
191- docker push $DOCKER_SERVER /dynamo -operator:$IMAGE_TAG
190+ docker build -t $DOCKER_SERVER /kubernetes -operator:$IMAGE_TAG .
191+ docker push $DOCKER_SERVER /kubernetes -operator:$IMAGE_TAG
192192cd -
193193
194194# Install platform with custom operator image (CRDs are automatically installed by the chart)
195195cd deploy/helm/charts
196196helm install dynamo-platform ./platform/ \
197197 --namespace ${NAMESPACE} \
198198 --create-namespace \
199- --set " dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER} /dynamo -operator" \
199+ --set " dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER} /kubernetes -operator" \
200200 --set " dynamo-operator.controllerManager.manager.image.tag=${IMAGE_TAG} " \
201201 --set dynamo-operator.imagePullSecrets[0].name=docker-imagepullsecret
202202```
Original file line number Diff line number Diff line change @@ -250,10 +250,10 @@ cd deploy/operator
250250# 2.1 Alternative 1 : Build and push the operator image for multiple platforms
251251docker buildx create --name multiplatform --driver docker-container --bootstrap
252252docker buildx use multiplatform
253- docker buildx build --platform linux/amd64,linux/arm64 -t $DOCKER_SERVER/dynamo -operator:$IMAGE_TAG --push .
253+ docker buildx build --platform linux/amd64,linux/arm64 -t $DOCKER_SERVER/kubernetes -operator:$IMAGE_TAG --push .
254254
255255# 2.2 Alternative 2 : Build and push the operator image for a single platform
256- docker build -t $DOCKER_SERVER/dynamo -operator:$IMAGE_TAG . && docker push $DOCKER_SERVER/dynamo -operator:$IMAGE_TAG
256+ docker build -t $DOCKER_SERVER/kubernetes -operator:$IMAGE_TAG . && docker push $DOCKER_SERVER/kubernetes -operator:$IMAGE_TAG
257257
258258cd -
259259
@@ -275,7 +275,7 @@ helm dep build ./platform/
275275NS_RESTRICT_FLAGS="--set dynamo-operator.namespaceRestriction.enabled=true"
276276helm install dynamo-platform ./platform/ \
277277 --namespace "${NAMESPACE}" \
278- --set "dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER}/dynamo -operator" \
278+ --set "dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER}/kubernetes -operator" \
279279 --set "dynamo-operator.controllerManager.manager.image.tag=${IMAGE_TAG}" \
280280 --set "dynamo-operator.imagePullSecrets[0].name=docker-imagepullsecret" \
281281 ${NS_RESTRICT_FLAGS}
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ Build and Push Operator Image
3535
3636```
3737cd deploy/operator
38- docker build -t $DOCKER_SERVER/dynamo -operator:$IMAGE_TAG .
39- docker push $DOCKER_SERVER/dynamo -operator:$IMAGE_TAG
38+ docker build -t $DOCKER_SERVER/kubernetes -operator:$IMAGE_TAG .
39+ docker push $DOCKER_SERVER/kubernetes -operator:$IMAGE_TAG
4040```
4141
4242Create secrets
@@ -79,7 +79,7 @@ kubectl create secret docker-registry docker-imagepullsecret \
7979# Install platform
8080helm install dynamo-platform ./platform/ \
8181 --namespace ${NAMESPACE} \
82- --set "dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER}/dynamo -operator" \
82+ --set "dynamo-operator.controllerManager.manager.image.repository=${DOCKER_SERVER}/kubernetes -operator" \
8383 --set "dynamo-operator.controllerManager.manager.image.tag=${IMAGE_TAG}" \
8484 --set "dynamo-operator.imagePullSecrets[0].name=docker-imagepullsecret"
8585```
You can’t perform that action at this time.
0 commit comments