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

{{- if eq .Values.ingress.platform "openshift" }} apiVersion: route.openshift.io/v1 kind: Route metadata: annotations: {{ template "admin-routes.whitelist.annotation" . }} labels: app: {{ .Chart.Name }} name: {{ .Chart.Name }} spec: host: business-proc-admin-{{ .Values.cdPipelineName }}-{{ .Values.cdPipelineStageName }}.{{ .Values.dnsWildcard }} tls: insecureEdgeTerminationPolicy: Redirect termination: edge to: kind: Service name: {{ .Chart.Name }} weight: 100 status: ingress: [] {{- end }}