Merge "Adjust Prometheus http readiness probe path from /status to /-/ready"

This commit is contained in:
Zuul 2021-04-14 17:06:53 +00:00 committed by Gerrit Code Review
commit 413bd4f850
3 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v2.25.0
description: OpenStack-Helm Prometheus
name: prometheus
version: 0.1.7
version: 0.1.8
home: https://prometheus.io/
sources:
- https://github.com/prometheus/prometheus

View File

@ -18,7 +18,7 @@ limitations under the License.
{{- $probePass := .Values.endpoints.monitoring.auth.admin.password }}
{{- $authHeader := printf "%s:%s" $probeUser $probePass | b64enc }}
httpGet:
path: /status
path: /-/ready
scheme: {{ tuple "monitoring" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_scheme_lookup" | upper }}
port: {{ $probePort }}
httpHeaders:

View File

@ -8,4 +8,5 @@ prometheus:
- 0.1.5 Fix spacing inconsistencies with flags
- 0.1.6 Upgrade version to v2.25 fix/remove deprecated flags
- 0.1.7 Enable TLS for Prometheus
- 0.1.8 Change readiness probe from /status to /-/ready
...