add snapshot controller
All checks were successful
renovate / renovate (push) Successful in 2m13s

This commit is contained in:
2025-06-04 19:25:22 -05:00
parent 4603e85b53
commit 25efc38255
3 changed files with 74 additions and 0 deletions

View File

@@ -189,3 +189,41 @@ spec:
- ApplyOutOfSyncOnly=true
- ServerSideApply=true
- PruneLast=true
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: snapshot-controller
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: snapshot-controller
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/part-of: {{ .Release.Name }}
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: {{ .Values.git.repo }}
targetRevision: {{ .Values.git.revision }}
path: clusters/{{ .Values.cluster.name }}/standalone/snapshot-controller
destination:
name: in-cluster
namespace: snapshot-controller
revisionHistoryLimit: 3
syncPolicy:
automated:
prune: true
selfHeal: true
retry:
limit: 10
backoff:
duration: 1m
factor: 2
maxDuration: 16m
syncOptions:
- CreateNamespace=true
- ApplyOutOfSyncOnly=true
- ServerSideApply=true
- PruneLast=true