blob: 0c3f3dedf784563570c3bb9b981898afdd205888 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
yurynfcef9942017-10-26 17:10:50 +030015#{{ if not .Values.disableSdcSdcEs }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 labels:
20 app: sdc-es
21 name: sdc-es
BorislavG8bfc6cf2018-02-27 15:04:26 +000022 namespace: "{{ .Values.nsPrefix }}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040023spec:
24 selector:
25 matchLabels:
26 app: sdc-es
27 template:
28 metadata:
29 labels:
30 app: sdc-es
31 name: sdc-es
32 spec:
Pramodba635b32018-01-17 12:05:14 +000033 initContainers:
34 - name: sdc-logs-init
35 image: {{ .Values.image.ubuntuInit }}
36 imagePullPolicy: {{ .Values.pullPolicy }}
37 command:
38 - /bin/bash
39 - "-c"
40 - |
41 mkdir -p /ubuntu-init/ASDC/ASDC-ES/
42 mkdir -p /ubuntu-init/ASDC/ASDC-CS/
43 mkdir -p /ubuntu-init/ASDC/ASDC-KB/
44 mkdir -p /ubuntu-init/ASDC/ASDC-BE/
45 mkdir -p /ubuntu-init/ASDC/ASDC-FE/
46 chmod -R 777 /ubuntu-init/
Mandeep Khindad6ea9872017-06-24 11:49:37 -040047 containers:
kerenj80102842017-08-24 13:54:21 +000048 - image: {{ .Values.image.sdcElasticsearch }}
49 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040050 name: sdc-es
51 env:
52 - name: ENVNAME
53 value: "AUTO"
54 - name: HOST_IP
55 valueFrom:
56 fieldRef:
57 fieldPath: status.podIP
58 - name: ES_HEAP_SIZE
59 value: "1024M"
60 volumeMounts:
Pramodba635b32018-01-17 12:05:14 +000061 - name: sdc-logs
62 mountPath: /ubuntu-init/
Mandeep Khindad6ea9872017-06-24 11:49:37 -040063 - mountPath: /root/chef-solo/environments/
64 name: sdc-environments
65 - mountPath: /etc/localtime
66 name: sdc-localtime
yuryn8b3bc5a2017-09-13 19:21:03 +030067 readOnly: true
Mandeep Khindad6ea9872017-06-24 11:49:37 -040068 - mountPath: /var/lib/jetty/logs
69 name: sdc-logs
70 ports:
71 - containerPort: 9200
72 - containerPort: 9300
73 readinessProbe:
74 tcpSocket:
75 port: 9200
76 initialDelaySeconds: 5
77 periodSeconds: 10
78 volumes:
Mandeep Khindad6ea9872017-06-24 11:49:37 -040079 - name: sdc-environments
Pramodba635b32018-01-17 12:05:14 +000080 configMap :
81 name : sdc-environments-configmap
82 defaultMode: 0755
Mandeep Khindad6ea9872017-06-24 11:49:37 -040083 - name: sdc-localtime
84 hostPath:
85 path: /etc/localtime
86 - name: sdc-logs
87 hostPath:
kerenj390aec92018-02-25 13:57:36 +000088 path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/sdc/logs
Borislav Glozman5197e2e2017-07-24 10:45:28 +030089 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000090 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
Munir Ahmad9d932012017-12-14 10:57:48 -050091#{{ end }}