Merge "Fix inconsistent repository references"
[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 }}/dhcpalert.properties
68           subPath: dhcpalert.properties
69           name: dmaap-dhcapalert-config
70         resources:
71 {{ toYaml .Values.resources | indent 12 }}
72         {{- if .Values.nodeSelector }}
73         nodeSelector:
74 {{ toYaml .Values.nodeSelector | indent 10 }}
75         {{- end -}}
76         {{- if .Values.affinity }}
77         affinity:
78 {{ toYaml .Values.affinity | indent 10 }}
79         {{- end }}
80
81       volumes:
82         - name: localtime
83           hostPath:
84             path: /etc/localtime
85         - name: dmaap-dhcapalert-config
86           configMap:
87             name: sdnc-dmaap-configmap
88       imagePullSecrets:
89       - name: "{{ include "common.namespace" . }}-docker-registry-key"