This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/helm/templates/ingress.yaml

52 lines
1.4 KiB
YAML
Raw Normal View History

2020-12-05 21:08:42 +00:00
{{- $fullName := include "authentik.fullname" . -}}
2019-02-08 13:57:16 +00:00
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
2020-12-05 21:08:42 +00:00
app.kubernetes.io/name: {{ include "authentik.name" . }}
helm.sh/chart: {{ include "authentik.chart" . }}
2019-02-08 13:57:16 +00:00
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- with .Values.ingress.annotations }}
annotations:
{{ toYaml . | indent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ . | quote }}
http:
paths:
- path: /
2019-02-08 13:57:16 +00:00
backend:
2019-07-04 14:07:16 +00:00
serviceName: {{ $fullName }}-web
servicePort: http
- path: /static/
backend:
serviceName: {{ $fullName }}-static
servicePort: http
2020-12-13 23:11:49 +00:00
- path: /media/
backend:
serviceName: {{ $fullName }}-static
servicePort: http
- path: /robots.txt
2019-07-04 14:07:16 +00:00
backend:
serviceName: {{ $fullName }}-static
2019-02-08 13:57:16 +00:00
servicePort: http
- path: /favicon.ico
backend:
serviceName: {{ $fullName }}-static
servicePort: http
2019-02-08 13:57:16 +00:00
{{- end }}