Bump version of readiness image
[oom.git] / kubernetes / clamp / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33     spec:
34       initContainers:
35       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - clamp-backend
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         # side car containers
51         - name: {{ include "common.name" . }}-filebeat-onap
52           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
53           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54           volumeMounts:
55           - name: {{ include "common.fullname" . }}-filebeat-conf
56             mountPath: /usr/share/filebeat/filebeat.yml
57             subPath: filebeat.yml
58           - name: {{ include "common.fullname" . }}-data-filebeat
59             mountPath: /usr/share/filebeat/data
60           - name: {{ include "common.fullname" . }}-logs
61             mountPath: /var/log/nginx/
62         - name: {{ include "common.name" . }}
63           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
64           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65           ports:
66           - containerPort: {{ .Values.service.internalPort }}
67           # disable liveness probe when breakpoints set in debugger
68           # so K8s doesn't restart unresponsive container
69           {{- if eq .Values.liveness.enabled true }}
70           livenessProbe:
71             tcpSocket:
72               port: {{ .Values.service.internalPort }}
73             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.liveness.periodSeconds }}
75           {{ end -}}
76           readinessProbe:
77             tcpSocket:
78               port: {{ .Values.service.internalPort }}
79             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
80             periodSeconds: {{ .Values.readiness.periodSeconds }}
81           volumeMounts:
82           - name: {{ include "common.fullname" . }}-logs
83             mountPath: /var/log/nginx/
84           - mountPath: /etc/nginx/conf.d/default.conf
85             name: {{ include "common.fullname" . }}-config
86             subPath: default.conf
87           resources:
88 {{ include "common.resources" . | indent 12 }}
89         {{- if .Values.nodeSelector }}
90         nodeSelector:
91 {{ toYaml .Values.nodeSelector | indent 10 }}
92         {{- end -}}
93         {{- if .Values.affinity }}
94         affinity:
95 {{ toYaml .Values.affinity | indent 10 }}
96         {{- end }}
97       volumes:
98         - name: {{ include "common.fullname" . }}-config
99           configMap:
100             name: {{ include "common.fullname" . }}
101             items:
102             - key: default.conf
103               path: default.conf
104         - name: {{ include "common.fullname" . }}-filebeat-conf
105           configMap:
106             name: {{ include "common.release" . }}-clamp-filebeat-configmap
107         - name: {{ include "common.fullname" . }}-data-filebeat
108           emptyDir: {}
109         - name:  {{ include "common.fullname" . }}-logs
110           emptyDir: {}
111       imagePullSecrets:
112       - name: "{{ include "common.namespace" . }}-docker-registry-key"
113