Use proper keystone path for probes

Using the direct / path for the keystone probes can lead to the
probes receiving an http 300. We want to have an http 200 so there
is no warning from the probes. Use the full v3 path so the probes
are stable

Change-Id: If8b45801bb053778bd2e1691ff8556aa73cb434d
This commit is contained in:
Itxaka 2019-09-17 12:06:21 +02:00
parent c54f51c603
commit a6ccab5270
No known key found for this signature in database
GPG Key ID: 0FFB0E56C3539E24

View File

@ -76,14 +76,14 @@ spec:
readinessProbe:
httpGet:
scheme: HTTP
path: /
path: /v3/
port: {{ $portInt }}
initialDelaySeconds: 15
periodSeconds: 10
livenessProbe:
httpGet:
scheme: HTTP
path: /
path: /v3/
port: {{ $portInt }}
initialDelaySeconds: 50
periodSeconds: 20