forked from openfaas/openfaas-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.yml
241 lines (226 loc) · 5.23 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
provider:
name: openfaas
gateway: http://127.0.0.1:8080
functions:
system-github-event:
lang: go
handler: ./github-event
image: functions/github-event:0.9.2
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
validate_hmac: true
write_debug: true
read_debug: true
validate_customers: true
environment_file:
- github.yml
- gateway_config.yml
secrets:
- github-webhook-secret
- payload-secret
- customers
github-push:
lang: go
handler: ./github-push
image: functions/github-push:0.7.5
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
validate_hmac: true
read_timeout: 10s
write_timeout: 10s
write_debug: true
read_debug: true
environment_file:
- gateway_config.yml
- github.yml
secrets:
- github-webhook-secret
- payload-secret
- customers
git-tar:
lang: dockerfile
handler: ./git-tar
image: functions/of-git-tar:0.17.3
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
read_timeout: 15m
write_timeout: 15m
write_debug: true
read_debug: true
environment_file:
- gateway_config.yml
- github.yml
secrets:
- payload-secret
- private-key
# Uncomment this for GitLab
# - gitlab-api-token
buildshiprun:
lang: go
handler: ./buildshiprun
image: functions/of-buildshiprun:0.13.1
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
read_timeout: 5m
write_timeout: 5m
write_debug: true
read_debug: true
scaling_factor: 50
environment_file:
- buildshiprun_limits.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.7
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
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.4.1
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
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.6.2
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
write_debug: false
read_debug: false
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.5
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
write_debug: false
read_debug: false
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.6.0
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
write_debug: false
read_debug: false
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.2
labels:
openfaas-cloud: "1"
com.openfaas.scale.zero: false
environment_file:
- slack.yml
echo:
skip_build: true
image: functions/alpine:latest
fprocess: cat
labels:
openfaas-cloud: "1"
com.openfaas.scale.zero: false
environment:
write_debug: true
read_debug: true
metrics:
lang: go
handler: ./metrics
image: functions/system-metrics:0.2.0
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment_file:
- gateway_config.yml
environment:
content_type: "application/json"
function-logs:
lang: go
handler: ./function-logs
image: functions/function-logs:0.2.0
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
write_debug: true
read_debug: true
environment_file:
- gateway_config.yml
secrets:
- basic-auth-user
- basic-auth-password