24 lines
986 B
YAML
Executable file
24 lines
986 B
YAML
Executable file
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "minio.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "minio.labels" . | nindent 4 }}
|
|
{{- if .Values.service.annotations }}
|
|
annotations: {{- include "minio.tplValue" ( dict "value" .Values.service.annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
{{- 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: minio
|
|
{{- 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 }}
|
|
selector: {{- include "minio.matchLabels" . | nindent 4 }}
|