From 6451768c4084bf2982f38e50ee2684f255ef6c4f Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sun, 10 Oct 2021 02:28:28 +0200 Subject: [PATCH] nginx-ingress: Rework external ports to use NodePort --- infrastructure/ingress-nginx/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/ingress-nginx/release.yaml b/infrastructure/ingress-nginx/release.yaml index 10c6a7b60..aea17d451 100644 --- a/infrastructure/ingress-nginx/release.yaml +++ b/infrastructure/ingress-nginx/release.yaml @@ -180,7 +180,7 @@ spec: http: http https: https - type: LoadBalancer + type: NodePort # type: NodePort # nodePorts: @@ -189,8 +189,8 @@ spec: # tcp: # 8080: 32808 nodePorts: - http: "" - https: "" + http: "http" + https: "https" tcp: {} udp: {} -- GitLab