forked from openfaas/openfaas-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.yml
190 lines (178 loc) · 3.95 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
provider:
name: faas
gateway: http://127.0.0.1:8080
functions:
github-push:
lang: go
handler: ./github-push
image: functions/github-push:0.6.0
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
validate_hmac: true
read_timeout: 10s
write_timeout: 10s
write_debug: true
read_debug: true
validate_customers: true
environment_file:
- gateway_config.yml
- github.yml
secrets:
- github-webhook-secret
- payload-secret
github-event:
lang: go
handler: ./github-event
image: functions/github-event:0.5.0
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
write_debug: true
read_debug: true
environment_file:
- github.yml
- gateway_config.yml
secrets:
- github-webhook-secret
- payload-secret
git-tar:
lang: dockerfile
handler: ./git-tar
image: functions/of-git-tar:0.8.2
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
read_timeout: 15m
write_timeout: 15m
write_debug: true
read_debug: true
environment_file:
- gateway_config.yml
- github.yml
secrets:
- github-webhook-secret
- payload-secret
- private-key
buildshiprun:
lang: go
handler: ./buildshiprun
image: functions/of-buildshiprun:0.7.0
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
read_timeout: 5m
write_timeout: 5m
write_debug: true
read_debug: true
environment_file:
- buildshiprun_limits_swarm.yml
- gateway_config.yml
- github.yml
secrets:
- basic-auth-user
- basic-auth-password
- payload-secret
# - swarm-pull-secret
garbage-collect:
lang: go
handler: ./garbage-collect
image: functions/garbage-collect:0.4.0
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
write_debug: true
read_debug: true
read_timeout: 30s
write_timeout: 30s
environment_file:
- gateway_config.yml
secrets:
- basic-auth-user
- basic-auth-password
- payload-secret
github-status:
lang: go
handler: ./github-status
image: functions/github-status:0.2.1
labels:
role: openfaas-system
environment:
write_debug: true
read_debug: true
combine_output: false
validate_hmac: true
debug_token: true
environment_file:
- gateway_config.yml
- github.yml
secrets:
- private-key
- payload-secret
import-secrets:
lang: go
handler: ./import-secrets
image: functions/import-secrets:0.3.0
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
write_debug: true
read_debug: true
validate_hmac: true
combined_output: false
environment_file:
- github.yml
secrets:
- payload-secret
pipeline-log:
lang: go
handler: ./pipeline-log
image: functions/pipeline-log:0.3.1
labels:
role: openfaas-system
environment:
write_debug: true
read_debug: true
combine_output: false
environment_file:
- gateway_config.yml
secrets:
- s3-access-key
- s3-secret-key
- payload-secret
list-functions:
lang: go
handler: ./list-functions
image: functions/list-functions:0.4.4
labels:
openfaas-cloud: "1"
role: openfaas-system
environment:
write_debug: true
read_debug: true
environment_file:
- gateway_config.yml
secrets:
- basic-auth-user
- basic-auth-password
audit-event:
lang: go
handler: ./audit-event
image: functions/audit-event:0.1.1
labels:
openfaas-cloud: "1"
environment_file:
- slack.yml
echo:
skip_build: true
image: functions/alpine:latest
fprocess: cat
environment:
write_debug: true
read_debug: true