From 8a26dc2e7d1a6b8713d57888c3068f3733bfb358 Mon Sep 17 00:00:00 2001 From: Ato Araki Date: Mon, 16 Dec 2019 17:09:37 +0900 Subject: [PATCH] Update readiness liveness probe path for prometheus pushgateway (#19580) Signed-off-by: Ato Araki --- stable/prometheus-pushgateway/Chart.yaml | 2 +- stable/prometheus-pushgateway/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/prometheus-pushgateway/Chart.yaml b/stable/prometheus-pushgateway/Chart.yaml index f32bc43aa9..7e406e861e 100644 --- a/stable/prometheus-pushgateway/Chart.yaml +++ b/stable/prometheus-pushgateway/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: "1.0.0" description: A Helm chart for prometheus pushgateway name: prometheus-pushgateway -version: 1.2.6 +version: 1.2.7 home: https://github.com/prometheus/pushgateway sources: - https://github.com/prometheus/pushgateway diff --git a/stable/prometheus-pushgateway/templates/deployment.yaml b/stable/prometheus-pushgateway/templates/deployment.yaml index 61086adc55..53cf796d17 100644 --- a/stable/prometheus-pushgateway/templates/deployment.yaml +++ b/stable/prometheus-pushgateway/templates/deployment.yaml @@ -37,13 +37,13 @@ spec: protocol: TCP livenessProbe: httpGet: - path: /#/status + path: /-/healthy port: 9091 initialDelaySeconds: 10 timeoutSeconds: 10 readinessProbe: httpGet: - path: /#/status + path: /-/ready port: 9091 initialDelaySeconds: 10 timeoutSeconds: 10