26 lines
597 B
YAML
26 lines
597 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: prometheus-helm
|
|
namespace: argocd
|
|
spec:
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: monitoring
|
|
project: default
|
|
sources:
|
|
- chart: kube-prometheus-stack
|
|
repoURL: https://prometheus-community.github.io/helm-charts
|
|
targetRevision: 80.13.2
|
|
helm:
|
|
values: |
|
|
grafana:
|
|
enabled: false
|
|
syncPolicy:
|
|
syncOptions:
|
|
- ServerSideApply=true
|
|
- CreateNamespace=true
|
|
automated:
|
|
allowEmpty: true
|
|
prune: true
|
|
selfHeal: true |