blob: fcbe643dc7987b89b8fb93c8155a54281e61ec3f [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 - /bin/sh
37 - -c
38 - |
39 sysctl -w vm.max_map_count=262144
40 mkdir -p /logroot/elasticsearch/logs
41 mkdir -p /logroot/elasticsearch/data
42 chmod -R 777 /logroot/elasticsearch
43 chown -R root:root /logroot
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 securityContext:
51 privileged: true
52 image: {{ .Values.global.busyboxRepository | default .Values.busyboxRepository }}/{{ .Values.busyboxImage }}
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: init-sysctl
55 volumeMounts:
56 - name: {{ include "common.fullname" . }}-logs
57 mountPath: /logroot/
58 containers:
59 - name: {{ include "common.name" . }}
60 image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.image }}"
61 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhavjayas659fbae2018-09-19 08:58:10 +000062 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000063{{ include "common.resources" . | indent 12 }}
BorislavG5f3b6192018-03-25 18:12:38 +030064 ports:
65 - containerPort: {{ .Values.service.internalPort }}
66 name: {{ .Values.service.name }}
BorislavG2cf26842018-04-08 17:50:07 +030067 - containerPort: {{ .Values.service.internalPort2 }}
68 name: {{ .Values.service.name2 }}
BorislavG5f3b6192018-03-25 18:12:38 +030069# disable liveness probe when breakpoints set in debugger
70 # so K8s doesn't restart unresponsive container
71 {{- if eq .Values.liveness.enabled true }}
72 livenessProbe:
73 tcpSocket:
74 port: {{ .Values.service.internalPort }}
75 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
76 periodSeconds: {{ .Values.liveness.periodSeconds }}
77 {{ end -}}
78 readinessProbe:
79 tcpSocket:
BorislavG2cf26842018-04-08 17:50:07 +030080 port: {{ .Values.service.internalPort2 }}
BorislavG5f3b6192018-03-25 18:12:38 +030081 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
82 periodSeconds: {{ .Values.readiness.periodSeconds }}
83 env:
84 volumeMounts:
85 - mountPath: /etc/localtime
86 name: localtime
87 readOnly: true
88 - mountPath: /usr/share/elasticsearch/config/elasticsearch.yml
89 name: {{ include "common.fullname" . }}-config
90 subPath: elasticsearch.yml
91 - mountPath: /usr/share/elasticsearch/data/
92 name: {{ include "common.fullname" . }}-data
BorislavG5f3b6192018-03-25 18:12:38 +030093 volumes:
94 - name: localtime
95 hostPath:
96 path: /etc/localtime
97 - name: {{ include "common.fullname" . }}-config
98 configMap:
99 name: {{ include "common.fullname" . }}-configmap
100 items:
101 - key: elasticsearch.yml
102 path: elasticsearch.yml
103 - name: {{ include "common.fullname" . }}-data
104 persistentVolumeClaim:
105 claimName: {{ include "common.fullname" . }}
106 - name: {{ include "common.fullname" . }}-logs
107 hostPath:
BorislavG56857c42018-05-03 14:29:51 +0000108 path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPathLogs }}
BorislavG5f3b6192018-03-25 18:12:38 +0300109 imagePullSecrets:
110 - name: "{{ include "common.namespace" . }}-docker-registry-key"