Merge "[COMMON] Add monitoring to postgres"
[oom.git] / kubernetes / log / components / log-kibana / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   selector:
30     matchLabels:
31       app: {{ include "common.name" . }}
32   replicas: {{ .Values.replicaCount }}
33   template:
34     metadata:
35       labels:
36         app: {{ include "common.name" . }}
37         release: {{ include "common.release" . }}
38     spec:
39       initContainers:
40       - command:
41         - /app/ready.py
42         args:
43         - --container-name
44         - log-elasticsearch
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: {{ include "repositoryGenerator.image.readiness" . }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54       - args:
55         - --input=/config/kibana-onboarding.json
56         - --output=http://{{.Values.config.elasticsearchServiceName}}.{{ include "common.namespace" . }}:{{.Values.config.elasticsearchPort}}/.kibana
57         env:
58         - name: NAMESPACE
59           valueFrom:
60             fieldRef:
61               apiVersion: v1
62               fieldPath: metadata.namespace
63         image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.elasticdumpImage }}
64         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65         name: {{ include "common.name" . }}-elasticdump
66         volumeMounts:
67           - mountPath: /config/kibana-onboarding.json
68             name: {{ include "common.fullname" . }}
69             subPath: kibana-onboarding.json
70       containers:
71         - name: {{ include "common.name" . }}
72           image: {{ include "repositoryGenerator.elasticRepository" . }}/{{ .Values.image }}
73           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74           resources: {{ include "common.resources" . | nindent 12 }}
75           ports:
76           - containerPort: {{ .Values.service.internalPort }}
77             name: {{ .Values.service.name }}
78           readinessProbe:
79             httpGet:
80               path: "/"
81               port: {{ .Values.service.internalPort }}
82             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
83             periodSeconds: {{ .Values.readiness.periodSeconds }}
84             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
85 # disable liveness probe when breakpoints set in debugger
86           # so K8s doesn't restart unresponsive container
87           {{- if eq .Values.liveness.enabled true }}
88           livenessProbe:
89             httpGet:
90               path: "/"
91               port: {{ .Values.service.internalPort }}
92             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
93             periodSeconds: {{ .Values.liveness.periodSeconds }}
94             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
95           {{ end -}}
96           env:
97           volumeMounts:
98           - mountPath: /etc/localtime
99             name: localtime
100             readOnly: true
101           - mountPath: /usr/share/kibana/config/
102             name: {{ include "common.fullname" . }}
103       volumes:
104         - name: localtime
105           hostPath:
106             path: /etc/localtime
107         - name: {{ include "common.fullname" . }}
108           configMap:
109             name: {{ include "common.fullname" . }}
110             items:
111             - key: kibana.yml
112               path: kibana.yml
113             - key: kibana-onboarding.json
114               path: kibana-onboarding.json
115       imagePullSecrets:
116       - name: "{{ include "common.namespace" . }}-docker-registry-key"