Merge "[GENERAL] Allow different port for svc and pod"
authorKrzysztof Opasiak <k.opasiak@samsung.com>
Wed, 3 Mar 2021 19:51:37 +0000 (19:51 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 3 Mar 2021 19:51:37 +0000 (19:51 +0000)
kubernetes/common/common/templates/_pod.tpl

index de25485..b38a7f1 100644 (file)
 {{- $global := . }}
 {{-   range $index, $port := $ports }}
 {{-     if (include "common.needTLS" $global) }}
-- containerPort: {{ $port.port }}
+- containerPort: {{ default $port.port $port.internal_port }}
 {{-     else }}
-- containerPort: {{ default $port.port $port.plain_port }}
+- containerPort: {{ default (default $port.port $port.internal_port) (default $port.plain_port $port.internal_plain_port) }}
 {{-     end }}
   name: {{ $port.name }}
 {{-     if (and $port.plain_port (and (include "common.needTLS" $global) $both_tls_and_plain))  }}
-- containerPort: {{ $port.plain_port }}
+- containerPort: {{ default $port.plain_port $port.internal_plain_port }}
   name: {{ $port.name }}-plain
 {{-     end }}
 {{-   end }}
@@ -67,4 +67,3 @@ securityContext:
   privileged: false
   allowPrivilegeEscalation: false
 {{- end }}
-