🐛 Fix front nginx and network policies ports (#1518)

* 🐛 Use `8080` listen port for front nginx config

* 🐛 Use `8080` ingress port for front/hub network policies
This commit is contained in:
Serhii Ponomarenko 2024-03-15 00:18:24 +02:00 committed by GitHub
parent 9914183d7d
commit e7fc7b791a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

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