[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / log / charts / log-elasticsearch / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
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
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
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: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
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 }}
62           resources:
63 {{ include "common.resources" . | indent 12 }}
64           ports:
65           - containerPort: {{ .Values.service.internalPort }}
66             name: {{ .Values.service.name }}
67           - containerPort: {{ .Values.service.internalPort2 }}
68             name: {{ .Values.service.name2 }}
69 # 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:
80               port: {{ .Values.service.internalPort2 }}
81             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
93       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:
108             path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPathLogs }}
109       imagePullSecrets:
110       - name: "{{ include "common.namespace" . }}-docker-registry-key"