Compare commits
1 Commits
auto-updat
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f882c7beb |
@@ -22,14 +22,25 @@ podSecurityContext:
|
|||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
|
|
||||||
# Disable all health probes to avoid startup issues
|
# Configure health probes for slow startup
|
||||||
main:
|
main:
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
enabled: false
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 120 # Дать время на запуск
|
||||||
|
periodSeconds: 30
|
||||||
|
timeoutSeconds: 10
|
||||||
|
failureThreshold: 6
|
||||||
|
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
enabled: false
|
httpGet:
|
||||||
startupProbe:
|
path: /healthz/readiness
|
||||||
enabled: false
|
port: http
|
||||||
|
initialDelaySeconds: 60
|
||||||
|
periodSeconds: 10
|
||||||
|
timeoutSeconds: 5
|
||||||
|
failureThreshold: 10
|
||||||
|
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
|
|||||||
Reference in New Issue
Block a user