summaryrefslogtreecommitdiffstats
path: root/charts/aaf-hello/templates/service.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'charts/aaf-hello/templates/service.yaml')
-rw-r--r--charts/aaf-hello/templates/service.yaml16
1 files changed, 4 insertions, 12 deletions
diff --git a/charts/aaf-hello/templates/service.yaml b/charts/aaf-hello/templates/service.yaml
index 281aa1c..102e85d 100644
--- a/charts/aaf-hello/templates/service.yaml
+++ b/charts/aaf-hello/templates/service.yaml
@@ -24,18 +24,10 @@ metadata:
heritage: {{ .Release.Service }}
spec:
ports:
- {{if eq .Values.service.type "NodePort" -}}
- - port: {{ .Values.service.externalPort }}
- #Example internal target port if required
- #targetPort: {{ .Values.service.internalPort }}
- nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
- name: {{ .Values.service.portName }}
- {{- else -}}
- - port: {{ .Values.service.externalPort }}
- targetPort: {{ .Values.service.internalPort }}
- name: {{ .Values.service.portName }}
- {{- end}}
+ - port: {{ .Values.global.aaf.hello.internal_port }}
+ nodePort: {{ .Values.global.aaf.hello.public_port }}
+ name: aaf-hello
selector:
app: {{ include "common.name" . }}
release: {{ .Release.Name }}
- type: {{ .Values.service.type }}
+ type: "NodePort"