{{- $fullName := include "squidex.fullname" . -}} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ $fullName }} namespace: {{ .Release.Namespace | quote }} labels: {{- include "squidex.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: - host: {{ .Values.ingress.hostName | quote }} http: paths: - path: / pathType: Prefix backend: service: name: {{ $fullName }} port: number: {{ .Values.service.port }}