Added probes to chart vars
All checks were successful
Publish Helm Charts / build-and-publish (push) Successful in 9s
All checks were successful
Publish Helm Charts / build-and-publish (push) Successful in 9s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user