{{- if .Values.ingress.enabled }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ include "groombook.fullname" . }} labels: {{- include "groombook.labels" . | nindent 4 }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} spec: {{- if .Values.ingress.className }} ingressClassName: {{ .Values.ingress.className }} {{- end }} {{- if .Values.ingress.tls }} tls: {{- toYaml .Values.ingress.tls | nindent 4 }} {{- end }} rules: {{- range .Values.ingress.hosts }} - host: {{ .host | quote }} http: paths: {{- range .paths }} - path: {{ .path }} pathType: {{ .pathType }} backend: service: {{- if eq .service "api" }} name: {{ include "groombook.fullname" $ }}-api port: number: {{ $.Values.api.service.port }} {{- else }} name: {{ include "groombook.fullname" $ }}-web port: number: {{ $.Values.web.service.port }} {{- end }} {{- end }} {{- end }} {{- end }}