[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / log / charts / log-kibana / 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         - /app/ready.py
37         args:
38         - --container-name
39         - log-elasticsearch
40         env:
41         - name: NAMESPACE
42           valueFrom:
43             fieldRef:
44               apiVersion: v1
45               fieldPath: metadata.namespace
46         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
47         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48         name: {{ include "common.name" . }}-readiness
49       - args:
50         - --input=/config/kibana-onboarding.json
51         - --output=http://{{.Values.config.elasticsearchServiceName}}.{{ include "common.namespace" . }}:{{.Values.config.elasticsearchPort}}/.kibana
52         env:
53         - name: NAMESPACE
54           valueFrom:
55             fieldRef:
56               apiVersion: v1
57               fieldPath: metadata.namespace
58         image: "{{ .Values.elasticdumpRepository }}/{{ .Values.elasticdumpImage }}"
59         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60         name: {{ include "common.name" . }}-elasticdump
61         volumeMounts:
62           - mountPath: /config/kibana-onboarding.json
63             name: {{ include "common.fullname" . }}
64             subPath: kibana-onboarding.json
65       containers:
66         - name: {{ include "common.name" . }}
67           image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.image }}"
68           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
69           resources:
70 {{ include "common.resources" . | indent 12 }}
71           ports:
72           - containerPort: {{ .Values.service.internalPort }}
73             name: {{ .Values.service.name }}
74           readinessProbe:
75             httpGet:
76               path: "/"
77               port: {{ .Values.service.internalPort }}
78             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
79             periodSeconds: {{ .Values.readiness.periodSeconds }}
80             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
81 # disable liveness probe when breakpoints set in debugger
82           # so K8s doesn't restart unresponsive container
83           {{- if eq .Values.liveness.enabled true }}
84           livenessProbe:
85             httpGet:
86               path: "/"
87               port: {{ .Values.service.internalPort }}
88             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
89             periodSeconds: {{ .Values.liveness.periodSeconds }}
90             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
91           {{ end -}}
92           env:
93           volumeMounts:
94           - mountPath: /etc/localtime
95             name: localtime
96             readOnly: true
97           - mountPath: /usr/share/kibana/config/
98             name: {{ include "common.fullname" . }}
99       volumes:
100         - name: localtime
101           hostPath:
102             path: /etc/localtime
103         - name: {{ include "common.fullname" . }}
104           configMap:
105             name: {{ include "common.fullname" . }}
106             items:
107             - key: kibana.yml
108               path: kibana.yml
109             - key: kibana-onboarding.json
110               path: kibana-onboarding.json
111       imagePullSecrets:
112       - name: "{{ include "common.namespace" . }}-docker-registry-key"