mirror of
https://github.com/quay/quay.git
synced 2025-04-18 10:44:06 +03:00
Revert "healthchecks: Use httpGet for liveness and readiness probe checks (PROJQUAY-8747)" (#3776)
Revert "healthchecks: Use httpGet for liveness and readiness probe checks (PR…" This reverts commit ea1d18d457c275f03f868c8d5568540d5a92f4a9.
This commit is contained in:
parent
9000b9fcf6
commit
cce4ca4fe7
@ -251,18 +251,20 @@ objects:
|
||||
timeoutSeconds: ${{QUAY_APP_STARTUP_PROBE_TIMEOUT_SECONDS}}
|
||||
periodSeconds: ${{QUAY_APP_STARTUP_PROBE_PERIOD_SECONDS}}
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /health/instance
|
||||
port: 8443
|
||||
scheme: HTTPS
|
||||
exec:
|
||||
command:
|
||||
- curl
|
||||
- -k
|
||||
- https://localhost:8443/health/instance
|
||||
initialDelaySeconds: ${{QUAY_APP_LIVENESS_PROBE_INITIAL_DELAY_SECONDS}}
|
||||
periodSeconds: ${{QUAY_APP_LIVENESS_PROBE_PERIOD_SECONDS}}
|
||||
timeoutSeconds: ${{QUAY_APP_LIVENESS_PROBE_TIMEOUT_SECONDS}}
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health/endtoend
|
||||
port: 8443
|
||||
scheme: HTTPS
|
||||
exec:
|
||||
command:
|
||||
- curl
|
||||
- -k
|
||||
- https://localhost:8443/health/endtoend
|
||||
initialDelaySeconds: ${{QUAY_APP_READINESS_PROBE_INITIAL_DELAY_SECONDS}}
|
||||
periodSeconds: ${{QUAY_APP_READINESS_PROBE_PERIOD_SECONDS}}
|
||||
timeoutSeconds: ${{QUAY_APP_READINESS_PROBE_TIMEOUT_SECONDS}}
|
||||
@ -402,7 +404,7 @@ parameters:
|
||||
value: "15"
|
||||
displayName: quay app liveness probe initial delay seconds
|
||||
- name: QUAY_APP_LIVENESS_PROBE_PERIOD_SECONDS
|
||||
value: "15"
|
||||
value: "30"
|
||||
displayName: quay app liveness probe period seconds
|
||||
- name: QUAY_APP_LIVENESS_PROBE_TIMEOUT_SECONDS
|
||||
value: "10"
|
||||
|
Loading…
x
Reference in New Issue
Block a user