Merge "Open http port and use correct logback."
[oom.git] / kubernetes / sdnc / charts / dmaap-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.msgRouterContainerName }}
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       containers:
53       - command:
54         - /opt/onap/sdnc/dmaap-listener/bin/start-dmaap-listener.sh
55         name: {{ include "common.name" . }}
56         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
57         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58         env:
59         - name: PROPERTY_DIR
60           value: "{{ .Values.config.configDir }}"
61         - name: SDNC_CONFIG_DIR
62           value: "{{ .Values.config.configDir }}"
63         volumeMounts:
64         - mountPath: /etc/localtime
65           name: localtime
66           readOnly: true
67         - mountPath: {{ .Values.config.configDir }}/dblib.properties
68           name: properties
69           subPath: dblib.properties
70         - mountPath: {{ .Values.config.configDir }}/dhcpalert.properties
71           name: properties
72           subPath: dhcpalert.properties
73         - mountPath: {{ .Values.config.configDir }}/lcm.properties
74           name: properties
75           subPath: lcm.properties
76         resources:
77 {{ toYaml (pluck .Values.flavor .Values.resources| first) | indent 12 }}
78         {{- if .Values.nodeSelector }}
79         nodeSelector:
80 {{ toYaml .Values.nodeSelector | indent 10 }}
81         {{- end -}}
82         {{- if .Values.affinity }}
83         affinity:
84 {{ toYaml .Values.affinity | indent 10 }}
85         {{- end }}
86
87       volumes:
88         - name: localtime
89           hostPath:
90             path: /etc/localtime
91         - name: properties
92           configMap:
93             name: {{ include "common.fullname" . }}
94             defaultMode: 0644
95       imagePullSecrets:
96       - name: "{{ include "common.namespace" . }}-docker-registry-key"