From 9a6bc09ffa2330ea0138c1b53dadfbc31253db5f Mon Sep 17 00:00:00 2001 From: Leopold Lamprecht Date: Sun, 18 Sep 2022 01:17:58 +0200 Subject: [PATCH] fixed Ports --- kube/deployment.yaml | 2 +- kube/service.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kube/deployment.yaml b/kube/deployment.yaml index 93a3814..f4282c3 100644 --- a/kube/deployment.yaml +++ b/kube/deployment.yaml @@ -19,7 +19,7 @@ spec: - name: knilch-server image: git.cluster.stumblestore.de/llamprecht/knilch-web ports: - - containerPort: 80 + - containerPort: 3000 limits: memory: "32Mi" cpu: "100m" \ No newline at end of file diff --git a/kube/service.yaml b/kube/service.yaml index 1e0c389..44c7088 100644 --- a/kube/service.yaml +++ b/kube/service.yaml @@ -7,8 +7,8 @@ metadata: namespace: knilch-web spec: ports: - - port: 80 + - port: 3000 protocol: TCP - targetPort: 80 + targetPort: 3000 selector: app: knilch-server