Merge "Script_version addiition in robot config"
[oom.git] / kubernetes / log / templates / kibana-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 #{{ if not .Values.disableLogKibana }}
16 apiVersion: extensions/v1beta1 
17 kind: Deployment
18 metadata:
19   labels:
20     app: kibana
21   name: log-kibana
22   namespace: {{ .Values.nsPrefix }}
23 spec:
24   replicas: {{ .Values.kibanaReplicas }}
25   selector:
26     matchLabels:
27       app: kibana
28   template:
29     metadata:
30       labels:
31         app: kibana
32       name: log-kibana
33     spec:
34       initContainers:
35       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - elasticsearch
40         env:
41         - name: NAMESPACE
42           valueFrom:
43             fieldRef:
44               apiVersion: v1
45               fieldPath: metadata.namespace
46         image: {{ .Values.image.readiness }}
47         imagePullPolicy: {{ .Values.pullPolicy }}
48         name: kibana-readiness
49       containers:
50       - name: kibana
51         image: {{ .Values.image.kibana }}
52         ports:
53         - containerPort: 5601
54           name: http
55           protocol: TCP
56         readinessProbe:
57           tcpSocket:
58             port: 5601
59         volumeMounts:
60          - name: kibana-conf
61            mountPath: /usr/share/kibana/config/      
62       volumes:
63         - name: kibana-conf
64           configMap:
65             name: log-kibana-configmap
66             items:
67             - key: kibana.yml
68               path: kibana.yml
69 ---
70 apiVersion: v1
71 kind: ConfigMap
72 metadata:
73   name: log-kibana-configmap
74   namespace: {{ .Values.nsPrefix }}
75 data:
76 {{ tpl (.Files.Glob "resources/kibana/conf/kibana.yml").AsConfig . | indent 2 }}
77 #{{ end }}