deploy-templates/templates/route.yaml (36 lines of code) (raw):

{{- if .Values.ingress.enabled -}} {{- if or (not .Values.global.excludePortals) (not (has "citizen" .Values.global.excludePortals)) }} {{- $fullName := include "ddm-notification-service.fullname" . -}} {{- $svcPort := .Values.service.port -}} {{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} apiVersion: networking.k8s.io/v1beta1 {{- else -}} apiVersion: extensions/v1beta1 {{- end }} kind: Ingress metadata: name: {{ $fullName }} labels: {{- include "ddm-notification-service.labels" . | nindent 4 }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} spec: {{- if .Values.ingress.tls }} tls: {{- range .Values.ingress.tls }} - host: {{ .Values.ingress.host }} secretName: {{ .secretName }} {{- end }} {{- end }} rules: - host: {{ .Values.ingress.host | quote }} http: paths: - path: {{ .Values.ingress.path }} backend: serviceName: {{ $fullName }} servicePort: {{ $svcPort }} {{- end }} {{- end }}