Telegram notification now works

This commit is contained in:
Moritz Graf 2022-11-13 16:20:06 +01:00
parent 33810b5cdf
commit 2cb56a97e0
No known key found for this signature in database
GPG Key ID: 74908B979B924E74
3 changed files with 7 additions and 2 deletions

View File

@ -266,8 +266,11 @@ kubectl create ns monitoring
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update helm repo update
helm upgrade --install --create-namespace prometheus-operator prometheus-community/kube-prometheus-stack -n monitoring -f monitoring/prometheus-operator.secret.yml helm upgrade --install --create-namespace prometheus-operator prometheus-community/kube-prometheus-stack -n monitoring -f monitoring/prometheus-operator.secret.yml
# additional stuff # alert configuration
k apply -f monitoring/alertmanagerconfig.secret.yaml NAMESPACES_TO_ALERT=( kube-system monitoring cert-manager datalab ingress-nginx mailu minio velero web openebs )
for i in "${NAMESPACES_TO_ALERT[@]}"; do
kubectl apply -f monitoring/alertmanagerconfig.secret.yaml -n $i
done
``` ```
### robusta ### robusta

View File

@ -88,6 +88,8 @@ alertmanager:
operator: In operator: In
values: values:
- haumdaucher - haumdaucher
# alertmanagerConfiguration:
# name: haumdaucher-alertmanager
grafana: grafana:
persistence: persistence:
enabled: true enabled: true