forked from sighupio/module-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkibana.yml
More file actions
42 lines (42 loc) · 764 Bytes
/
Copy pathkibana.yml
File metadata and controls
42 lines (42 loc) · 764 Bytes
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
kind: Service
apiVersion: v1
metadata:
name: kibana
spec:
ports:
- port: 5601
name: http
protocol: TCP
selector:
app: kibana
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: kibana
spec:
replicas: 1
selector:
matchLabels:
app: kibana
template:
metadata:
labels:
app: kibana
spec:
containers:
- name: kibana
image: docker.elastic.co/kibana/kibana:6.4.1
ports:
- containerPort: 5601
name: http
env:
- name: ELASTICSEARCH_URL
value: "http://elasticsearch:9200"
resources:
requests:
cpu: 100m
memory: 500Mi
limits:
cpu: 300m
memory: 800Mi