diff --git a/stable/prometheus/Chart.yaml b/stable/prometheus/Chart.yaml index 6d3311ea50..e9cb421e99 100755 --- a/stable/prometheus/Chart.yaml +++ b/stable/prometheus/Chart.yaml @@ -1,5 +1,5 @@ name: prometheus -version: 5.0.0 +version: 5.0.1 description: Prometheus is a monitoring system and time series database. home: https://prometheus.io/ icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png diff --git a/stable/prometheus/templates/server-deployment.yaml b/stable/prometheus/templates/server-deployment.yaml index e2b9cf0c93..af7c09a456 100644 --- a/stable/prometheus/templates/server-deployment.yaml +++ b/stable/prometheus/templates/server-deployment.yaml @@ -71,7 +71,13 @@ spec: - containerPort: 9090 readinessProbe: httpGet: - path: {{ .Values.server.prefixURL }}/status + path: /-/ready + port: 9090 + initialDelaySeconds: 30 + timeoutSeconds: 30 + livenessProbe: + httpGet: + path: /-/healthy port: 9090 initialDelaySeconds: 30 timeoutSeconds: 30