From 055bb63438f3db2e17eb704a438e3c588392ef5b Mon Sep 17 00:00:00 2001 From: CTO Agent Date: Sun, 2 Aug 2026 10:17:46 +0000 Subject: [PATCH] Fix pangolin-controller probe ports to match metrics server Update liveness and readiness probe ports from 8080 to 9090 to match the controller's METRICS_ADDR configuration. The controller is configured to serve metrics on port 9090, but the probes were checking port 8080, causing pods to remain in NotReady state despite the controller functioning correctly. Also update containerPort to 9090 for consistency. Related: DEV-437 Co-Authored-By: Paperclip --- apps/pangolin/pangolin-controller-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/pangolin/pangolin-controller-deployment.yaml b/apps/pangolin/pangolin-controller-deployment.yaml index 64d8229..8fe329c 100644 --- a/apps/pangolin/pangolin-controller-deployment.yaml +++ b/apps/pangolin/pangolin-controller-deployment.yaml @@ -28,7 +28,7 @@ spec: name: pangolin-controller-config ports: - name: metrics - containerPort: 8080 + containerPort: 9090 protocol: TCP resources: requests: @@ -40,7 +40,7 @@ spec: livenessProbe: httpGet: path: /healthz - port: 8080 + port: 9090 initialDelaySeconds: 15 periodSeconds: 20 timeoutSeconds: 5 @@ -48,7 +48,7 @@ spec: readinessProbe: httpGet: path: /readyz - port: 8080 + port: 9090 initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 5