[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / msb / charts / msb-discovery / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, Bell Canada , ZTE
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 apiVersion: apps/v1
15 kind: Deployment
16 metadata:
17   name: {{ include "common.fullname" . }}
18   namespace: {{ include "common.namespace" . }}
19   labels:
20     app: {{ include "common.name" . }}
21     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
22     release: {{ include "common.release" . }}
23     heritage: {{ .Release.Service }}
24 spec:
25   selector:
26     matchLabels:
27       app: {{ include "common.name" . }}
28   replicas: {{ .Values.replicaCount }}
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ include "common.release" . }}
34       annotations:
35         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
36     spec:
37       serviceAccountName: msb
38       initContainers:
39       - command:
40         - /app/ready.py
41         args:
42         - --container-name
43         - msb-consul
44         env:
45         - name: NAMESPACE
46           valueFrom:
47             fieldRef:
48               apiVersion: v1
49               fieldPath: metadata.namespace
50         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         name: {{ include "common.name" . }}-readiness
53       containers:
54         - name: {{ include "common.name" . }}
55           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
56           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57           ports:
58           - containerPort: {{ .Values.service.internalPort }}
59           # disable liveness probe when breakpoints set in debugger
60           # so K8s doesn't restart unresponsive container
61           {{- if eq .Values.liveness.enabled true }}
62           livenessProbe:
63             tcpSocket:
64               port: {{ .Values.service.internalPort }}
65             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
66             periodSeconds: {{ .Values.liveness.periodSeconds }}
67           {{ end -}}
68           readinessProbe:
69             tcpSocket:
70               port: {{ .Values.service.internalPort }}
71             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
72             periodSeconds: {{ .Values.readiness.periodSeconds }}
73           env:
74           - name: CONSUL_IP
75             value: msb-consul.{{ include "common.namespace" . }}
76           volumeMounts:
77           - mountPath: /etc/localtime
78             name: localtime
79             readOnly: true
80           - mountPath: /usr/local/discover-works/logs
81             name: {{ include "common.fullname" . }}-logs
82           resources:
83 {{ include "common.resources" . | indent 12 }}
84         {{- if .Values.nodeSelector }}
85         nodeSelector:
86 {{ toYaml .Values.nodeSelector | indent 10 }}
87         {{- end -}}
88         {{- if .Values.affinity }}
89         affinity:
90 {{ toYaml .Values.affinity | indent 10 }}
91         {{- end }}
92
93         # Filebeat sidecar container
94         - name: {{ include "common.name" . }}-filebeat-onap
95           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
96           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
97           volumeMounts:
98           - name: {{ include "common.fullname" . }}-filebeat-conf
99             mountPath: /usr/share/filebeat/filebeat.yml
100             subPath: filebeat.yml
101           - name: {{ include "common.fullname" . }}-data-filebeat
102             mountPath: /usr/share/filebeat/data
103           - name: {{ include "common.fullname" . }}-logs
104             mountPath: /var/log/onap/msb/msb-discovery
105           - mountPath: /opt/ajsc/etc/config/logback.xml
106             name: {{ include "common.fullname" . }}-log-conf
107             subPath: logback.xml
108       volumes:
109         - name: {{ include "common.fullname" . }}-log-conf
110           configMap:
111             name: {{ include "common.fullname" . }}-log
112         - name: {{ include "common.fullname" . }}-filebeat-conf
113           configMap:
114             name: {{ include "common.release" . }}-msb-filebeat-configmap
115         - name: {{ include "common.fullname" . }}-data-filebeat
116           emptyDir: {}
117         - name:  {{ include "common.fullname" . }}-logs
118           emptyDir: {}
119         - name: localtime
120           hostPath:
121             path: /etc/localtime
122       imagePullSecrets:
123       - name: "{{ include "common.namespace" . }}-docker-registry-key"