From 34053b9638c7c55ae5a66cb287c54a2c8c00b364 Mon Sep 17 00:00:00 2001 From: Borja Garrido <borja.garrido.bear@cern.ch> Date: Tue, 18 Feb 2025 15:48:05 +0100 Subject: [PATCH] docs: update alertmanager section --- docs/values.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/values.md b/docs/values.md index 519a356..f995d7a 100644 --- a/docs/values.md +++ b/docs/values.md @@ -67,6 +67,18 @@ This file contains the markdown version of the default values that this chart ta | metrics.prometheus.server.scrapeTimeout | string | `"5s"` | timeout for self scraped metrics | | metrics.prometheus.server.image | string | `"registry.cern.ch/monit/cern-it-monitoring-prometheus:v2.50.0"` | prometheus image to use by the local cluster prometheus | | metrics.prometheus.server.version | string | `"v2.50.0"` | prometheus version to use by the local cluster prometheus | +| metrics.alertmanager.enabled | bool | `false` | if true alertmanager will be installed and prometheus reconfigured to use it as the alerting endpoint | +| metrics.alertmanager.image | string | `"registry.cern.ch/monit/cern-it-monitoring-alertmanager"` | alertmanager image to use by the local cluster alertmanager | +| metrics.alertmanager.tag | string | `"v0.27.0"` | alertmanager image tag to be used when pulling it | +| metrics.alertmanager.pullPolicy | string | `"IfNotPresent"` | pull policy for the alertmanager image | +| metrics.alertmanager.replicas | int | `3` | number of replicas for the alertmanager deployment, defaults 3 for HA | +| metrics.alertmanager.ingress.enabled | bool | `false` | if set to true an ingress will be created for the alertmanager service | +| metrics.alertmanager.ingress.className | string | `""` | class name to be used by the alertmanager ingress | +| metrics.alertmanager.ingress.path | string | `"/"` | entry path for the alertmanager ingress | +| metrics.alertmanager.ingress.pathType | string | `"ImplementationSpecific"` | path type for the alertmanager ingress | +| metrics.alertmanager.ingress.hosts | Array | `[]` | list of hosts for the alertmanager ingress | +| metrics.alertmanager.ingress.tls | Hash | `{}` | tls configuration for the alertmanager ingress | +| metrics.alertmanager.nodeSelector | Hash | `{}` | node selector configuration for the alertmanager | | otlp.endpoint | string | `"monit-otlp.cern.ch"` | otlp endpoint where the otlp receivers are listening | | otlp.port | int | `4319` | otlp port where the otlp receivers are listening | | tenant.name | string | `"nil"` | username used for authenitcating in the MONIT infrastructure | -- GitLab