From 65d20c16c90e195c979ebfc08141031fcd4f01b3 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Wed, 7 Jan 2026 18:07:07 +0900 Subject: [PATCH] FIX(jovies): Use git write-back method for Image Updater - Change write-back-method from argocd to git:secret:argocd/github-creds - Image Updater will now commit tag changes directly to helm-values.yaml - Fixes sync loop caused by ArgoCD overwriting Application parameters --- jovies/argocd.yaml | 3 ++- jovies/helm-values.yaml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/jovies/argocd.yaml b/jovies/argocd.yaml index 34df632..23066e4 100644 --- a/jovies/argocd.yaml +++ b/jovies/argocd.yaml @@ -8,7 +8,8 @@ metadata: annotations: argocd-image-updater.argoproj.io/image-list: jovies=ghcr.io/mayne0213/jovies:latest argocd-image-updater.argoproj.io/jovies.update-strategy: digest - argocd-image-updater.argoproj.io/write-back-method: argocd + argocd-image-updater.argoproj.io/write-back-method: git:secret:argocd/github-creds + argocd-image-updater.argoproj.io/git-branch: main argocd-image-updater.argoproj.io/jovies.helm.image-tag: image.tag spec: project: default diff --git a/jovies/helm-values.yaml b/jovies/helm-values.yaml index fd2f67e..2477d34 100644 --- a/jovies/helm-values.yaml +++ b/jovies/helm-values.yaml @@ -5,7 +5,7 @@ name: jovies image: registry: ghcr.io repository: mayne0213/jovies - # tag is managed by ArgoCD Image Updater + tag: latest # Updated by ArgoCD Image Updater pullPolicy: Always replicaCount: 1