e10de6df2036a732801a743eea06573483524968
[oom.git] / kubernetes / sdc / charts / sdc-wfd-fe / templates / ingress.yaml
1 # Copyright © 2018 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 {{- define "rules.wf" -}}
16 - http:
17     paths:
18       - path: /workflows/
19         backend:
20           serviceName: {{.Values.service.name}}
21           servicePort: {{.Values.service.internalPort}}
22 {{- end -}}
23
24 {{- if .Values.ingress.enabled }}
25
26 apiVersion: extensions/v1beta1
27 kind: Ingress
28 metadata:
29   name: {{ include "common.fullname" . }}-ingress
30   namespace: {{ include "common.namespace" . }}
31   labels:
32     app: {{ include "common.name" . }}
33     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
34     release: {{ .Release.Name }}
35     heritage: {{ .Release.Service }}
36 {{- with .Values.ingress.annotations }}
37   annotations:
38 {{ toYaml . | indent 4 }}
39 {{- end }}
40 spec:
41   rules:
42 {{- if .Values.ingress.hosts}}
43 {{- range .Values.ingress.hosts}}
44 {{- include "rules.wf" $ | nindent 2}}
45 {{- if .}}
46     host: {{. | quote}}
47 {{- end}}
48 {{- end}}
49   tls:
50   - hosts:
51 {{- range .Values.ingress.hosts}}
52 {{- if .}}
53     - {{ . | quote }}
54 {{- end}}
55 {{- end }}
56 {{- else}}
57 {{- include "rules.wf" . | nindent 2}}
58 {{- end}}
59 {{ end }}