This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 227
/
stack.yml
303 lines (291 loc) · 6.56 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
provider:
name: openfaas
gateway: http://127.0.0.1:8080
functions:
system-github-event:
lang: go
handler: ./github-event
image: ghcr.io/${REPO:-openfaas}/ofc-github-event:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
github-push:
lang: go
handler: ./github-push
image: ghcr.io/${REPO:-openfaas}/ofc-github-push:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
git-tar:
lang: dockerfile
handler: ./git-tar
image: ghcr.io/${REPO:-openfaas}/ofc-git-tar:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
buildshiprun:
lang: go
handler: ./buildshiprun
image: ghcr.io/${REPO:-openfaas}/ofc-buildshiprun:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
garbage-collect:
lang: go
handler: ./garbage-collect
image: ghcr.io/${REPO:-openfaas}/ofc-garbage-collect:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
github-status:
lang: go
handler: ./github-status
image: ghcr.io/${REPO:-openfaas}/ofc-github-status:${TAG:-dev}
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment:
write_debug: false
read_debug: false
combine_output: false
validate_hmac: true
environment_file:
- gateway_config.yml
- github.yml
secrets:
- private-key
- payload-secret
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
import-secrets:
lang: go
handler: ./import-secrets
image: ghcr.io/${REPO:-openfaas}/ofc-import-secrets:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
pipeline-log:
lang: go
handler: ./pipeline-log
image: ghcr.io/${REPO:-openfaas}/ofc-pipeline-log:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
list-functions:
lang: go
handler: ./list-functions
image: ghcr.io/${REPO:-openfaas}/ofc-list-functions:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
audit-event:
lang: go
handler: ./audit-event
image: ghcr.io/${REPO:-openfaas}/ofc-audit-event:${TAG:-dev}
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment_file:
- slack.yml
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
metrics:
lang: go
handler: ./metrics
image: ghcr.io/${REPO:-openfaas}/ofc-system-metrics:${TAG:-dev}
labels:
openfaas-cloud: "1"
role: openfaas-system
com.openfaas.scale.zero: false
environment_file:
- gateway_config.yml
environment:
content_type: "application/json"
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
function-logs:
lang: go
handler: ./function-logs
image: ghcr.io/${REPO:-openfaas}/ofc-function-logs:${TAG:-dev}
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
limits:
memory: 128Mi
requests:
memory: 32Mi
cpu: 50m
echo:
lang: go
handler: ./echo
image: ghcr.io/${REPO:-openfaas}/ofc-echo:${TAG:-dev}
labels:
openfaas-cloud: "1"
com.openfaas.scale.zero: false
environment:
write_debug: true
read_debug: true
limits:
memory: 64Mi
requests:
memory: 32Mi
cpu: 50m