Telegram notification now works
This commit is contained in:
parent
33810b5cdf
commit
2cb56a97e0
|
|
@ -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
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue