Added probes to chart vars
All checks were successful
Publish Helm Charts / build-and-publish (push) Successful in 9s

This commit is contained in:
Ultradesu
2026-02-04 16:36:57 +02:00
parent d223c6ff1a
commit 4d611eebff
3 changed files with 60 additions and 19 deletions

View File

@@ -97,6 +97,41 @@ resources:
cpu: 500m
memory: 512Mi
# Health check probes configuration
healthchecks:
# Startup probe configuration
startupProbe:
enabled: true
httpGet:
path: /
port: http
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 12
# Liveness probe configuration
livenessProbe:
enabled: true
httpGet:
path: /
port: http
initialDelaySeconds: 90
periodSeconds: 20
timeoutSeconds: 10
failureThreshold: 6
# Readiness probe configuration
readinessProbe:
enabled: true
httpGet:
path: /
port: http
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
# Persistence for YaCy DATA directory
persistence:
enabled: true