fix(prometheus): use correct port for alertmanager probe

This commit is contained in:
kjeld Schouten-Lebbing
2021-11-22 23:07:43 +01:00
parent 341541d92c
commit dc0e419b04
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
type: application
version: 0.0.6
version: 0.0.7
annotations:
truecharts.org/catagories: |
- metrics

View File

@@ -109,7 +109,7 @@ spec:
livenessProbe:
httpGet:
path: {{ .Values.alertmanager.livenessProbe.path }}
port: web
port: alertmanager
scheme: HTTP
initialDelaySeconds: {{ .Values.alertmanager.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.alertmanager.livenessProbe.periodSeconds }}
@@ -121,7 +121,7 @@ spec:
readinessProbe:
httpGet:
path: {{ .Values.alertmanager.readinessProbe.path }}
port: web
port: alertmanager
scheme: HTTP
initialDelaySeconds: {{ .Values.alertmanager.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.alertmanager.readinessProbe.periodSeconds }}