From 1e56dc5579db1ecb55af43f4c712fbce51af22f0 Mon Sep 17 00:00:00 2001 From: suyiiyii Date: Tue, 21 Jan 2025 23:18:15 +0800 Subject: [PATCH] feat(facade): update service and ingress ports from 8500 to 8080 --- templates/facade-ingress.yaml | 4 ++-- templates/facade-service.yaml | 10 +++------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/templates/facade-ingress.yaml b/templates/facade-ingress.yaml index 0e38d04..c7458d4 100644 --- a/templates/facade-ingress.yaml +++ b/templates/facade-ingress.yaml @@ -19,7 +19,7 @@ spec: service: name: facade port: - number: 8500 + number: 8080 --- apiVersion: networking.k8s.io/v1 kind: Ingress @@ -36,4 +36,4 @@ spec: service: name: facade port: - number: 8500 \ No newline at end of file + number: 8080 \ No newline at end of file diff --git a/templates/facade-service.yaml b/templates/facade-service.yaml index d7bf918..6252262 100644 --- a/templates/facade-service.yaml +++ b/templates/facade-service.yaml @@ -4,12 +4,8 @@ metadata: name: facade spec: ports: - - name: "8500" - port: 8500 - targetPort: 8500 - - name: "8600" - port: 8600 - protocol: UDP - targetPort: 8600 + - name: "8080" + port: 8080 + targetPort: 8080 selector: app: facade