61 lines
1.9 KiB
YAML
61 lines
1.9 KiB
YAML
{{- if and .Values.dashboard.enabled .Values.dashboard.ingress.enabled }}
|
|
{{- $fullName := include "goldilocks.fullname" . -}}
|
|
{{- $apiV1 := false -}}
|
|
{{- if and (.Capabilities.APIVersions.Has "networking.k8s.io/v1") (semverCompare ">= v1.19-0" .Capabilities.KubeVersion.Version) -}}
|
|
apiVersion: networking.k8s.io/v1
|
|
{{- $apiV1 = true -}}
|
|
{{- else if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" -}}
|
|
apiVersion: networking.k8s.io/v1beta1
|
|
{{- end }}
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ $fullName }}-dashboard
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app.kubernetes.io/name: {{ include "goldilocks.name" . }}
|
|
helm.sh/chart: {{ include "goldilocks.chart" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
app.kubernetes.io/component: dashboard
|
|
{{- with .Values.dashboard.ingress.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if and (.Values.dashboard.ingress.ingressClassName) (semverCompare ">= v1.18-0" .Capabilities.KubeVersion.Version) }}
|
|
ingressClassName: {{ .Values.dashboard.ingress.ingressClassName }}
|
|
{{- end }}
|
|
{{- if .Values.dashboard.ingress.tls }}
|
|
tls:
|
|
{{- range .Values.dashboard.ingress.tls }}
|
|
- hosts:
|
|
{{- range .hosts }}
|
|
- {{ . | quote }}
|
|
{{- end }}
|
|
secretName: {{ .secretName }}
|
|
{{- end }}
|
|
{{- end }}
|
|
rules:
|
|
{{- range .Values.dashboard.ingress.hosts }}
|
|
- host: {{ .host | quote }}
|
|
http:
|
|
paths:
|
|
{{- range .paths }}
|
|
{{- if $apiV1 }}
|
|
- path: {{ .path }}
|
|
pathType: {{ .type }}
|
|
backend:
|
|
service:
|
|
name: {{ $fullName }}-dashboard
|
|
port:
|
|
name: http
|
|
{{- else }}
|
|
- path: {{ .path }}
|
|
backend:
|
|
serviceName: {{ $fullName }}-dashboard
|
|
servicePort: http
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|