File tree Expand file tree Collapse file tree 2 files changed +29
-4
lines changed Expand file tree Collapse file tree 2 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 7
7
selector :
8
8
app : burrow
9
9
ports :
10
- - protocol : TCP
10
+ - name : web
11
+ protocol : TCP
11
12
port : 80
12
- targetPort : 8000
13
+ - name : api
14
+ protocol : TCP
15
+ port : 8000
16
+ - name : prometheus
17
+ protocol : TCP
18
+ port : 8080
Original file line number Diff line number Diff line change @@ -20,21 +20,40 @@ spec:
20
20
- name : burrow
21
21
image : solsson/burrow@sha256:1f17cb48ba4062b2f796fdf250dce6b6a9d5127b42e15ef2fbc79c68c34ad0ef
22
22
ports :
23
- - containerPort : 8000
23
+ - name : api
24
+ containerPort : 8000
25
+ readinessProbe :
26
+ httpGet :
27
+ path : /burrow/admin
28
+ port : 8000
29
+ livenessProbe :
30
+ httpGet :
31
+ path : /burrow/admin
32
+ port : 8000
24
33
volumeMounts :
25
34
- name : config
26
35
mountPath : /etc/burrow
27
36
- name : prom
28
37
image : solsson/burrow-exporter:api-v3@sha256:4407616c5720e8a3397f668eec1aaa31df751b3614c0adfc56cae231f2eaeee2
29
38
ports :
30
- - containerPort : 8080
39
+ - name : prometheus
40
+ containerPort : 8080
31
41
env :
32
42
- name : BURROW_ADDR
33
43
value : http://localhost:8000
34
44
- name : METRICS_ADDR
35
45
value : 0.0.0.0:8080
36
46
- name : INTERVAL
37
47
value : " 30"
48
+ - name : dashboard
49
+ image : joway/burrow-dashboard@sha256:b4cce87c8264119d73f9a6df5d787ea811ce2138d39ca6cd56525bcfbb5169bf
50
+ env :
51
+ - name : BURROW_BACKEND
52
+ value : http://localhost:8000
53
+ ports :
54
+ - name : web
55
+ containerPort : 80
56
+ protocol : TCP
38
57
volumes :
39
58
- name : config
40
59
configMap :
You can’t perform that action at this time.
0 commit comments