Files
observability/alertmanager/helm-values.yaml
Mayne0213 997893284b FEAT(alertmanager): add ServiceMonitor
- Create servicemonitor.yaml for Prometheus to scrape Alertmanager
- alertmanager chart does not include ServiceMonitor, must be added separately
- Enables Grafana Alertmanager dashboard to display data
2026-01-05 00:40:01 +09:00

26 lines
525 B
YAML

# Alertmanager Helm Values
# Chart: https://github.com/prometheus-community/helm-charts/tree/main/charts/alertmanager
fullnameOverride: alertmanager
persistence:
enabled: true
size: 1Gi
storageClass: local-path-retain
resources:
requests:
cpu: 10m
memory: 32Mi
# Disable default config - use secret instead
config:
enabled: false
# Mount config from ExternalSecret
extraSecretMounts:
- name: alertmanager-config
mountPath: /etc/alertmanager
secretName: alertmanager-config
readOnly: true