Add monitoring applications to kustomization.yaml for enhanced observability

This commit is contained in:
Nikholas Pcenicni
2026-03-27 04:21:11 -04:00
parent 19c5d056e5
commit df25d1ac2b
3 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: monitoring-loki
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "1"
spec:
project: default
destination:
server: https://kubernetes.default.svc
namespace: monitoring
sources:
- repoURL: https://grafana.github.io/helm-charts
chart: loki-stack
helm:
valuesObject:
loki:
enabled: true
persistence:
enabled: true
size: 20Gi
promtail:
enabled: true
grafana:
enabled: false
prometheus:
enabled: false
filebeat:
enabled: false
fluent-bit:
enabled: false
logstash:
enabled: false
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true