43 lines
974 B
YAML
43 lines
974 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: monitoring-loki
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "2"
|
|
spec:
|
|
project: default
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: monitoring
|
|
sources:
|
|
- repoURL: https://grafana.github.io/helm-charts
|
|
chart: loki-stack
|
|
targetRevision: "*"
|
|
helm:
|
|
valuesObject:
|
|
loki:
|
|
enabled: true
|
|
persistence:
|
|
enabled: true
|
|
storageClassName: longhorn
|
|
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
|