51 lines
2.1 KiB
YAML
51 lines
2.1 KiB
YAML
{{- if or .Values.service.port .Values.service.ports -}}
|
|
{{- $service := .Values.service -}}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "common.names.fullname" . }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if or .Values.service.annotations .Values.commonAnnotations }}
|
|
annotations:
|
|
{{- if .Values.service.annotations }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.service.annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
{{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
|
|
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
|
|
{{- end }}
|
|
{{- if and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP)) }}
|
|
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
|
|
{{- end }}
|
|
ports:
|
|
{{- if .Values.service.port }}
|
|
- name: {{ include "app.service.defaultPortName" (pick .Values.service "port" "targetPort") }}
|
|
port: {{ .Values.service.port }}
|
|
{{- if .Values.service.targetPort }}
|
|
targetPort: {{ .Values.service.targetPort }}
|
|
{{- end }}
|
|
{{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePort)) }}
|
|
nodePort: {{ .Values.service.nodePort }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- range .Values.service.ports }}
|
|
- name: {{ .name }}
|
|
port: {{ .port }}
|
|
{{- if .targetPort }}
|
|
targetPort: {{ .targetPort }}
|
|
{{- end }}
|
|
{{- if and .nodePort (or (eq $service.type "NodePort") (eq $service.type "LoadBalancer")) }}
|
|
nodePort: {{ .nodePort }}
|
|
{{- end }}
|
|
{{- end }}
|
|
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
|
|
{{- end -}}
|