infisical: ignore every volumeClaimTemplate field the api server injects

The earlier rule covered creationTimestamp, volumeMode and status but missed
apiVersion and kind, which the API server also injects into
volumeClaimTemplates. Those two alone kept both StatefulSets permanently
OutOfSync: a sync would apply successfully and report Synced, then the very
next comparison flagged them again.
This commit is contained in:
2026-08-29 18:16:25 +02:00
parent 8fa2cb558e
commit d5e073131d
3 changed files with 6766 additions and 1411 deletions
@@ -25,5 +25,12 @@ spec:
name: minio-aistor-api-route name: minio-aistor-api-route
timeout: timeout:
http: http:
connectionIdleTimeout: 3600s connectionIdleTimeout: 30s
maxConnectionDuration: 300s
requestTimeout: 0s requestTimeout: 0s
retry:
numRetries: 3
retryOn:
triggers:
- connect-failure
- reset
@@ -18,15 +18,17 @@ spec:
server: https://kubernetes.default.svc server: https://kubernetes.default.svc
namespace: infisical namespace: infisical
# A StatefulSet's volumeClaimTemplates are immutable, and the API server # A StatefulSet's volumeClaimTemplates are immutable, and the API server
# injects fields into them that are not in the manifest (creationTimestamp, # injects fields into them that are not in the manifest: apiVersion, kind,
# volumeMode, a status block). ArgoCD diffs those and reports OutOfSync # metadata.creationTimestamp, spec.volumeMode and a status block. ArgoCD
# forever, since syncing can never resolve them. infisical-postgres and # diffs those and reports OutOfSync forever, since no sync can resolve them.
# infisical-valkey are the only StatefulSets here using volumeClaimTemplates, # infisical-postgres and infisical-valkey are the only StatefulSets here
# which is why this app alone was affected. # using volumeClaimTemplates, which is why this app alone was affected.
ignoreDifferences: ignoreDifferences:
- group: apps - group: apps
kind: StatefulSet kind: StatefulSet
jqPathExpressions: jqPathExpressions:
- '.spec.volumeClaimTemplates[]?.apiVersion'
- '.spec.volumeClaimTemplates[]?.kind'
- '.spec.volumeClaimTemplates[]?.metadata.creationTimestamp' - '.spec.volumeClaimTemplates[]?.metadata.creationTimestamp'
- '.spec.volumeClaimTemplates[]?.spec.volumeMode' - '.spec.volumeClaimTemplates[]?.spec.volumeMode'
- '.spec.volumeClaimTemplates[]?.status' - '.spec.volumeClaimTemplates[]?.status'
File diff suppressed because it is too large Load Diff