Skip to content

Commit 388b33f

Browse files
committed
chart+argocd: align tags to metadata-action semver output (no v prefix)
docker/metadata-action type=semver strips the leading v: git tag v0.1.0 produces image tag 0.1.0 on GHCR. Align both sides: - imageupdater allowTags: ^[0-9]+\.[0-9]+\.[0-9]+$ (no v) - values image.tag: 0.1.0 (was v0.1.0)
1 parent 7576196 commit 388b33f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

argocd/imageupdater.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
imageName: "ghcr.io/michelecampi/vllm-coldstart-operator"
1818
commonUpdateSettings:
1919
updateStrategy: "semver"
20-
allowTags: "regexp:^v[0-9]+\\.[0-9]+\\.[0-9]+$"
20+
allowTags: "regexp:^[0-9]+\.[0-9]+\.[0-9]+$"
2121
platforms:
2222
- "linux/amd64"
2323
manifestTargets:

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# via git write-back. When spec is set, the image helper uses it verbatim.
55
image:
66
repository: ghcr.io/michelecampi/vllm-coldstart-operator
7-
tag: v0.1.0
7+
tag: 0.1.0
88
pullPolicy: IfNotPresent
99
# -- Managed by ArgoCD Image Updater. Full image reference, takes precedence.
1010
spec: ghcr.io/michelecampi/vllm-coldstart-operator:latest@sha256:d7ccf8580f42a87ea401f13eed9188fc8892b07bd2212357e87c7919f71fb98d

0 commit comments

Comments
 (0)