mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
fix: correct readinessProbe for web pod (#1786)
fix: correct readinesProbe for web pod
This commit is contained in:
@@ -178,11 +178,10 @@ spec:
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% if web_readiness_period|int > 0 %}
|
{% if web_readiness_period|int > 0 %}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
exec:
|
httpGet:
|
||||||
httpGet:
|
path: /api/v2/ping/
|
||||||
path: /api/v2/ping/
|
scheme: HTTP
|
||||||
scheme: HTTP
|
port: 8052
|
||||||
port: 8052
|
|
||||||
initialDelaySeconds: {{ web_readiness_initial_delay }}
|
initialDelaySeconds: {{ web_readiness_initial_delay }}
|
||||||
periodSeconds: {{ web_readiness_period }}
|
periodSeconds: {{ web_readiness_period }}
|
||||||
failureThreshold: {{ web_readiness_failure_threshold }}
|
failureThreshold: {{ web_readiness_failure_threshold }}
|
||||||
|
|||||||
Reference in New Issue
Block a user