From 303da8823923c08f112a5fd085e089b50149fb91 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Mon, 7 Sep 2026 17:49:55 -0700 Subject: [PATCH] fix: remove sops field from kustomization to unblock Image Updater - Remove sops section that breaks vanilla kustomize parsing - SOPS decryption handled by ArgoCD repo-server ksops plugin - Allows Image Updater to run 'kustomize edit set image' without errors - Image Updater can now update portfolio:latest tag in images section --- infra/portfolio/base/kustomization.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/infra/portfolio/base/kustomization.yaml b/infra/portfolio/base/kustomization.yaml index 6f84131..cc9dc18 100644 --- a/infra/portfolio/base/kustomization.yaml +++ b/infra/portfolio/base/kustomization.yaml @@ -8,11 +8,10 @@ resources: - service.yaml - ingress.yaml -# ArgoCD Image Updater configuration +# ArgoCD Image Updater configuration - for tag updates images: - name: forgejo.riotpiao.com/rock/portfolio newTag: latest -# Decrypt secrets via SOPS before applying -sops: - version: 3 +# Note: SOPS decryption is handled by ArgoCD repo-server plugin, +# not via kustomization.yaml, to allow Image Updater to parse this file