feat(chart): use official health check endpoints for probes

This commit is contained in:
holysoles
2025-01-17 18:03:27 -06:00
parent 6de3922760
commit caf96d016d
+2 -2
View File
@@ -87,12 +87,12 @@ resources: {}
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe:
httpGet:
path: /
path: /api/service/health-check
port: http
readinessProbe:
httpGet:
path: /
path: /api/service/health-check
port: http
# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/