fix: correct readinessProbe for web pod (#1786)

fix: correct readinesProbe for web pod
This commit is contained in:
kurokobo
2024-03-28 03:21:23 +09:00
committed by GitHub
parent 809491bce0
commit a6e7a1bec3

View File

@@ -178,11 +178,10 @@ spec:
{% endif %}
{% if web_readiness_period|int > 0 %}
readinessProbe:
exec:
httpGet:
path: /api/v2/ping/
scheme: HTTP
port: 8052
httpGet:
path: /api/v2/ping/
scheme: HTTP
port: 8052
initialDelaySeconds: {{ web_readiness_initial_delay }}
periodSeconds: {{ web_readiness_period }}
failureThreshold: {{ web_readiness_failure_threshold }}