Updating charts to use common resource template
[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           - name: {{ include "common.name" . }}-config
75             mountPath: /opt/app/config/conf
76             subPath: buscontroller.env
77
78 # NOTE: the basename of the subdirectory is important - it matches the DBCL API URI
79           - name: {{ include "common.name" . }}-dmaap
80             mountPath: /opt/app/config/dmaap/
81           - name: {{ include "common.name" . }}-dcaelocations
82             mountPath: /opt/app/config/dcaeLocations/
83           - name: {{ include "common.name" . }}-mrclusters
84             mountPath: /opt/app/config/mr_clusters/
85           - name: {{ include "common.name" . }}-topics
86             mountPath: /opt/app/config/topics/
87           - name: {{ include "common.name" . }}-feeds
88             mountPath: /opt/app/config/feeds/
89           resources:
90 {{ include "common.resources" . | indent 12 }}
91         {{- if .Values.nodeSelector }}
92         nodeSelector:
93 {{ toYaml .Values.nodeSelector | indent 10 }}
94         {{- end -}}
95         {{- if .Values.affinity }}
96         affinity:
97 {{ toYaml .Values.affinity | indent 10 }}
98         {{- end }}
99       volumes:
100         - name: localtime
101           hostPath:
102             path: /etc/localtime
103         - name: {{ include "common.name" . }}-config
104           configMap:
105             name: {{ include "common.fullname" . }}-config
106         - name: {{ include "common.name" . }}-dmaap
107           configMap:
108             name: {{ include "common.fullname" . }}-dmaap
109         - name: {{ include "common.name" . }}-dcaelocations
110           configMap:
111             name: {{ include "common.fullname" . }}-dcaelocations
112         - name: {{ include "common.name" . }}-mrclusters
113           configMap:
114             name: {{ include "common.fullname" . }}-mrclusters
115         - name: {{ include "common.name" . }}-topics
116           configMap:
117             name: {{ include "common.fullname" . }}-topics
118         - name: {{ include "common.name" . }}-feeds
119           configMap:
120             name: {{ include "common.fullname" . }}-feeds
121       imagePullSecrets:
122       - name: "{{ include "common.namespace" . }}-docker-registry-key"