20 lines
582 B
YAML
20 lines
582 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: secrets
|
|
namespace: argocd
|
|
spec:
|
|
project: default # Or your specific Argo CD project
|
|
source:
|
|
repoURL: https://git.james-mellors.com/mello/sealed-secrets.git # Sealed Secrets chart repository
|
|
targetRevision: main # Specify the desired chart version (Check for the latest stable version!)
|
|
path: controller
|
|
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: kube-system
|
|
syncPolicy:
|
|
automated: # Optional: Enable automatic sync
|
|
prune: true
|
|
selfHeal: true
|
|
|