charts/forwardauth/templates/ingress.yaml
Jeff Billimek 114be3b2aa
adding auth0 chart (#62)
* 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
2019-08-08 22:23:39 -04:00

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 }}