From 55e174783d968b269d1de5214bcb64c87dc1d87e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sun, 9 Nov 2025 15:48:27 -0600 Subject: [PATCH] add readiness probe to deployment --- helm-charts/stage/templates/deployment.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helm-charts/stage/templates/deployment.yaml b/helm-charts/stage/templates/deployment.yaml index 064454d..70f745c 100644 --- a/helm-charts/stage/templates/deployment.yaml +++ b/helm-charts/stage/templates/deployment.yaml @@ -53,6 +53,10 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP + readinessProbe: + httpGet: + path: /health + port: 4001 {{- with .Values.resources }} resources: {{- toYaml . | nindent 12 }}