forked from edouardb/koyeb-image-labels-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkoyeb.yaml
24 lines (24 loc) · 777 Bytes
/
koyeb.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
functions:
- name: image-labels-2-algolia
runtime: nodejs14
handler: koyeb-functions/image-labels-2-algolia.handler
env:
AWS_ACCESS_KEY:
value_from_secret: aws-access-key
AWS_SECRET_KEY:
value_from_secret: aws-secret-key
ALGOLIA_APP_ID:
value_from_secret: algolia-app-id
ALGOLIA_API_KEY:
value_from_secret: algolia-api-key
ALGOLIA_INDEX:
value_from_secret: algolia-index
volumes:
- store: image-labels
events:
- cloudevent:
expression: |
event.source == "koyeb.com/gateway" &&
event.subject == "image-labels" &&
event.type.matches("s3:ObjectCreated:.*") &&
data.object.key.matches("([^\\s]+(\\.(?i)(jpe?g|png))$)")