diff options
author | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2018-10-16 09:56:34 -0400 |
---|---|---|
committer | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2018-10-23 14:31:50 +0000 |
commit | fe527eb5891f4b774a023df2313575e78a6ce9fe (patch) | |
tree | ac3064082afff98643be3f991a434222f6743375 /kubernetes/aai/templates/service.yaml | |
parent | 10bac96f181857350b0ed1a662abc2c39472406e (diff) |
fixing clusterIP service type errors
If you try and change the service type from a nodeport
to a cluster IP things break. We never really exercise
this code path in testing but if you want to experiment
with a totally internal network environment you need to be
able to turn off node ports.
Issue-ID: OOM-1475
Change-Id: I1a0f4b0a4c390f3353e1611b6002b93e54bb5044
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/aai/templates/service.yaml')
-rw-r--r-- | kubernetes/aai/templates/service.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/aai/templates/service.yaml b/kubernetes/aai/templates/service.yaml index 29c13f97fa..91bdb2e904 100644 --- a/kubernetes/aai/templates/service.yaml +++ b/kubernetes/aai/templates/service.yaml @@ -39,7 +39,7 @@ spec: name: {{ .Values.service.portName }} - port: {{ .Values.service.externalPort2 }} targetPort: {{ .Values.service.internalPort2 }} - name: {{ .Values.service.portName }} + name: {{ .Values.service.portName2 }} {{- end}} type: {{ .Values.service.type }} selector: |