diff options
author | Jack Lucas <jflos@sonoris.net> | 2021-02-12 12:48:53 -0500 |
---|---|---|
committer | Jack Lucas <jflos@sonoris.net> | 2021-02-15 12:49:36 -0500 |
commit | fc55fd5b5bc7173d9cfd84a7c41f5b70020610e1 (patch) | |
tree | eb86701a8c6751a1827838bd5b61823ff12ab25c /kubernetes | |
parent | 33ea9587638769c2ef8e02ea4e943056b4ce40c4 (diff) |
[COMMON] Fix problem with useNodePortExt
Fix so that the useNodePortExt flag is honored when
creating a k8s Service with the service template.
Issue-ID: OOM-2679
Signed-off-by: Jack Lucas <jflos@sonoris.net>
Change-Id: I40ff3ab6df28ee1f9c582dff35a5360f632accbd
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/common/common/templates/_service.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/common/templates/_service.tpl b/kubernetes/common/common/templates/_service.tpl index dddd63491d..9c3010c209 100644 --- a/kubernetes/common/common/templates/_service.tpl +++ b/kubernetes/common/common/templates/_service.tpl @@ -128,7 +128,7 @@ labels: {{- include "common.labels" (dict "labels" $labels "dot" $dot) | nindent name: {{ $port.name }} {{- end }} {{- if (eq $serviceType "NodePort") }} - nodePort: {{ include "common.nodePortPrefix" (dict "dot" $dot "portNodePortExt" $port.useNodePortExt) }}{{ $port.nodePort }} + nodePort: {{ include "common.nodePortPrefix" (dict "dot" $dot "useNodePortExt" $port.useNodePortExt) }}{{ $port.nodePort }} {{- end }} {{- else }} - port: {{ default $port.port $port.plain_port }} |