-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtutorial_simple.json
More file actions
57 lines (55 loc) · 1.57 KB
/
tutorial_simple.json
File metadata and controls
57 lines (55 loc) · 1.57 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
{
"ComputeServers": {
"My_GitHub_Account": {
"FaaSType": "GitHubActions",
"UserName": "YOUR_GITHUB_USERNAME",
"ActionRepoName": "FaaSr-tutorial",
"Branch": "main"
}
},
"DataStores": {
"My_Minio_Bucket": {
"Endpoint": "https://play.min.io",
"Bucket": "faasr",
"Region": "us-east-1",
"Writable": "TRUE"
}
},
"FunctionList": {
"start": {
"FunctionName": "create_sample_data",
"FaaSServer": "My_GitHub_Account",
"Arguments": {
"folder": "tutorial",
"output1": "sample1.csv",
"output2": "sample2.csv"
},
"InvokeNext": "sum"
},
"sum": {
"FunctionName": "compute_sum",
"FaaSServer": "My_GitHub_Account",
"Arguments": {
"folder": "tutorial",
"input1": "sample1.csv",
"input2": "sample2.csv",
"output": "sum.csv"
},
"InvokeNext": [
]
}
},
"ActionContainers": {
"start": "ghcr.io/faasr/github-actions-tidyverse",
"sum": "ghcr.io/faasr/github-actions-tidyverse"
},
"FunctionGitRepo": {
"create_sample_data": "FaaSr/FaaSr-tutorial",
"compute_sum": "FaaSr/FaaSr-tutorial"
},
"FunctionInvoke": "start",
"InvocationID": "",
"FaaSrLog": "FaaSrLog",
"LoggingDataStore": "My_Minio_Bucket",
"DefaultDataStore": "My_Minio_Bucket"
}