-
Notifications
You must be signed in to change notification settings - Fork 5
/
stack.yml
42 lines (41 loc) · 1.05 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
provider:
name: faas
gateway: http://127.0.0.1:8080
functions:
image-resizer:
lang: node
handler: ./image-resizer
image: viveksyngh/image-resizer:0.1.0
secrets:
- s3-access-key
- s3-secret-key
environment:
combine_output: false
s3_url: cloud-minio.openfaas.svc.cluster.local
minio_port: 9000
json-uploader:
lang: go
handler: ./json-uploader
image: viveksyngh/json-uploader:0.1.0
secrets:
- s3-access-key
- s3-secret-key
environment:
s3_url: cloud-minio.openfaas.svc.cluster.local:9000
bucket: "inception"
minio-webhook-hanlder:
lang: go
handler: ./minio-webhook-hanlder
image: viveksyngh/minio-webhook-hanlder:0.1.0
environment:
combine_output: false
gateway_url: gateway.openfaas:8080
s3_url: cloud-minio.openfaas.svc.cluster.local:9000
inception:
lang: dockerfile
handler: ./function
image: alexellis/inception:2019-02-17
fprocess: "python3 index.py"
environment:
read_timeout: "60"
write_timeout: "60"