Stackedit/chart/templates/ingress.yaml

39 lines
881 B
YAML
Raw Normal View History

2019-07-02 09:31:14 +00:00
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "stackedit.fullname" . -}}
2021-03-29 12:28:44 +00:00
apiVersion: networking.k8s.io/v1
2019-07-02 09:31:14 +00:00
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{ include "stackedit.labels" . | indent 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:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ . }}
backend:
2021-03-29 18:32:29 +00:00
service:
name: {{ $fullName }}
port:
name: http
2019-07-02 09:31:14 +00:00
{{- end }}
{{- end }}
{{- end }}