Skip to content

Commit

Permalink
fix: correct readinessProbe for web pod (#1786)
Browse files Browse the repository at this point in the history
fix: correct readinesProbe for web pod
  • Loading branch information
kurokobo authored Mar 27, 2024
1 parent 809491b commit a6e7a1b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions roles/installer/templates/deployments/web.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit a6e7a1b

Please sign in to comment.