From dbd9e74784e058e3025aaa6de63be8732f680f24 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Sun, 19 Apr 2026 20:27:31 +0000 Subject: [PATCH] fix: add ignoreDifferences for secrets in ArgoCD apps, fix warehouse strategy and Kargo auth annotations --- pipelines/argocd/apps/stonks-beta.yaml | 8 ++++++++ pipelines/argocd/apps/stonks-live.yaml | 8 ++++++++ pipelines/argocd/apps/stonks-paper.yaml | 8 ++++++++ 3 files changed, 24 insertions(+) diff --git a/pipelines/argocd/apps/stonks-beta.yaml b/pipelines/argocd/apps/stonks-beta.yaml index 4d280ce..857451f 100644 --- a/pipelines/argocd/apps/stonks-beta.yaml +++ b/pipelines/argocd/apps/stonks-beta.yaml @@ -24,3 +24,11 @@ spec: automated: prune: true selfHeal: true + syncOptions: + - RespectIgnoreDifferences=true + ignoreDifferences: + - group: "" + kind: Secret + jsonPointers: + - /data + - /stringData diff --git a/pipelines/argocd/apps/stonks-live.yaml b/pipelines/argocd/apps/stonks-live.yaml index e878255..d2dc3e9 100644 --- a/pipelines/argocd/apps/stonks-live.yaml +++ b/pipelines/argocd/apps/stonks-live.yaml @@ -24,3 +24,11 @@ spec: automated: prune: true selfHeal: true + syncOptions: + - RespectIgnoreDifferences=true + ignoreDifferences: + - group: "" + kind: Secret + jsonPointers: + - /data + - /stringData diff --git a/pipelines/argocd/apps/stonks-paper.yaml b/pipelines/argocd/apps/stonks-paper.yaml index 76f87c9..b42e4d7 100644 --- a/pipelines/argocd/apps/stonks-paper.yaml +++ b/pipelines/argocd/apps/stonks-paper.yaml @@ -24,3 +24,11 @@ spec: automated: prune: true selfHeal: true + syncOptions: + - RespectIgnoreDifferences=true + ignoreDifferences: + - group: "" + kind: Secret + jsonPointers: + - /data + - /stringData