Fix image tag format to match Prosper output (git.linux-amd64-SHA)

This commit is contained in:
Mondo Diaz
2026-01-13 22:06:02 +00:00
parent d8b68da004
commit 03d1e9b843

View File

@@ -46,7 +46,7 @@ deploy_stage:
script:
- echo "Deploying to stage environment"
- cd $CI_PROJECT_DIR
- helm upgrade --install orchard-stage ./helm/orchard --namespace $NAMESPACE -f $VALUES_FILE --set image.tag=$CI_COMMIT_SHA
- helm upgrade --install orchard-stage ./helm/orchard --namespace $NAMESPACE -f $VALUES_FILE --set image.tag=git.linux-amd64-$CI_COMMIT_SHA
environment:
name: stage
url: https://orchard-stage.common.global.bsf.tools
@@ -78,7 +78,7 @@ deploy_feature:
helm upgrade --install orchard-$CI_COMMIT_REF_SLUG ./helm/orchard \
--namespace $NAMESPACE \
-f $VALUES_FILE \
--set image.tag=$CI_COMMIT_SHA \
--set image.tag=git.linux-amd64-$CI_COMMIT_SHA \
--set ingress.hosts[0].host=orchard-$CI_COMMIT_REF_SLUG.common.global.bsf.tools \
--set ingress.tls[0].hosts[0]=orchard-$CI_COMMIT_REF_SLUG.common.global.bsf.tools \
--set ingress.tls[0].secretName=orchard-$CI_COMMIT_REF_SLUG-tls \