File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,15 @@ print_k8s_resources()
1818
1919ENV=${ENV?" env is not set" }
2020IMG_TAG=$1
21+ IMG_DIR=dev
2122
2223kubectl delete configmap environment --ignore-not-found=true
2324kubectl create configmap environment --from-literal=ENVIRONMENT=" ${ENV} "
2425echo " ### Deploying busola from: ${IMG_TAG} "
2526
2627cd resources
27- (cd base/web && kustomize edit set image busola-web=europe-docker.pkg.dev/kyma-project/prod /busola-web:" ${IMG_TAG} " )
28- (cd base/backend && kustomize edit set image busola-backend=europe-docker.pkg.dev/kyma-project/prod /busola-backend:" ${IMG_TAG} " )
28+ (cd base/web && kustomize edit set image busola-web=europe-docker.pkg.dev/kyma-project/${IMG_DIR} /busola-web:" ${IMG_TAG} " )
29+ (cd base/backend && kustomize edit set image busola-backend=europe-docker.pkg.dev/kyma-project/${IMG_DIR} /busola-backend:" ${IMG_TAG} " )
2930kustomize build base/ | kubectl apply -f-
3031
3132kubectl apply -f ingress/ingress.yaml
Original file line number Diff line number Diff line change @@ -4,3 +4,7 @@ resources:
44 - deployment.yaml
55 - hpa.yaml
66 - service.yaml
7+ images :
8+ - name : busola-backend
9+ newName : europe-docker.pkg.dev/kyma-project/prod/busola-backend
10+ newTag : PR-3499
Original file line number Diff line number Diff line change @@ -5,3 +5,7 @@ resources:
55 - deployment.yaml
66 - hpa.yaml
77 - service.yaml
8+ images :
9+ - name : busola-web
10+ newName : europe-docker.pkg.dev/kyma-project/prod/busola-web
11+ newTag : PR-3499
You can’t perform that action at this time.
0 commit comments