Add Nokia v2 driver
[oom.git] / kubernetes / sdc / templates / sdc-es.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 #{{ if not .Values.disableSdcSdcEs }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   labels:
20     app: sdc-es
21   name: sdc-es
22   namespace: "{{ .Values.nsPrefix }}"
23 spec:
24   selector:
25     matchLabels:
26       app: sdc-es
27   template:
28     metadata:
29       labels:
30         app: sdc-es
31       name: sdc-es
32     spec:
33       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/
47       containers:
48       - image: {{ .Values.image.sdcElasticsearch }}
49         imagePullPolicy: {{ .Values.pullPolicy }}
50         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:
61         - name: sdc-logs
62           mountPath: /ubuntu-init/
63         - mountPath: /root/chef-solo/environments/
64           name: sdc-environments
65         - mountPath: /etc/localtime
66           name: sdc-localtime
67           readOnly: true
68         - 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:
79         - name: sdc-environments
80           configMap :
81             name : sdc-environments-configmap
82             defaultMode: 0755
83         - name: sdc-localtime
84           hostPath:
85             path:  /etc/localtime
86         - name:  sdc-logs
87           hostPath:
88             path:  {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/sdc/logs
89       imagePullSecrets:
90       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
91 #{{ end }}