blob: 191f452cfd50eadded9865bc0fbcb252273e4c99 [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 "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
33 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
49 containers:
50 - name: {{ include "common.name" . }}
51 image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.image }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 ports:
54 - containerPort: {{ .Values.service.internalPort }}
55 name: {{ .Values.service.name }}
56 readinessProbe:
root457c65a2018-04-04 14:51:59 +000057 httpGet:
58 path: "/"
BorislavG5f3b6192018-03-25 18:12:38 +030059 port: {{ .Values.service.internalPort }}
60 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
61 periodSeconds: {{ .Values.readiness.periodSeconds }}
root457c65a2018-04-04 14:51:59 +000062 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
BorislavG5f3b6192018-03-25 18:12:38 +030063# disable liveness probe when breakpoints set in debugger
64 # so K8s doesn't restart unresponsive container
65 {{- if eq .Values.liveness.enabled true }}
66 livenessProbe:
root457c65a2018-04-04 14:51:59 +000067 httpGet:
68 path: "/"
BorislavG5f3b6192018-03-25 18:12:38 +030069 port: {{ .Values.service.internalPort }}
70 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
71 periodSeconds: {{ .Values.liveness.periodSeconds }}
root457c65a2018-04-04 14:51:59 +000072 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
BorislavG5f3b6192018-03-25 18:12:38 +030073 {{ end -}}
74 env:
75 volumeMounts:
76 - mountPath: /etc/localtime
77 name: localtime
78 readOnly: true
root457c65a2018-04-04 14:51:59 +000079 - mountPath: /usr/share/kibana/config/
BorislavG5f3b6192018-03-25 18:12:38 +030080 name: {{ include "common.fullname" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030081 resources:
82{{ toYaml .Values.resources | indent 12 }}
83 {{- if .Values.nodeSelector }}
84 nodeSelector:
85{{ toYaml .Values.nodeSelector | indent 10 }}
86 {{- end -}}
87 {{- if .Values.affinity }}
88 affinity:
89{{ toYaml .Values.affinity | indent 10 }}
90 {{- end }}
91 volumes:
92 - name: localtime
93 hostPath:
94 path: /etc/localtime
95 - name: {{ include "common.fullname" . }}
96 configMap:
97 name: {{ include "common.fullname" . }}
98 items:
99 - key: kibana.yml
100 path: kibana.yml
101 imagePullSecrets:
102 - name: "{{ include "common.namespace" . }}-docker-registry-key"