mirror of
https://github.com/minio/minio.git
synced 2025-02-14 07:02:29 -05:00
59 lines
1.7 KiB
YAML
59 lines
1.7 KiB
YAML
{{- if .Values.consoleIngress.enabled -}}
|
|
{{- $fullName := printf "%s-console" (include "minio.fullname" .) -}}
|
|
{{- $servicePort := .Values.consoleService.port -}}
|
|
{{- $ingressPath := .Values.consoleIngress.path -}}
|
|
apiVersion: {{ template "minio.consoleIngress.apiVersion" . }}
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ $fullName }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels:
|
|
app: {{ template "minio.name" . }}
|
|
chart: {{ template "minio.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
{{- with .Values.consoleIngress.labels }}
|
|
{{ toYaml . | indent 4 }}
|
|
{{- end }}
|
|
|
|
{{- with .Values.consoleIngress.annotations }}
|
|
annotations:
|
|
{{ toYaml . | indent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if .Values.consoleIngress.ingressClassName }}
|
|
ingressClassName: {{ .Values.consoleIngress.ingressClassName }}
|
|
{{- end }}
|
|
{{- if .Values.consoleIngress.tls }}
|
|
tls:
|
|
{{- range .Values.consoleIngress.tls }}
|
|
- hosts:
|
|
{{- range .hosts }}
|
|
- {{ . | quote }}
|
|
{{- end }}
|
|
secretName: {{ .secretName }}
|
|
{{- end }}
|
|
{{- end }}
|
|
rules:
|
|
{{- range .Values.consoleIngress.hosts }}
|
|
- http:
|
|
paths:
|
|
- path: {{ $ingressPath }}
|
|
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: {{ $fullName }}
|
|
port:
|
|
number: {{ $servicePort }}
|
|
{{- else }}
|
|
backend:
|
|
serviceName: {{ $fullName }}
|
|
servicePort: {{ $servicePort }}
|
|
{{- end }}
|
|
{{- if . }}
|
|
host: {{ . | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|