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