36 lines
943 B
YAML
36 lines
943 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ tpl .Values.ingress.name . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
{{- with .Values.ingress.annotations }}
|
|
annotations:
|
|
{{- tpl (. | toYaml) $ | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
ingressClassName: {{ .Values.ingress.className }}
|
|
{{- if .Values.ingress.tls }}
|
|
tls:
|
|
{{- range .Values.ingress.tls }}
|
|
- hosts:
|
|
{{- range .hosts }}
|
|
- {{ tpl . $ | quote }}
|
|
{{- end }}
|
|
secretName: {{ tpl (.secretName | toYaml) $ }}
|
|
{{- end }}
|
|
{{- end }}
|
|
rules:
|
|
{{- range .Values.ingress.hosts }}
|
|
- host: {{ tpl .host $ | quote }}
|
|
http:
|
|
paths:
|
|
{{- range .paths }}
|
|
- path: {{ .path }}
|
|
pathType: {{ .pathType }}
|
|
backend:
|
|
service:
|
|
name: {{ tpl $.Values.service.name $ }}
|
|
port:
|
|
number: 8000
|
|
{{- end }}
|
|
{{- end }} |