-
Notifications
You must be signed in to change notification settings - Fork 7
/
stack.yml
68 lines (64 loc) · 1.46 KB
/
stack.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
provider:
name: openfaas
gateway: http://127.0.0.1:31112
functions:
# dashboard
faas-flow-dashboard:
lang: Dockerfile
handler: ./dashboard
image: s8sg/faas-flow-dashboard:3.0.8
environment:
read_debug: true
write_debug: true
combine_output: false
environment_file:
- conf.yml
secrets:
- basic-auth
labels:
com.openfaas.scale.zero: "false"
# list flow functions deployed in openfaas
list-flow-functions:
lang: go
handler: ./list-flow-functions
image: s8sg/list-flow-functions:1.0.1
environment:
read_debug: true
write_debug: true
combine_output: false
environment_file:
- conf.yml
secrets:
- basic-auth
labels:
com.openfaas.scale.zero: "false"
# Generate dot graph for faas-flow
dot-generator:
lang: go
handler: ./dot-generator
image: s8sg/dot-generator:1.2.0
environment_file:
- conf.yml
environment:
read_timeout: 120
read_debug: true
write_timeout: 120
write_debug: true
combine_output: false
labels:
com.openfaas.scale.zero: "false"
# Collect metrics for faas-flow
metrics:
lang: go
handler: ./metrics
image: s8sg/metrics:1.6.0
environment_file:
- conf.yml
environment:
read_debug: true
read_timeout: 120
write_timeout: 120
write_debug: true
combine_output: false
labels:
com.openfaas.scale.zero: "false"