License addition in all yamls
[oom.git] / kubernetes / sdc / templates / sdc-cs.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.disableSdcSdcCs }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   labels:
20     app: sdc-cs
21   name: sdc-cs
22   namespace: "{{ .Values.nsPrefix }}"
23 spec:
24   selector:
25     matchLabels:
26       app: sdc-cs
27   template:
28     metadata:
29       labels:
30         app: sdc-cs
31       name: sdc-cs
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - sdc-es
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: {{ .Values.image.readiness }}
46         imagePullPolicy: {{ .Values.pullPolicy }}
47         name: sdc-cs-readiness
48       containers:
49       - env:
50         - name: ENVNAME
51           value: AUTO
52         - name: HOST_IP
53           valueFrom:
54             fieldRef:
55               fieldPath: status.podIP
56         - name: ES_HEAP_SIZE
57           value: "1024M"
58         image: {{ .Values.image.sdcCassandra }}
59         imagePullPolicy: {{ .Values.pullPolicy }}
60         name: sdc-cs
61         volumeMounts:
62         - mountPath: /var/lib/cassandra/
63           name: sdc-sdc-cs-cs
64         - mountPath: /root/chef-solo/environments/
65           name: sdc-environments
66         - mountPath: /etc/localtime
67           name: sdc-localtime
68           readOnly: true
69         - mountPath: /var/lib/jetty/logs
70           name: sdc-logs
71         ports:
72         - containerPort: 9042
73         - containerPort: 9160
74         readinessProbe:
75           tcpSocket:
76             port: 9160
77           initialDelaySeconds: 5
78           periodSeconds: 10
79       volumes:
80         - name: sdc-sdc-cs-cs
81           persistentVolumeClaim:
82             claimName: sdc-cs-db
83         - name: sdc-environments
84           configMap:
85             name : sdc-environments-configmap
86             defaultMode: 0755
87         - name: sdc-localtime
88           hostPath:
89             path:  /etc/localtime
90         - name:  sdc-logs
91           hostPath:
92             path:  {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/sdc/logs
93       imagePullSecrets:
94       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
95 #{{ end }}