From edbcc40ae18eabbcb11a6d66a63401db430dcc1e Mon Sep 17 00:00:00 2001 From: Nick Adam Date: Mon, 19 Jan 2026 00:45:54 +0100 Subject: [PATCH] fix kube client side error --- apps/argocd-config-app.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/argocd-config-app.yaml b/apps/argocd-config-app.yaml index a58c13d..3c6ffa7 100644 --- a/apps/argocd-config-app.yaml +++ b/apps/argocd-config-app.yaml @@ -32,13 +32,18 @@ spec: # Ignoriere data-Feld (wird von External Secrets dynamisch aktualisiert) jsonPointers: - /data - # Ignoriere ExternalSecret Status (wird von External Secrets Controller verwaltet) + # Ignoriere ExternalSecret Status und Default-Felder (wird von External Secrets Controller verwaltet) - group: external-secrets.io kind: ExternalSecret name: argocd-dex-secret-source namespace: argocd - # Ignoriere Status-Feld (wird von External Secrets Controller verwaltet) + # Ignoriere Status-Feld und Default-Felder in data (wird von External Secrets Controller verwaltet) jsonPointers: - /status - /metadata/annotations - - /metadata/labels \ No newline at end of file + - /metadata/labels + # Ignoriere Default-Felder in data Array (werden vom Controller hinzugefügt) + jqPathExpressions: + - '.spec.data[].remoteRef.conversionStrategy' + - '.spec.data[].remoteRef.decodingStrategy' + - '.spec.data[].remoteRef.metadataPolicy' \ No newline at end of file