Jakub Latusek | c586acb | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 7de56c8 | 2018-09-04 08:03:27 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 4 | # |
| 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 Latusek | c586acb | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 16 | */}} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 17 | |
Sylvain Desbureaux | 9a99424 | 2020-11-21 22:25:10 +0100 | [diff] [blame] | 18 | apiVersion: apps/v1 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 19 | kind: Deployment |
| 20 | metadata: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
Grzegorz-Lis | 7c71286 | 2020-11-26 10:05:39 +0000 | [diff] [blame^] | 29 | selector: |
| 30 | matchLabels: |
| 31 | app: {{ include "common.name" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 32 | replicas: {{ .Values.replicaCount }} |
| 33 | template: |
| 34 | metadata: |
| 35 | labels: |
| 36 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 37 | release: {{ include "common.release" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 38 | spec: |
| 39 | initContainers: |
| 40 | - command: |
| 41 | - /bin/sh |
| 42 | - -c |
| 43 | - | |
| 44 | sysctl -w vm.max_map_count=262144 |
| 45 | mkdir -p /logroot/elasticsearch/logs |
| 46 | mkdir -p /logroot/elasticsearch/data |
| 47 | chmod -R 777 /logroot/elasticsearch |
| 48 | chown -R root:root /logroot |
| 49 | env: |
| 50 | - name: NAMESPACE |
| 51 | valueFrom: |
| 52 | fieldRef: |
| 53 | apiVersion: v1 |
| 54 | fieldPath: metadata.namespace |
| 55 | securityContext: |
| 56 | privileged: true |
Sylvain Desbureaux | 9a99424 | 2020-11-21 22:25:10 +0100 | [diff] [blame] | 57 | image: {{ include "repositoryGenerator.image.busybox" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 58 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 59 | name: init-sysctl |
| 60 | volumeMounts: |
| 61 | - name: {{ include "common.fullname" . }}-logs |
| 62 | mountPath: /logroot/ |
| 63 | containers: |
| 64 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 9a99424 | 2020-11-21 22:25:10 +0100 | [diff] [blame] | 65 | image: {{ include "repositoryGenerator.elasticRepository" . }}/{{ .Values.image }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 66 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 67 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 68 | {{ include "common.resources" . | indent 12 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 69 | ports: |
| 70 | - containerPort: {{ .Values.service.internalPort }} |
| 71 | name: {{ .Values.service.name }} |
BorislavG | 2cf2684 | 2018-04-08 17:50:07 +0300 | [diff] [blame] | 72 | - containerPort: {{ .Values.service.internalPort2 }} |
| 73 | name: {{ .Values.service.name2 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 74 | # disable liveness probe when breakpoints set in debugger |
| 75 | # so K8s doesn't restart unresponsive container |
| 76 | {{- if eq .Values.liveness.enabled true }} |
| 77 | livenessProbe: |
| 78 | tcpSocket: |
| 79 | port: {{ .Values.service.internalPort }} |
| 80 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 81 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 82 | {{ end -}} |
| 83 | readinessProbe: |
| 84 | tcpSocket: |
BorislavG | 2cf2684 | 2018-04-08 17:50:07 +0300 | [diff] [blame] | 85 | port: {{ .Values.service.internalPort2 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 86 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 87 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 88 | env: |
| 89 | volumeMounts: |
| 90 | - mountPath: /etc/localtime |
| 91 | name: localtime |
| 92 | readOnly: true |
| 93 | - mountPath: /usr/share/elasticsearch/config/elasticsearch.yml |
| 94 | name: {{ include "common.fullname" . }}-config |
| 95 | subPath: elasticsearch.yml |
| 96 | - mountPath: /usr/share/elasticsearch/data/ |
| 97 | name: {{ include "common.fullname" . }}-data |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 98 | volumes: |
| 99 | - name: localtime |
| 100 | hostPath: |
| 101 | path: /etc/localtime |
| 102 | - name: {{ include "common.fullname" . }}-config |
| 103 | configMap: |
| 104 | name: {{ include "common.fullname" . }}-configmap |
| 105 | items: |
| 106 | - key: elasticsearch.yml |
| 107 | path: elasticsearch.yml |
| 108 | - name: {{ include "common.fullname" . }}-data |
| 109 | persistentVolumeClaim: |
| 110 | claimName: {{ include "common.fullname" . }} |
| 111 | - name: {{ include "common.fullname" . }}-logs |
| 112 | hostPath: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 113 | path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPathLogs }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 114 | imagePullSecrets: |
| 115 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |