Collectd operator utilties
[demo.git] / vnfs / DAaaS / inference-core / charts / tf-serving / templates / ingress.yaml
1 {{/*
2 # Copyright 2019 Intel Corporation, Inc
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17 {{- if .Values.ingress.enabled -}}
18 {{- $fullName := include "tf-serving.fullname" . -}}
19 {{- $ingressPaths := .Values.ingress.paths -}}
20 apiVersion: extensions/v1beta1
21 kind: Ingress
22 metadata:
23   name: {{ $fullName }}
24   labels:
25     app: {{ include "tf-serving.name" . }}
26     release: {{ .Release.Name }}
27     modelName: {{ .Values.modelName }}
28   {{- with .Values.ingress.annotations }}
29   annotations:
30     {{- toYaml . | nindent 4 }}
31   {{- end }}
32 spec:
33 {{- if .Values.ingress.tls }}
34   tls:
35   {{- range .Values.ingress.tls }}
36     - hosts:
37       {{- range .hosts }}
38         - {{ . | quote }}
39       {{- end }}
40       secretName: {{ .secretName }}
41   {{- end }}
42 {{- end }}
43   rules:
44   {{- range .Values.ingress.hosts }}
45     - host: {{ . | quote }}
46       http:
47         paths:
48         {{- range $ingressPaths }}
49           - path: {{ . }}
50             backend:
51               serviceName: {{ $fullName }}
52               servicePort: http
53         {{- end }}
54   {{- end }}
55 {{- end }}