fix(ci): use --reuse-values instead of --reset-then-reuse-values
Some checks failed
ci/someci/push/web Pipeline failed
ci/someci/push/backend Pipeline failed

helm 4.1 in alpine/helm:4.1 errored 'release: already exists' on the latter
flag despite the release being deployed. --reuse-values is the older,
universally-supported variant — preserves the other service's image tag
between pipeline runs the same way.
This commit is contained in:
2026-04-28 16:39:16 +02:00
parent 75a626b127
commit 36db6f08ed
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ steps:
- |
helm upgrade --install marktvogt ./helm/marktvogt/ \
--namespace tenant-2 \
--reset-then-reuse-values \
--reuse-values \
--set backend.image.tag="${CI_COMMIT_SHA:0:8}" \
--rollback-on-failure \
--wait=watcher \

View File

@@ -60,7 +60,7 @@ steps:
- |
helm upgrade --install marktvogt ./helm/marktvogt/ \
--namespace tenant-2 \
--reset-then-reuse-values \
--reuse-values \
--set web.image.tag="${CI_COMMIT_SHA:0:8}" \
--rollback-on-failure \
--wait=watcher \