[mariadb-galera] Use root path for metrics health probes (#5556)

Using `/metrics` as a health check incurs load on the DB.

Signed-off-by: Simon Rüegg <simon@rueggs.ch>
This commit is contained in:
Simon Rüegg
2021-02-19 11:49:04 +01:00
committed by GitHub
parent 5c0ef02c34
commit 4262daecb2
2 changed files with 3 additions and 3 deletions

View File

@@ -28,4 +28,4 @@ sources:
- https://github.com/bitnami/bitnami-docker-mariadb-galera
- https://github.com/prometheus/mysqld_exporter
- https://mariadb.org
version: 5.5.1
version: 5.5.2

View File

@@ -292,13 +292,13 @@ spec:
containerPort: 9104
livenessProbe:
httpGet:
path: /metrics
path: /
port: metrics
initialDelaySeconds: 30
timeoutSeconds: 5
readinessProbe:
httpGet:
path: /metrics
path: /
port: metrics
initialDelaySeconds: 5
timeoutSeconds: 1