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: - {} ---