priyanshu | 54a0a8a | 2019-02-28 10:08:52 +0530 | [diff] [blame] | 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 | |
sheetalm | 41d503e | 2019-06-04 12:48:23 +0530 | [diff] [blame] | 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 | |
priyanshu | 54a0a8a | 2019-02-28 10:08:52 +0530 | [diff] [blame] | 24 | {{- if .Values.ingress.enabled }} |
sheetalm | 41d503e | 2019-06-04 12:48:23 +0530 | [diff] [blame] | 25 | |
priyanshu | 54a0a8a | 2019-02-28 10:08:52 +0530 | [diff] [blame] | 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: |
sheetalm | 41d503e | 2019-06-04 12:48:23 +0530 | [diff] [blame] | 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}} |
priyanshu | 54a0a8a | 2019-02-28 10:08:52 +0530 | [diff] [blame] | 59 | {{ end }} |