blob: bf78eef2eb1901454911b7e7a4135ef2f288de02 [file] [log] [blame]
ac25508ac97172018-04-18 14:23:17 +02001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
ac25508ac97172018-04-18 14:23:17 +02003#
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.
ac25508ac97172018-04-18 14:23:17 +020015
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020016apiVersion: apps/v1
ac25508ac97172018-04-18 14:23:17 +020017kind: 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" . }}
ac25508ac97172018-04-18 14:23:17 +020025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
ac25508ac97172018-04-18 14:23:17 +020031 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
ac25508ac97172018-04-18 14:23:17 +020036 spec:
37 initContainers:
38 - command:
39 - /root/ready.py
40 args:
41 - --container-name
42 - clamp-dash-es
43 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
49 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 name: {{ include "common.name" . }}-readiness
ac25508ac97172018-04-18 14:23:17 +020052 containers:
53 - name: {{ include "common.name" . }}
Julien Barboted56cca2018-10-22 17:53:07 +020054 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
ac25508ac97172018-04-18 14:23:17 +020055 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 ports:
57 - containerPort: {{ .Values.service.internalPort }}
58 name: {{ include "common.servicename" . }}
59 readinessProbe:
60 tcpSocket:
61 port: {{ .Values.service.internalPort }}
62 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
63 periodSeconds: {{ .Values.readiness.periodSeconds }}
64# disable liveness probe when breakpoints set in debugger
65 # so K8s doesn't restart unresponsive container
66 {{- if eq .Values.liveness.enabled true }}
67 livenessProbe:
68 tcpSocket:
69 port: {{ .Values.service.internalPort }}
70 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
71 periodSeconds: {{ .Values.liveness.periodSeconds }}
72 {{ end -}}
73 env:
osgn422wb561a592020-02-11 15:50:21 +010074 - name: elasticsearch_base_url
75 value: "{{ternary "https" "http" .Values.security.ssl.enabled}}://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}.svc.cluster.local:{{.Values.config.elasticsearchPort}}"
ac25508ac97172018-04-18 14:23:17 +020076 volumeMounts:
77 - mountPath: /etc/localtime
78 name: localtime
79 readOnly: true
80 - mountPath: /usr/share/kibana/config/kibana.yml
81 name: {{ include "common.fullname" . }}
82 subPath: kibana.yml
83 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000084{{ include "common.resources" . | indent 12 }}
ac25508ac97172018-04-18 14:23:17 +020085 {{- if .Values.nodeSelector }}
86 nodeSelector:
87{{ toYaml .Values.nodeSelector | indent 10 }}
88 {{- end -}}
89 {{- if .Values.affinity }}
90 affinity:
91{{ toYaml .Values.affinity | indent 10 }}
92 {{- end }}
93 volumes:
94 - name: localtime
95 hostPath:
96 path: /etc/localtime
97 - name: {{ include "common.fullname" . }}
98 configMap:
99 name: {{ include "common.fullname" . }}
100 items:
101 - key: kibana.yml
102 path: kibana.yml
ac25508ac97172018-04-18 14:23:17 +0200103 imagePullSecrets:
104 - name: "{{ include "common.namespace" . }}-docker-registry-key"