From e7fc7b791a776608001a46876af036a9613b842e Mon Sep 17 00:00:00 2001 From: Serhii Ponomarenko <116438358+tiptophelmet@users.noreply.github.com> Date: Fri, 15 Mar 2024 00:18:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20front=20nginx=20and=20netw?= =?UTF-8?q?ork=20policies=20ports=20(#1518)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🐛 Use `8080` listen port for front nginx config * 🐛 Use `8080` ingress port for front/hub network policies --- helm-chart/templates/11-nginx-config-map.yaml | 4 ++-- helm-chart/templates/16-network-policies.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helm-chart/templates/11-nginx-config-map.yaml b/helm-chart/templates/11-nginx-config-map.yaml index d9aca1332..22e085059 100644 --- a/helm-chart/templates/11-nginx-config-map.yaml +++ b/helm-chart/templates/11-nginx-config-map.yaml @@ -9,9 +9,9 @@ metadata: data: default.conf: | server { - listen 80; + listen 8080; {{- if .Values.tap.ipv6 }} - listen [::]:80; + listen [::]:8080; {{- end }} access_log /dev/stdout; error_log /dev/stdout; diff --git a/helm-chart/templates/16-network-policies.yaml b/helm-chart/templates/16-network-policies.yaml index 772c7ae7d..1bbf4f26a 100644 --- a/helm-chart/templates/16-network-policies.yaml +++ b/helm-chart/templates/16-network-policies.yaml @@ -13,7 +13,7 @@ spec: ingress: - ports: - protocol: TCP - port: 80 + port: 8080 egress: - {} --- @@ -32,7 +32,7 @@ spec: ingress: - ports: - protocol: TCP - port: 80 + port: 8080 egress: - {} ---