24 lines
875 B
YAML
24 lines
875 B
YAML
{{- if and (eq .Values.mode "distributed") (not .Values.gateway.enabled) }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ printf "%s-headless" (include "common.names.fullname" .) | trunc 63 }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: ClusterIP
|
|
clusterIP: None
|
|
ports:
|
|
- name: minio
|
|
port: {{ .Values.service.port }}
|
|
targetPort: minio
|
|
publishNotReadyAddresses: true
|
|
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
|
|
{{- end }}
|