-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy paths.yaml
More file actions
91 lines (86 loc) · 3.87 KB
/
s.yaml
File metadata and controls
91 lines (86 loc) · 3.87 KB
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
# ------------------------------------
# 欢迎您使用阿里云函数计算 FC 组件进行项目开发
# 组件仓库地址:https://github.com/devsapp/fc
# 组件帮助文档:https://www.serverless-devs.com/fc/readme
# Yaml参考文档:https://www.serverless-devs.com/fc/yaml/readme
# 关于:
# - Serverless Devs和FC组件的关系、如何声明/部署多个函数、超过50M的代码包如何部署
# - 关于.fcignore使用方法、工具中.s目录是做什么、函数进行build操作之后如何处理build的产物
# 等问题,可以参考文档:https://www.serverless-devs.com/fc/tips
# 关于如何做CICD等问题,可以参考:https://www.serverless-devs.com/serverless-devs/cicd
# 关于如何进行环境划分等问题,可以参考:https://www.serverless-devs.com/serverless-devs/extend
# 更多函数计算案例,可参考:https://github.com/devsapp/awesome/
# 有问题快来钉钉群问一下吧:33947367
# ------------------------------------
edition: 1.0.0
name: browser_video_recorder
# access 是当前应用所需要的密钥信息配置:
# 密钥配置可以参考:https://www.serverless-devs.com/serverless-devs/command/config
# 密钥使用顺序可以参考:https://www.serverless-devs.com/serverless-devs/tool#密钥使用顺序与规范
access: "{{ access }}"
vars: # 全局变量
region: "{{ region }}"
service:
name: "{{ serviceName }}"
role: "{{ roleArn }}"
description: 'Record a video for chrome browser'
internetAccess: true
functionName: "{{ functionName }}"
services:
browser_video_recorder_project: # 业务名称/模块名称
component: fc # 组件名称,Serverless Devs 工具本身类似于一种游戏机,不具备具体的业务能力,组件类似于游戏卡,用户通过向游戏机中插入不同的游戏卡实现不同的功能,即通过使用不同的组件实现不同的具体业务能力
actions:
pre-deploy:
- component: fc build --use-docker --dockerfile ./code/Dockerfile
post-deploy:
- component: fc api UpdateFunction --region ${vars.region} --header '{"x-fc-disable-container-reuse":"True"}' --path '{"serviceName":"${vars.service.name}","functionName":"${vars.functionName}"}'
props:
region: ${vars.region}
service: ${vars.service}
function:
name: ${vars.functionName}
runtime: custom-container
memorySize: 8192
instanceType: c1
timeout: 7200
customContainerConfig:
image: "{{ acrRegistry }}"
environmentVariables:
OSS_AK_ID: "{{ ossAkID }}"
OSS_AK_SECRET: "{{ ossAkSecret }}"
OSS_BUCKET: "{{ ossBucket }}"
OSS_ENDPOINT: oss-${vars.region}-internal.aliyuncs.com
TZ: "{{ timeZone }}"
asyncConfiguration:
destination:
# onSuccess: acs:fc:::services/${vars.service.name}/functions/dest-succ
onFailure: acs:fc:::services/${vars.service.name}/functions/dest-fail
maxAsyncEventAgeInSeconds: 18000
maxAsyncRetryAttempts: 2
statefulInvocation: true
dest-succ: # 业务名称/模块名称
component: fc
props: # 组件的属性值
region: ${vars.region}
service: ${vars.service}
function:
name: dest-succ
description: 'async task destination success function by serverless devs'
runtime: python3
codeUri: ./dest/succ
handler: index.handler
memorySize: 512
timeout: 60
dest-fail: # 业务名称/模块名称
component: fc
props: # 组件的属性值
region: ${vars.region}
service: ${vars.service}
function:
name: dest-fail
description: 'async task destination fail function by serverless devs'
runtime: python3
codeUri: ./dest/fail
handler: index.handler
memorySize: 512
timeout: 60