From 0eff94f51c3d562ede6f0367bccfe56d3df4e64d Mon Sep 17 00:00:00 2001 From: Alexander Noskov Date: Fri, 12 Jul 2019 17:09:53 -0500 Subject: [PATCH] Remove quotes for bind-address in ingress Chart Currently, we are getting `bind-address: null` in ingress-conf for ingress pod in kube-system namespace In that case, nginx starting on 0.0.0.0:80 which breaks other ingress controllers, such as maas-ingress. All further ingress controllers can't start because they can't bind on 80 port. Change-Id: Ie7e9563bf14fe347969bea0d3c900c8d87d06de0 --- ingress/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingress/values.yaml b/ingress/values.yaml index 998d2d70..edb76e28 100644 --- a/ingress/values.yaml +++ b/ingress/values.yaml @@ -258,7 +258,7 @@ conf: # .network.vip.addr when running in host networking # and .network.vip.manage=true, otherwise it is left as # an empty string (the default). - bind-address: "null" + bind-address: null enable-vts-status: "true" server-tokens: "false" services: