
This will allow us to run the CI properly. Change-Id: I813607167ca0568dc06935676409251c2d947ba9
25 lines
625 B
YAML
25 lines
625 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "lodgeit.fullname" . }}
|
|
labels:
|
|
{{- include "lodgeit.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }}
|
|
nodePort: {{.Values.service.nodePort}}
|
|
{{ end }}
|
|
|
|
{{- if .Values.service.externalIPs }}
|
|
externalIPs:
|
|
{{ toYaml .Values.service.externalIPs | indent 4 }}
|
|
{{- end }}
|
|
|
|
selector:
|
|
{{- include "lodgeit.selectorLabels" . | nindent 4 }}
|