forked from pires/kubernetes-elasticsearch-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kibana.yaml
42 lines (42 loc) · 970 Bytes
/
kibana.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: kibana
namespace: default
labels:
component: kibana
spec:
replicas: 1
selector:
matchLabels:
component: kibana
template:
metadata:
labels:
component: kibana
spec:
containers:
- name: kibana
image: cfontes/kibana-xpack-less:5.5.0
env:
- name: "CLUSTER_NAME"
value: "myesdb"
- name: SERVER_BASEPATH
value: /api/v1/proxy/namespaces/default/services/kibana
- name: XPACK_SECURITY_ENABLED
value: 'false'
- name: XPACK_GRAPH_ENABLED
value: 'false'
- name: XPACK_ML_ENABLED
value: 'false'
- name: XPACK_REPORTING_ENABLED
value: 'false'
resources:
limits:
cpu: 1000m
requests:
cpu: 100m
ports:
- containerPort: 5601
name: kibana
protocol: TCP