From 324578008887d835b051f898c31e7e570ba11271 Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Fri, 30 Jun 2023 23:42:51 +0200 Subject: [PATCH] fix(manifest): Fix port routing --- manifests/deployment.yaml | 2 +- manifests/service.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/deployment.yaml b/manifests/deployment.yaml index d355fe1..4dd27b9 100644 --- a/manifests/deployment.yaml +++ b/manifests/deployment.yaml @@ -19,7 +19,7 @@ spec: - name: gitea image: gitea/gitea:1.19.3 ports: - - containerPort: 80 + - containerPort: 3000 env: - name: DB_PASSWORD valueFrom: diff --git a/manifests/service.yaml b/manifests/service.yaml index 9029eee..c088309 100644 --- a/manifests/service.yaml +++ b/manifests/service.yaml @@ -8,6 +8,6 @@ spec: - name: http port: 80 protocol: TCP - targetPort: 80 + targetPort: 3000 selector: app: gitea