From 2198b0c7d5080b4117f3e04fad8f81e93f820732 Mon Sep 17 00:00:00 2001 From: Zhe Huang Date: Wed, 6 May 2020 17:27:33 -0400 Subject: [PATCH] change the KONG container port to match nodeport This patch allows the same port to be used for nodeport and DANM network. Signed-off-by: Zhe Huang Change-Id: I14abb7678d2c3704048171724b08af5248eca615 --- helm/infrastructure/subcharts/kong/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/infrastructure/subcharts/kong/values.yaml b/helm/infrastructure/subcharts/kong/values.yaml index 6d7484e..630c858 100755 --- a/helm/infrastructure/subcharts/kong/values.yaml +++ b/helm/infrastructure/subcharts/kong/values.yaml @@ -89,14 +89,14 @@ proxy: http: enabled: true servicePort: 80 - containerPort: 8000 + containerPort: 32080 # Set a nodePort which is available if service type is NodePort nodePort: 32080 tls: enabled: true servicePort: 443 - containerPort: 8443 + containerPort: 32443 # Set a target port for the TLS port in proxy service, useful when using TLS # termination on an ELB. # overrideServiceTargetPort: 8000 -- 2.16.6