Merge "Fix kube2msb failure to start"
[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         env:
42         - name: NAMESPACE
43           valueFrom:
44             fieldRef:
45               apiVersion: v1
46               fieldPath: metadata.namespace
47         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49         name: {{ include "common.name" . }}-readiness
50       containers:
51       - command:
52         - /opt/onap/sdnc/ueb-listener/bin/start-ueb-listener.sh
53         name: {{ include "common.name" . }}
54         image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}"
55         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56         env:
57         - name: PROPERTY_DIR
58           value: "{{ .Values.config.configDir }}"
59         - name: SDNC_CONFIG_DIR
60           value: "{{ .Values.config.configDir }}"
61         volumeMounts:
62         - mountPath: /etc/localtime
63           name: localtime
64           readOnly: true
65         - mountPath: /opt/onap/sdnc/data/properties/ueb-listener.properties
66           subPath: ueb-listener.properties
67           name: ueb-config
68         resources:
69 {{ toYaml .Values.resources | indent 12 }}
70         {{- if .Values.nodeSelector }}
71         nodeSelector:
72 {{ toYaml .Values.nodeSelector | indent 10 }}
73         {{- end -}}
74         {{- if .Values.affinity }}
75         affinity:
76 {{ toYaml .Values.affinity | indent 10 }}
77         {{- end }}
78
79       volumes:
80         - name: localtime
81           hostPath:
82             path: /etc/localtime
83         - name: ueb-config
84           configMap:
85             name: sdnc-ueb-configmap
86       imagePullSecrets:
87       - name: "{{ include "common.namespace" . }}-docker-registry-key"