From 970cf1ba4d8de5ed950afacd50addeef9adfe557 Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Thu, 9 Apr 2026 22:45:38 +0900 Subject: [PATCH] fix: update readiness and liveness probes to use tcpSocket instead of grpc --- manifests/home-services/ha-gateway.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/home-services/ha-gateway.yaml b/manifests/home-services/ha-gateway.yaml index 4a887df..4acc7c9 100644 --- a/manifests/home-services/ha-gateway.yaml +++ b/manifests/home-services/ha-gateway.yaml @@ -38,12 +38,12 @@ spec: - name: TLS_DIR value: /tls readinessProbe: - grpc: + tcpSocket: port: 50051 initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: - grpc: + tcpSocket: port: 50051 initialDelaySeconds: 10 periodSeconds: 30