Corrections and additions
[oom.git] / kubernetes / dmaap / charts / dmaap-bus-controller / templates / deployment.yaml
1 # Copyright © 2018  AT&T Intellectual Property.  All rights reserved.
2 # Modifications Copyright © 2018 Amdocs,Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       initContainers:
35       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - {{ .Values.postgres.nameOverride }}
40         env:
41         - name: NAMESPACE
42           valueFrom:
43             fieldRef:
44               apiVersion: v1
45               fieldPath: metadata.namespace
46         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
47         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48         name: {{ include "common.name" . }}-readiness
49       containers:
50         - name: {{ include "common.name" . }}
51           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53           ports:
54           - containerPort: {{ .Values.service.internalPort }}
55           - containerPort: {{ .Values.service.internalPort2 }}
56           {{if eq .Values.liveness.enabled true }}
57           livenessProbe:
58             httpGet:
59               port: {{ .Values.service.internalPort }}
60               path: /webapi/info
61             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62             periodSeconds: {{ .Values.liveness.periodSeconds }}
63           readinessProbe:
64             httpGet:
65               port: {{ .Values.service.internalPort }}
66               path: /webapi/info
67             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.readiness.periodSeconds }}
69           {{ end -}}
70           volumeMounts:
71           - mountPath: /etc/localtime
72             name: localtime
73             readOnly: true
74
75 # NOTE: on the following several configMaps, careful to include / at end
76 #       since there may be more than one file in each mountPath
77           - name: {{ include "common.name" . }}-config
78             mountPath: /opt/app/config/conf/
79
80 # NOTE: the basename of the subdirectory is important - it matches the DBCL API URI
81           - name: {{ include "common.name" . }}-dmaap
82             mountPath: /opt/app/config/dmaap/
83           - name: {{ include "common.name" . }}-dcaelocations
84             mountPath: /opt/app/config/dcaeLocations/
85           - name: {{ include "common.name" . }}-mrclusters
86             mountPath: /opt/app/config/mr_clusters/
87           - name: {{ include "common.name" . }}-topics
88             mountPath: /opt/app/config/topics/
89           - name: {{ include "common.name" . }}-feeds
90             mountPath: /opt/app/config/feeds/
91           resources:
92 {{ include "common.resources" . | indent 12 }}
93         {{- if .Values.nodeSelector }}
94         nodeSelector:
95 {{ toYaml .Values.nodeSelector | indent 10 }}
96         {{- end -}}
97         {{- if .Values.affinity }}
98         affinity:
99 {{ toYaml .Values.affinity | indent 10 }}
100         {{- end }}
101       volumes:
102         - name: localtime
103           hostPath:
104             path: /etc/localtime
105         - name: {{ include "common.name" . }}-config
106           configMap:
107             name: {{ include "common.fullname" . }}-config
108         - name: {{ include "common.name" . }}-dmaap
109           configMap:
110             name: {{ include "common.fullname" . }}-dmaap
111         - name: {{ include "common.name" . }}-dcaelocations
112           configMap:
113             name: {{ include "common.fullname" . }}-dcaelocations
114         - name: {{ include "common.name" . }}-mrclusters
115           configMap:
116             name: {{ include "common.fullname" . }}-mrclusters
117         - name: {{ include "common.name" . }}-topics
118           configMap:
119             name: {{ include "common.fullname" . }}-topics
120         - name: {{ include "common.name" . }}-feeds
121           configMap:
122             name: {{ include "common.fullname" . }}-feeds
123       imagePullSecrets:
124       - name: "{{ include "common.namespace" . }}-docker-registry-key"