{{- if or .Values.ingress.public.enabled .Values.demo -}} {{- $fullName := include "hydra.fullname" . -}} {{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} apiVersion: networking.k8s.io/v1 {{- else -}} apiVersion: networking.k8s.io/v1beta1 {{- end }} kind: Ingress metadata: name: {{ $fullName }}-public {{- if .Release.Namespace }} namespace: {{ .Release.Namespace }} {{- end }} labels: {{- include "hydra.labels" . | nindent 4 }} {{- with .Values.ingress.public.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} spec: ingressClassName: {{ .Values.ingress.public.className }} {{- if .Values.ingress.public.tls }} tls: {{- range .Values.ingress.public.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} {{- end }} {{- end }} rules: {{- range .Values.ingress.public.hosts }} - host: {{ .host | quote }} http: paths: {{- range .paths }} - path: {{ .path }} {{- if .pathType }} pathType: {{ .pathType }} {{- end }} backend: {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} service: name: {{ $fullName }}-public port: name: {{ $.Values.service.public.name }} {{- else }} serviceName: {{ $fullName }}-public servicePort: {{ $.Values.service.public.name }} {{- end }} {{- end }} {{- end }} {{- end }}