blob: e10de6df2036a732801a743eea06573483524968 [file] [log] [blame]
priyanshu54a0a8a2019-02-28 10:08:52 +05301# 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
sheetalm41d503e2019-06-04 12:48:23 +053015{{- 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
priyanshu54a0a8a2019-02-28 10:08:52 +053024{{- if .Values.ingress.enabled }}
sheetalm41d503e2019-06-04 12:48:23 +053025
priyanshu54a0a8a2019-02-28 10:08:52 +053026apiVersion: extensions/v1beta1
27kind: Ingress
28metadata:
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 }}
40spec:
41 rules:
sheetalm41d503e2019-06-04 12:48:23 +053042{{- 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}}
priyanshu54a0a8a2019-02-28 10:08:52 +053059{{ end }}