26 lines
561 B
YAML
26 lines
561 B
YAML
# argocd-apps/grafana.yaml
|
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: grafana
|
|
namespace: argocd
|
|
spec:
|
|
project: observability
|
|
source:
|
|
repoURL: 'https://git.dvirlabs.com/dvirlabs/observability-stack.git'
|
|
targetRevision: HEAD
|
|
path: charts/grafana
|
|
helm:
|
|
valueFiles:
|
|
- ../../manifests/grafana/values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: monitoring
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|