fix(ci): use --set-string for image tags (avoids float coercion of all-digit SHAs)
All checks were successful
ci/someci/push/backend Pipeline was successful
ci/someci/push/web Pipeline was successful

This commit is contained in:
2026-04-28 17:04:54 +02:00
parent 1539879098
commit d293dd9182
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ steps:
if helm upgrade marktvogt ./helm/marktvogt/ \
--namespace tenant-2 \
--reuse-values \
--set backend.image.tag="${CI_COMMIT_SHA:0:8}" \
--set-string backend.image.tag="${CI_COMMIT_SHA:0:8}" \
--rollback-on-failure \
--wait=watcher \
--timeout 5m

View File

@@ -66,7 +66,7 @@ steps:
if helm upgrade marktvogt ./helm/marktvogt/ \
--namespace tenant-2 \
--reuse-values \
--set web.image.tag="${CI_COMMIT_SHA:0:8}" \
--set-string web.image.tag="${CI_COMMIT_SHA:0:8}" \
--rollback-on-failure \
--wait=watcher \
--timeout 5m