Add enabled flags for health probes in web and api deployments
This commit is contained in:
@@ -48,7 +48,10 @@ web:
|
||||
env: []
|
||||
|
||||
# Liveness and readiness probes
|
||||
healthProbes:
|
||||
enabled: true # Set to false to disable both probes
|
||||
livenessProbe:
|
||||
enabled: true # Set to false to disable liveness probe
|
||||
httpGet:
|
||||
path: /docs
|
||||
port: http
|
||||
@@ -56,6 +59,7 @@ web:
|
||||
periodSeconds: 10
|
||||
|
||||
readinessProbe:
|
||||
enabled: true # Set to false to disable readiness probe
|
||||
httpGet:
|
||||
path: /docs
|
||||
port: http
|
||||
@@ -104,7 +108,10 @@ api:
|
||||
value: "info"
|
||||
|
||||
# Liveness and readiness probes
|
||||
healthProbes:
|
||||
enabled: true # Set to false to disable both probes
|
||||
livenessProbe:
|
||||
enabled: true # Set to false to disable liveness probe
|
||||
httpGet:
|
||||
path: /health
|
||||
port: http
|
||||
@@ -112,6 +119,7 @@ api:
|
||||
periodSeconds: 10
|
||||
|
||||
readinessProbe:
|
||||
enabled: true # Set to false to disable readiness probe
|
||||
httpGet:
|
||||
path: /ready
|
||||
port: http
|
||||
|
||||
Reference in New Issue
Block a user