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