updated cnpg app

This commit is contained in:
kisfenyo
2025-12-27 15:25:59 +01:00
parent 05cbc3dc3b
commit ebf41103f7
+13 -1
View File
@@ -462,7 +462,6 @@ spec:
- CreateNamespace=true - CreateNamespace=true
- PruneLast=true - PruneLast=true
--- ---
---
apiVersion: argoproj.io/v1alpha1 apiVersion: argoproj.io/v1alpha1
kind: Application kind: Application
metadata: metadata:
@@ -470,17 +469,30 @@ metadata:
namespace: argocd namespace: argocd
spec: spec:
project: default project: default
source: source:
repoURL: https://cloudnative-pg.github.io/charts repoURL: https://cloudnative-pg.github.io/charts
chart: cloudnative-pg chart: cloudnative-pg
targetRevision: 0.27.0 targetRevision: 0.27.0
helm:
releaseName: cnpg
destination: destination:
server: https://kubernetes.default.svc server: https://kubernetes.default.svc
namespace: cnpg-system namespace: cnpg-system
syncPolicy: syncPolicy:
automated: automated:
prune: true prune: true
selfHeal: true selfHeal: true
syncOptions: syncOptions:
- CreateNamespace=true - CreateNamespace=true
- Replace=true # Important for CRDs
- ServerSideApply=true # Better for CRDs
retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m
--- ---