mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
114be3b2aa
* adding auth0 chart Signed-off-by: Jeff Billimek <jeff@billimek.com> * renaming auth0 chart to forwardauth Signed-off-by: Jeff Billimek <jeff@billimek.com> * adding home stanza to charts.yaml * adding dniel as maintainer * fixing linting error with Chart.yaml
37 lines
871 B
YAML
37 lines
871 B
YAML
{{- if .Values.ingress.enabled -}}
|
|
{{- $fullName := include "helm.fullname" . -}}
|
|
{{- $servicePort := .Values.service.port -}}
|
|
{{- $ingressPath := .Values.ingress.path -}}
|
|
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ $fullName }}
|
|
labels:
|
|
app: {{ template "helm.name" . }}
|
|
chart: {{ template "helm.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
{{- with .Values.ingress.annotations }}
|
|
annotations:
|
|
{{ toYaml . | indent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if .Values.ingress.tls }}
|
|
tls:
|
|
{{- range .Values.ingress.tls }}
|
|
- hosts:
|
|
{{- range .hosts }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
secretName: {{ .secretName }}
|
|
{{- end }}
|
|
{{- end }}
|
|
rules:
|
|
- http:
|
|
paths:
|
|
- backend:
|
|
serviceName: {{ $fullName }}
|
|
servicePort: http
|
|
path: /oauth2
|
|
{{- end }}
|