33e82ea5dc1968940eb7e3d3ef3327539368c056
[oom.git] / kubernetes / pomba / charts / pomba-contextaggregator / 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         - message-router
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       containers:
49         - name: {{ include "common.name" . }}
50           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           ports:
53           - containerPort: {{ .Values.service.internalPort }}
54           {{- if .Values.liveness.enabled }}
55           # disable liveness probe when breakpoints set in debugger
56           # so K8s doesn't restart unresponsive container
57           livenessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort }}
60             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.liveness.periodSeconds }}
62           {{- end }}
63           {{- if .Values.readiness.enabled }}
64           readinessProbe:
65             tcpSocket:
66               port: {{ .Values.service.internalPort }}
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           - mountPath: /opt/app/config/application.properties
75             name: {{ include "common.fullname" . }}-config
76             subPath: application.properties
77             readOnly: true
78           - mountPath: /opt/app/config/builders
79             name: {{ include "common.fullname" . }}-config-builders
80             readOnly: true
81           - mountPath: /opt/app/bin/pre_start.sh
82             name: {{ include "common.fullname" . }}-pre-start
83             subPath: pre_start.sh
84             readOnly: false
85           - name: {{ include "common.fullname" . }}-logs
86             mountPath: /opt/app/logs
87             readOnly: false
88           - mountPath: /opt/app/config/logback.xml
89             name: {{ include "common.fullname" . }}-log-conf
90             subPath: logback.xml
91           - name: {{ include "common.fullname" . }}-logs-eelf
92             mountPath: /opt/app/logs/EELF
93             readOnly: false
94
95           resources:
96 {{ include "common.resources" . | indent 12 }}
97         {{- if .Values.nodeSelector }}
98         nodeSelector:
99 {{- toYaml .Values.nodeSelector | indent 10 }}
100         {{- end -}}
101         {{- if .Values.affinity }}
102         affinity:
103 {{- toYaml .Values.affinity | indent 10 }}
104         {{- end }}
105       volumes:
106         - name: localtime
107           hostPath:
108             path: /etc/localtime
109         - name: {{ include "common.fullname" . }}-config
110           configMap:
111             name: {{ include "common.fullname" . }}-configmap
112         - name: {{ include "common.fullname" . }}-config-builders
113           configMap:
114             name: {{ include "common.fullname" . }}-configmap-builders
115         - name: {{ include "common.fullname" . }}-pre-start
116           configMap:
117             name: {{ include "common.fullname" . }}-pre-start-configmap
118             defaultMode: 0777
119         - name:  {{ include "common.fullname" . }}-logs
120           emptyDir: {}
121         - name: {{ include "common.fullname" . }}-log-conf
122           configMap:
123             name: {{ include "common.fullname" . }}-log
124         - name:  {{ include "common.fullname" . }}-logs-eelf
125           emptyDir: {}
126       imagePullSecrets:
127       - name: "{{ include "common.namespace" . }}-docker-registry-key"