blob: 5e3dc98f844b4d56c0a20e9c890f864245242be3 [file] [log] [blame]
Jakub Latusekc586acb2020-10-21 13:36:29 +02001{{/*
BorislavG5f3b6192018-03-25 18:12:38 +03002# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00003# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03004#
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.
Jakub Latusekc586acb2020-10-21 13:36:29 +020016*/}}
BorislavG5f3b6192018-03-25 18:12:38 +030017
Sylvain Desbureaux9a994242020-11-21 22:25:10 +010018apiVersion: apps/v1
BorislavG5f3b6192018-03-25 18:12:38 +030019kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030027 heritage: {{ .Release.Service }}
28spec:
Grzegorz-Lis7c712862020-11-26 10:05:39 +000029 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030032 replicas: {{ .Values.replicaCount }}
33 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030038 spec:
39 initContainers:
40 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020041 - /app/ready.py
BorislavG5f3b6192018-03-25 18:12:38 +030042 args:
43 - --container-name
44 - log-elasticsearch
45 env:
46 - name: NAMESPACE
47 valueFrom:
48 fieldRef:
49 apiVersion: v1
50 fieldPath: metadata.namespace
Sylvain Desbureaux9a994242020-11-21 22:25:10 +010051 image: {{ include "repositoryGenerator.image.readiness" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 name: {{ include "common.name" . }}-readiness
Artem Naluzhnyye02c2232019-05-31 11:18:30 +000054 - 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
Sylvain Desbureaux9a994242020-11-21 22:25:10 +010063 image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.elasticdumpImage }}
Artem Naluzhnyye02c2232019-05-31 11:18:30 +000064 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
BorislavG5f3b6192018-03-25 18:12:38 +030070 containers:
71 - name: {{ include "common.name" . }}
Sylvain Desbureaux9a994242020-11-21 22:25:10 +010072 image: {{ include "repositoryGenerator.elasticRepository" . }}/{{ .Values.image }}
BorislavG5f3b6192018-03-25 18:12:38 +030073 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhavjayas659fbae2018-09-19 08:58:10 +000074 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000075{{ include "common.resources" . | indent 12 }}
BorislavG5f3b6192018-03-25 18:12:38 +030076 ports:
77 - containerPort: {{ .Values.service.internalPort }}
78 name: {{ .Values.service.name }}
79 readinessProbe:
root457c65a2018-04-04 14:51:59 +000080 httpGet:
81 path: "/"
BorislavG5f3b6192018-03-25 18:12:38 +030082 port: {{ .Values.service.internalPort }}
83 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
84 periodSeconds: {{ .Values.readiness.periodSeconds }}
root457c65a2018-04-04 14:51:59 +000085 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
BorislavG5f3b6192018-03-25 18:12:38 +030086# disable liveness probe when breakpoints set in debugger
87 # so K8s doesn't restart unresponsive container
88 {{- if eq .Values.liveness.enabled true }}
89 livenessProbe:
root457c65a2018-04-04 14:51:59 +000090 httpGet:
91 path: "/"
BorislavG5f3b6192018-03-25 18:12:38 +030092 port: {{ .Values.service.internalPort }}
93 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
94 periodSeconds: {{ .Values.liveness.periodSeconds }}
root457c65a2018-04-04 14:51:59 +000095 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
BorislavG5f3b6192018-03-25 18:12:38 +030096 {{ end -}}
97 env:
98 volumeMounts:
99 - mountPath: /etc/localtime
100 name: localtime
101 readOnly: true
root457c65a2018-04-04 14:51:59 +0000102 - mountPath: /usr/share/kibana/config/
BorislavG5f3b6192018-03-25 18:12:38 +0300103 name: {{ include "common.fullname" . }}
BorislavG5f3b6192018-03-25 18:12:38 +0300104 volumes:
105 - name: localtime
106 hostPath:
107 path: /etc/localtime
108 - name: {{ include "common.fullname" . }}
109 configMap:
110 name: {{ include "common.fullname" . }}
111 items:
112 - key: kibana.yml
113 path: kibana.yml
Artem Naluzhnyye02c2232019-05-31 11:18:30 +0000114 - key: kibana-onboarding.json
115 path: kibana-onboarding.json
BorislavG5f3b6192018-03-25 18:12:38 +0300116 imagePullSecrets:
117 - name: "{{ include "common.namespace" . }}-docker-registry-key"