From 536e213b57223e1ebe4f4181d57fa781ec317a59 Mon Sep 17 00:00:00 2001 From: hz Date: Wed, 7 Jan 2026 17:41:43 -0600 Subject: [PATCH] align the deployment to the actual listening port (5000). --- microservices/AuthApi/k8s/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/microservices/AuthApi/k8s/deployment.yaml b/microservices/AuthApi/k8s/deployment.yaml index 21b8815..8d6ff80 100644 --- a/microservices/AuthApi/k8s/deployment.yaml +++ b/microservices/AuthApi/k8s/deployment.yaml @@ -19,10 +19,10 @@ spec: image: promiscuity-auth:latest imagePullPolicy: IfNotPresent ports: - - containerPort: 8080 + - containerPort: 5000 readinessProbe: httpGet: path: /healthz - port: 8080 + port: 5000 initialDelaySeconds: 5 periodSeconds: 10