From dfe3d4c561f5fc30017c19aadc84e55e469740cd Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Date: Thu, 12 Mar 2026 00:37:31 +0100 Subject: [PATCH] fix(gitops): use tcp probes for backend readiness/liveness --- apps/nxtgauge-backend/base/deployment.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/nxtgauge-backend/base/deployment.yaml b/apps/nxtgauge-backend/base/deployment.yaml index cf933a7..b8e6b96 100644 --- a/apps/nxtgauge-backend/base/deployment.yaml +++ b/apps/nxtgauge-backend/base/deployment.yaml @@ -78,16 +78,14 @@ spec: - secretRef: name: nxtgauge-backend-secrets readinessProbe: - httpGet: - path: /health + tcpSocket: port: 2002 initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 2 failureThreshold: 3 livenessProbe: - httpGet: - path: /health + tcpSocket: port: 2002 initialDelaySeconds: 15 periodSeconds: 20