Upgrade APPC to use common mariadb galera charts
[oom.git] / kubernetes / clamp / charts / clamp-dash-es / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15 # Modifications copyright (c) 2018 AT&T Intellectual Property
16
17 apiVersion: extensions/v1beta1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ .Release.Name }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: {{ .Values.replicaCount }}
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ .Release.Name }}
34     spec:
35       initContainers:
36       - command:
37         - /bin/sh
38         - -c
39         - |
40           sysctl -w vm.max_map_count=262144
41           mkdir -p /usr/share/elasticsearch/logs
42           mkdir -p /usr/share/elasticsearch/data
43           chmod -R 777 /usr/share/elasticsearch
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: /usr/share/elasticsearch/logs/
58         - name: {{ include "common.fullname" . }}-data
59           mountPath: /usr/share/elasticsearch/data/
60       containers:
61         - name: {{ include "common.name" . }}
62           image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.image }}"
63           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64           ports:
65           - containerPort: {{ .Values.service.internalPort }}
66             name: {{ include "common.servicename" . }}
67           - containerPort: {{ .Values.service.internalPort2 }}
68             name: {{ include "common.servicename" . }}2
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           resources:
94 {{ toYaml .Values.resources | indent 12 }}
95         {{- if .Values.nodeSelector }}
96         nodeSelector:
97 {{ toYaml .Values.nodeSelector | indent 10 }}
98         {{- end -}}
99         {{- if .Values.affinity }}
100         affinity:
101 {{ toYaml .Values.affinity | indent 10 }}
102         {{- end }}
103       volumes:
104         - name: localtime
105           hostPath:
106             path: /etc/localtime
107         - name: {{ include "common.fullname" . }}-config
108           configMap:
109             name: {{ include "common.fullname" . }}-configmap
110             items:
111             - key: elasticsearch.yml
112               path: elasticsearch.yml
113         - name: {{ include "common.fullname" . }}-data
114           persistentVolumeClaim:
115             claimName: {{ include "common.fullname" . }}
116         - name: {{ include "common.fullname" . }}-logs
117           hostPath:
118             path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPathLogs }}
119       imagePullSecrets:
120       - name: "{{ include "common.namespace" . }}-docker-registry-key"