From a9d9be3697158e170b6c3bb6ccca38731aaa1fab Mon Sep 17 00:00:00 2001 From: ilitirit Date: Wed, 12 Apr 2023 01:43:27 +0200 Subject: [PATCH] Fix container ports --- Expedience.Api/deployment.yaml | 2 +- Expedience.Api/service.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Expedience.Api/deployment.yaml b/Expedience.Api/deployment.yaml index 005af60..b8c2c0a 100644 --- a/Expedience.Api/deployment.yaml +++ b/Expedience.Api/deployment.yaml @@ -17,6 +17,6 @@ spec: - name: expedience-api image: registry.ilitirit.net/expedience-api:latest ports: - - containerPort: 7033 + - containerPort: 80 imagePullSecrets: - name: registry-credentials \ No newline at end of file diff --git a/Expedience.Api/service.yaml b/Expedience.Api/service.yaml index a9294ef..8d4c99d 100644 --- a/Expedience.Api/service.yaml +++ b/Expedience.Api/service.yaml @@ -9,5 +9,5 @@ spec: ports: - protocol: TCP port: 7033 - targetPort: 7033 + targetPort: 80 type: ClusterIP