cbbe93d63cad62c9c414e8022439b1c0168d9439
[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
106         # Filebeat sidecar container
107         - name: {{ include "common.name" . }}-filebeat-onap
108           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
109           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
110           volumeMounts:
111           - name: {{ include "common.fullname" . }}-filebeat-conf
112             mountPath: /usr/share/filebeat/filebeat.yml
113             subPath: filebeat.yml
114           - name: {{ include "common.fullname" . }}-data-filebeat
115             mountPath: /usr/share/filebeat/data
116           - name: {{ include "common.fullname" . }}-logs
117             mountPath: /opt/app/logs
118
119       volumes:
120         - name: localtime
121           hostPath:
122             path: /etc/localtime
123         - name: {{ include "common.fullname" . }}-config
124           configMap:
125             name: {{ include "common.fullname" . }}-configmap
126         - name: {{ include "common.fullname" . }}-config-builders
127           configMap:
128             name: {{ include "common.fullname" . }}-configmap-builders
129         - name: {{ include "common.fullname" . }}-pre-start
130           configMap:
131             name: {{ include "common.fullname" . }}-pre-start-configmap
132             defaultMode: 0777
133         - name: {{ include "common.fullname" . }}-filebeat-conf
134           configMap:
135             name: {{ .Release.Name }}-pomba-filebeat-configmap
136         - name: {{ include "common.fullname" . }}-data-filebeat
137           emptyDir: {}
138         - name:  {{ include "common.fullname" . }}-logs
139           emptyDir: {}
140         - name: {{ include "common.fullname" . }}-log-conf
141           configMap:
142             name: {{ include "common.fullname" . }}-log
143         - name:  {{ include "common.fullname" . }}-logs-eelf
144           emptyDir: {}
145       imagePullSecrets:
146       - name: "{{ include "common.namespace" . }}-docker-registry-key"