From b6a23231aafe418008f519422d923f158b230b6b Mon Sep 17 00:00:00 2001 From: "Sam Wang (holyspectral)" Date: Tue, 19 May 2026 13:33:04 -0400 Subject: [PATCH] fix: use httpGet for controller readniness probe --- charts/core/templates/controller-deployment.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/charts/core/templates/controller-deployment.yaml b/charts/core/templates/controller-deployment.yaml index 51e8e6ecf..564c924f5 100644 --- a/charts/core/templates/controller-deployment.yaml +++ b/charts/core/templates/controller-deployment.yaml @@ -135,11 +135,10 @@ spec: {{ toYaml .Values.resources | indent 12 }} {{- end }} readinessProbe: - exec: - command: - - cat - - /tmp/ready - initialDelaySeconds: 5 + httpGet: + path: /ready + port: 18500 + initialDelaySeconds: 10 periodSeconds: 5 env: - name: CTRL_SERVER_PORT