Decrease initialDelaySeconds of (liveness|readiness) Probe (#801)

pull/787/merge
Matthias Baur 2025-03-07 11:20:23 +01:00 committed by GitHub
parent 8f3bad6bc6
commit 3989c0d2e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -198,13 +198,13 @@ spec:
httpGet:
path: /healthz
port: 9300
initialDelaySeconds: 30
initialDelaySeconds: 5
timeoutSeconds: 10
readinessProbe:
httpGet:
path: /healthz
port: 9300
initialDelaySeconds: 30
initialDelaySeconds: 5
timeoutSeconds: 10
resources:
{{ toYaml .Values.resources | indent 12 }}