{{- if .Values.ingress.enabled -}} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ include "calink.fullname" . }} labels: {{- include "calink.labels" . | nindent 4 }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} {{- with .Values.commonAnnotations }} {{- toYaml . | nindent 4 }} {{- end }} spec: {{- if .Values.ingress.className }} ingressClassName: {{ .Values.ingress.className }} {{- end }} {{- 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: - path: /api pathType: Prefix backend: service: name: {{ include "calink.fullname" $ }}-backend port: number: {{ $.Values.backend.service.port }} - path: /health pathType: Prefix backend: service: name: {{ include "calink.fullname" $ }}-backend port: number: {{ $.Values.backend.service.port }} - path: / pathType: Prefix backend: service: name: {{ include "calink.fullname" $ }}-frontend port: number: {{ $.Values.frontend.service.port }} {{- end }} {{- end }}