Remove pre-start curl script
[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           - name: {{ include "common.fullname" . }}-logs
82             mountPath: /opt/app/logs
83             readOnly: false
84           - mountPath: /opt/app/config/logback.xml
85             name: {{ include "common.fullname" . }}-log-conf
86             subPath: logback.xml
87           - name: {{ include "common.fullname" . }}-logs-eelf
88             mountPath: /opt/app/logs/EELF
89             readOnly: false
90
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
102         # Filebeat sidecar container
103         - name: {{ include "common.name" . }}-filebeat-onap
104           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
105           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
106           volumeMounts:
107           - name: {{ include "common.fullname" . }}-filebeat-conf
108             mountPath: /usr/share/filebeat/filebeat.yml
109             subPath: filebeat.yml
110           - name: {{ include "common.fullname" . }}-data-filebeat
111             mountPath: /usr/share/filebeat/data
112           - name: {{ include "common.fullname" . }}-logs
113             mountPath: /opt/app/logs
114
115       volumes:
116         - name: localtime
117           hostPath:
118             path: /etc/localtime
119         - name: {{ include "common.fullname" . }}-config
120           configMap:
121             name: {{ include "common.fullname" . }}-configmap
122         - name: {{ include "common.fullname" . }}-config-builders
123           configMap:
124             name: {{ include "common.fullname" . }}-configmap-builders
125         - name: {{ include "common.fullname" . }}-filebeat-conf
126           configMap:
127             name: {{ .Release.Name }}-pomba-filebeat-configmap
128         - name: {{ include "common.fullname" . }}-data-filebeat
129           emptyDir: {}
130         - name:  {{ include "common.fullname" . }}-logs
131           emptyDir: {}
132         - name: {{ include "common.fullname" . }}-log-conf
133           configMap:
134             name: {{ include "common.fullname" . }}-log
135         - name:  {{ include "common.fullname" . }}-logs-eelf
136           emptyDir: {}
137       imagePullSecrets:
138       - name: "{{ include "common.namespace" . }}-docker-registry-key"