Unable to boot SNDC pod without AAF
[oom.git] / kubernetes / clamp / charts / clamp-dash-es / 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 /usr/share/elasticsearch/logs
41           mkdir -p /usr/share/elasticsearch/data
42           chmod -R 777 /usr/share/elasticsearch
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         securityContext:
50           privileged: true
51         image: {{ .Values.global.busyboxRepository | default .Values.busyboxRepository }}/{{ .Values.busyboxImage }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: init-sysctl
54         volumeMounts:
55         - name: {{ include "common.fullname" . }}-logs
56           mountPath: /usr/share/elasticsearch/logs/
57         - name: {{ include "common.fullname" . }}-data
58           mountPath: /usr/share/elasticsearch/data/
59       containers:
60         - name: {{ include "common.name" . }}
61           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
62           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
63           ports:
64           - containerPort: {{ .Values.service.internalPort }}
65             name: {{ include "common.servicename" . }}
66           - containerPort: {{ .Values.service.internalPort2 }}
67             name: {{ include "common.servicename" . }}2
68 # disable liveness probe when breakpoints set in debugger
69           # so K8s doesn't restart unresponsive container
70           {{- if eq .Values.liveness.enabled true }}
71           livenessProbe:
72             tcpSocket:
73               port: {{ .Values.service.internalPort }}
74             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
75             periodSeconds: {{ .Values.liveness.periodSeconds }}
76             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
77           {{ end -}}
78           readinessProbe:
79             tcpSocket:
80               port: {{ .Values.service.internalPort2 }}
81             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
82             periodSeconds: {{ .Values.readiness.periodSeconds }}
83             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
84           env:
85           volumeMounts:
86           - mountPath: /etc/localtime
87             name: localtime
88             readOnly: true
89           - mountPath: /usr/share/elasticsearch/config/elasticsearch.yml
90             name: {{ include "common.fullname" . }}-config
91             subPath: elasticsearch.yml
92           - mountPath: /usr/share/elasticsearch/data/
93             name: {{ include "common.fullname" . }}-data
94           resources:
95 {{ include "common.resources" . | indent 12 }}
96         {{- if .Values.nodeSelector }}
97         nodeSelector:
98 {{ toYaml .Values.nodeSelector | indent 10 }}
99         {{- end -}}
100         {{- if .Values.affinity }}
101         affinity:
102 {{ toYaml .Values.affinity | indent 10 }}
103         {{- end }}
104       volumes:
105         - name: localtime
106           hostPath:
107             path: /etc/localtime
108         - name: {{ include "common.fullname" . }}-config
109           configMap:
110             name: {{ include "common.fullname" . }}-configmap
111             items:
112             - key: elasticsearch.yml
113               path: elasticsearch.yml
114         - name: {{ include "common.fullname" . }}-data
115           persistentVolumeClaim:
116             claimName: {{ include "common.fullname" . }}
117         - name: {{ include "common.fullname" . }}-logs
118           hostPath:
119             path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPathLogs }}
120       imagePullSecrets:
121       - name: "{{ include "common.namespace" . }}-docker-registry-key"