blob: 89fc5ce881d0218843c685b0c1d1f0c29acd8970 [file] [log] [blame]
BorislavG5f3b6192018-03-25 18:12:38 +03001# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00002# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03003#
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
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030033 spec:
34 initContainers:
35 - command:
36 - /root/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: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
47 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 name: {{ include "common.name" . }}-readiness
Artem Naluzhnyye02c2232019-05-31 11:18:30 +000049 - 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
BorislavG5f3b6192018-03-25 18:12:38 +030065 containers:
66 - name: {{ include "common.name" . }}
67 image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.image }}"
68 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhavjayas659fbae2018-09-19 08:58:10 +000069 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000070{{ include "common.resources" . | indent 12 }}
BorislavG5f3b6192018-03-25 18:12:38 +030071 ports:
72 - containerPort: {{ .Values.service.internalPort }}
73 name: {{ .Values.service.name }}
74 readinessProbe:
root457c65a2018-04-04 14:51:59 +000075 httpGet:
76 path: "/"
BorislavG5f3b6192018-03-25 18:12:38 +030077 port: {{ .Values.service.internalPort }}
78 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
79 periodSeconds: {{ .Values.readiness.periodSeconds }}
root457c65a2018-04-04 14:51:59 +000080 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
BorislavG5f3b6192018-03-25 18:12:38 +030081# 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:
root457c65a2018-04-04 14:51:59 +000085 httpGet:
86 path: "/"
BorislavG5f3b6192018-03-25 18:12:38 +030087 port: {{ .Values.service.internalPort }}
88 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
89 periodSeconds: {{ .Values.liveness.periodSeconds }}
root457c65a2018-04-04 14:51:59 +000090 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
BorislavG5f3b6192018-03-25 18:12:38 +030091 {{ end -}}
92 env:
93 volumeMounts:
94 - mountPath: /etc/localtime
95 name: localtime
96 readOnly: true
root457c65a2018-04-04 14:51:59 +000097 - mountPath: /usr/share/kibana/config/
BorislavG5f3b6192018-03-25 18:12:38 +030098 name: {{ include "common.fullname" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030099 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
Artem Naluzhnyye02c2232019-05-31 11:18:30 +0000109 - key: kibana-onboarding.json
110 path: kibana-onboarding.json
BorislavG5f3b6192018-03-25 18:12:38 +0300111 imagePullSecrets:
112 - name: "{{ include "common.namespace" . }}-docker-registry-key"