fixing permissions

This commit is contained in:
Ultradesu
2026-02-04 17:57:46 +02:00
parent 72cf9902d4
commit 5f882c7beb
+16 -5
View File
@@ -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: