helm-charts/mastodon/templates/ingress.yaml

77 lines
2.7 KiB
YAML
Raw Normal View History

2021-02-09 23:28:44 +00:00
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "mastodon.fullname" . -}}
2021-08-09 14:16:20 +00:00
{{- $webPort := .Values.mastodon.web.port -}}
{{- $streamingPort := .Values.mastodon.streaming.port -}}
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}
{{- end }}
{{- end }}
{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
apiVersion: networking.k8s.io/v1
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
2021-02-09 23:28:44 +00:00
apiVersion: networking.k8s.io/v1beta1
{{- else -}}
apiVersion: extensions/v1beta1
{{- end }}
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{- include "mastodon.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
2021-02-09 23:28:44 +00:00
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
2021-08-09 14:16:20 +00:00
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
2021-02-09 23:28:44 +00:00
http:
paths:
2021-08-09 14:16:20 +00:00
{{- range .paths }}
- path: {{ .path }}
{{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
pathType: {{ .pathType }}
{{- end }}
2021-02-09 23:28:44 +00:00
backend:
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
service:
name: {{ $fullName }}-web
port:
number: {{ $webPort }}
{{- else }}
2021-02-09 23:28:44 +00:00
serviceName: {{ $fullName }}-web
2021-08-09 14:16:20 +00:00
servicePort: {{ $webPort }}
{{- end }}
2021-08-09 14:16:20 +00:00
- path: {{ .path }}api/v1/streaming
{{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
pathType: {{ .pathType }}
{{- end }}
2021-02-09 23:28:44 +00:00
backend:
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
service:
name: {{ $fullName }}-streaming
port:
number: {{ $streamingPort }}
{{- else }}
2021-02-09 23:28:44 +00:00
serviceName: {{ $fullName }}-streaming
2021-08-09 14:16:20 +00:00
servicePort: {{ $streamingPort }}
{{- end }}
2021-08-09 14:16:20 +00:00
{{- end }}
{{- end }}
2021-02-09 23:28:44 +00:00
{{- end }}