{{- if .Values.ingress.enabled -}} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ include "cosmo-router.fullname" . }} labels: {{- include "cosmo-router.labels" . | nindent 4 }} annotations: kubernetes.io/ingress.class: {{ .Values.ingress.className | default "traefik" | quote }} {{- with .Values.ingress.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: {{- range .Values.ingress.hosts }} - host: {{ .host | quote }} http: paths: {{- range .paths }} - path: {{ .path }} pathType: {{ .pathType | default "Prefix" }} backend: service: name: {{ include "cosmo-router.fullname" $ }} port: number: {{ $.Values.service.port }} {{- end }} {{- end }} {{- end }}