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 }}