apiVersion: v1 kind: Service metadata: name: {{ include "common.names.fullname" . }} namespace: {{ .Release.Namespace }} labels: {{- include "common.labels.middleware.minio" . | 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 eq .Values.service.type "LoadBalancer" }} loadBalancerSourceRanges: {{ .Values.service.loadBalancerSourceRanges }} {{ end }} {{- if (and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP))) }} loadBalancerIP: {{ .Values.service.loadBalancerIP }} {{- end }} ports: - name: minio port: {{ .Values.service.port }} targetPort: {{ .Values.containerPort }} {{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePort)) }} nodePort: {{ .Values.service.nodePort }} {{- else if eq .Values.service.type "ClusterIP" }} nodePort: null {{- end }} {{- if .Values.global.webhook.enabled }} - name: minio-webhook port: {{ .Values.global.webhook.port }} targetPort: minio-webhook protocol: TCP {{- end }} selector: {{- include "common.labels.matchLabels.minio" . | nindent 4 }}