Merge "doc fix k8s/docker versions"
[oom.git] / kubernetes / sdnc / charts / ueb-listener / templates / deployment.yaml
1 # Copyright © 2017 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 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.config.mysqlChartName }}
39         - --container-name
40         - {{ .Values.config.sdncChartName }}
41         - --container-name
42         - {{ .Values.config.sdcbeChartName }}
43         - --container-name
44         - {{ .Values.config.msgRouterContainerName }}
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54       containers:
55       - command:
56         - /opt/onap/sdnc/ueb-listener/bin/start-ueb-listener.sh
57         name: {{ include "common.name" . }}
58         image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}"
59         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60         env:
61         - name: PROPERTY_DIR
62           value: "{{ .Values.config.configDir }}"
63         - name: SDNC_CONFIG_DIR
64           value: "{{ .Values.config.configDir }}"
65         volumeMounts:
66         - mountPath: /etc/localtime
67           name: localtime
68           readOnly: true
69         - mountPath: /opt/onap/sdnc/data/properties/ueb-listener.properties
70           subPath: ueb-listener.properties
71           name: ueb-config
72         resources:
73 {{ toYaml .Values.resources | indent 12 }}
74         {{- if .Values.nodeSelector }}
75         nodeSelector:
76 {{ toYaml .Values.nodeSelector | indent 10 }}
77         {{- end -}}
78         {{- if .Values.affinity }}
79         affinity:
80 {{ toYaml .Values.affinity | indent 10 }}
81         {{- end }}
82
83       volumes:
84         - name: localtime
85           hostPath:
86             path: /etc/localtime
87         - name: ueb-config
88           configMap:
89             name: sdnc-ueb-configmap
90       imagePullSecrets:
91       - name: "{{ include "common.namespace" . }}-docker-registry-key"