From 77c63135fbb9bae6f0106b9dc16adda85d79a2fa Mon Sep 17 00:00:00 2001 From: Taif Kurji <taiku983@student.liu.se> Date: Tue, 22 Oct 2024 15:18:09 +0000 Subject: [PATCH] Revert "Merge branch 'main' of gitlab.liu.se:tdp003-2024/taiku983" This reverts commit 8b1a05dea3379966e882998e78be96924d738090 --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ba59848..7a26116 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -92,16 +92,16 @@ kube_deploy: value: http://squid-proxy.kube-system.svc:3128/ - name: https_proxy value: http://squid-proxy.kube-system.svc:3128/ - command: ["flask", "run", "-h", "0", "-p", "5000"] + command: ["flask", "run", "-h", "0", "-p", "3000"] image: $CI_REGISTRY_IMAGE:latest imagePullPolicy: Always name: ${CI_PROJECT_PATH_SLUG} ports: - - containerPort: 5000 + - containerPort: 3000 protocol: TCP readinessProbe: tcpSocket: - port: 5000 + port: 3000 resources: limits: cpu: 100m @@ -123,7 +123,7 @@ kube_deploy: - name: web port: 80 protocol: TCP - targetPort: 5000 + targetPort: 3000 selector: app: ${CI_PROJECT_PATH_SLUG} type: ClusterIP -- GitLab