2020-06-29 11:58:48 +00:00
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "mastodon.fullname" . -}}
2021-02-15 07:00:54 +00:00
{{- $webPort := .Values.mastodon.web.port -}}
{{- $streamingPort := .Values.mastodon.streaming.port -}}
2022-02-09 11:30:00 +00:00
{{- if or (.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not (.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }}
apiVersion : networking.k8s.io/v1
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
2020-06-29 11:58:48 +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 .Values.ingress.tls }}
tls :
{{- range .Values.ingress.tls }}
- hosts :
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName : {{ .secretName }}
{{- end }}
{{- end }}
rules :
2021-02-15 07:00:54 +00:00
{{- range .Values.ingress.hosts }}
- host : {{ .host | quote }}
2020-06-29 11:58:48 +00:00
http :
paths :
2021-02-15 07:00:54 +00:00
{{- range .paths }}
- path : {{ .path }}
2020-06-29 11:58:48 +00:00
backend :
2022-02-09 11:30:00 +00:00
{{- if or ($.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not ($.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }}
service :
name : {{ $fullName }}-web
port :
number : {{ $webPort }}
{{- else }}
2020-06-29 11:58:48 +00:00
serviceName : {{ $fullName }}-web
2021-02-15 07:00:54 +00:00
servicePort : {{ $webPort }}
2022-02-09 11:30:00 +00:00
{{- end }}
{{- if or ($.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not ($.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }}
pathType : ImplementationSpecific
{{- end }}
2021-02-15 07:00:54 +00:00
- path : {{ .path }}api/v1/streaming
2020-06-29 11:58:48 +00:00
backend :
2022-02-09 11:30:00 +00:00
{{- if or ($.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not ($.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }}
service :
name : {{ $fullName }}-streaming
port :
number : {{ $streamingPort }}
{{- else }}
2020-06-29 11:58:48 +00:00
serviceName : {{ $fullName }}-streaming
2021-02-15 07:00:54 +00:00
servicePort : {{ $streamingPort }}
2022-02-09 11:30:00 +00:00
{{- end }}
{{- if or ($.Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress") (not ($.Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress")) }}
pathType : ImplementationSpecific
{{- end }}
2021-02-15 07:00:54 +00:00
{{- end }}
{{- end }}
2020-06-29 11:58:48 +00:00
{{- end }}