From ac3c23428dd5481298035c48526ef0670562304d Mon Sep 17 00:00:00 2001 From: sirius0xdev Date: Mon, 4 May 2026 22:24:50 +0000 Subject: [PATCH] fix liveness probe port --- apps/base/customer1/paaas-landing/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/base/customer1/paaas-landing/deployment.yaml b/apps/base/customer1/paaas-landing/deployment.yaml index 40af10c..3c4d79b 100644 --- a/apps/base/customer1/paaas-landing/deployment.yaml +++ b/apps/base/customer1/paaas-landing/deployment.yaml @@ -29,13 +29,13 @@ spec: readinessProbe: httpGet: path: / # or /index.html if needed - port: 80 + port: 8080 initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: httpGet: path: / - port: 80 + port: 8080 initialDelaySeconds: 10 periodSeconds: 20 --- @@ -51,6 +51,6 @@ spec: app: paaas-landing ports: - protocol: TCP - port: 80 - targetPort: 80 + port: 8080 + targetPort: 8080 type: ClusterIP