MetalLB install script for bare metal cluster
[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: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ include "common.release" . }}
32     spec:
33       initContainers:
34       - command:
35         - sh
36         args:
37         - -c
38         - "cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done"
39         env:
40         - name: SDNC_DB_USER
41           {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
42         - name: SDNC_DB_PASSWORD
43           {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
44         - name: ODL_USER
45           {{- include "common.secret.envFromSecret" (dict "global" . "uid" "odl-creds" "key" "login") | indent 10 }}
46         - name: ODL_PASSWORD
47           {{- include "common.secret.envFromSecret" (dict "global" . "uid" "odl-creds" "key" "password") | indent 10 }}
48         volumeMounts:
49         - mountPath: /config-input
50           name: config-input
51         - mountPath: /config
52           name: properties
53         image: "{{ .Values.global.envsubstImage }}"
54         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55         name: {{ include "common.name" . }}-update-config
56
57       - command:
58         - /root/ready.py
59         args:
60         - --container-name
61         - {{ include "common.mariadbService" . }}
62         - --container-name
63         - {{ .Values.config.sdncChartName }}
64         - --container-name
65         - {{ .Values.config.msgRouterContainerName }}
66         env:
67         - name: NAMESPACE
68           valueFrom:
69             fieldRef:
70               apiVersion: v1
71               fieldPath: metadata.namespace
72         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
73         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74         name: {{ include "common.name" . }}-readiness
75       containers:
76       - command:
77         - /opt/onap/sdnc/dmaap-listener/bin/start-dmaap-listener.sh
78         name: {{ include "common.name" . }}
79         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
80         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
81         env:
82         - name: PROPERTY_DIR
83           value: "{{ .Values.config.configDir }}"
84         - name: SDNC_CONFIG_DIR
85           value: "{{ .Values.config.configDir }}"
86         volumeMounts:
87         - mountPath: /etc/localtime
88           name: localtime
89           readOnly: true
90         - mountPath: {{ .Values.config.configDir }}/dblib.properties
91           name: properties
92           subPath: dblib.properties
93         - mountPath: {{ .Values.config.configDir }}/dhcpalert.properties
94           name: properties
95           subPath: dhcpalert.properties
96         - mountPath: {{ .Values.config.configDir }}/lcm.properties
97           name: properties
98           subPath: lcm.properties
99         - mountPath: {{ .Values.config.configDir }}/aai.properties
100           name: properties
101           subPath: aai.properties
102         resources:
103 {{ include "common.resources" . | indent 12 }}
104         {{- if .Values.nodeSelector }}
105         nodeSelector:
106 {{ toYaml .Values.nodeSelector | indent 10 }}
107         {{- end -}}
108         {{- if .Values.affinity }}
109         affinity:
110 {{ toYaml .Values.affinity | indent 10 }}
111         {{- end }}
112
113       volumes:
114         - name: localtime
115           hostPath:
116             path: /etc/localtime
117         - name: config-input
118           configMap:
119             name: {{ include "common.fullname" . }}
120             defaultMode: 0644
121         - name: properties
122           emptyDir:
123             medium: Memory
124       imagePullSecrets:
125       - name: "{{ include "common.namespace" . }}-docker-registry-key"