generated from tercen/template-python-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperator.json
44 lines (44 loc) · 1.36 KB
/
operator.json
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
{
"name": "Workflow Runner",
"description": "Operator used to test templates against golden standards",
"tags": ["workflow"],
"authors": ["tercen"],
"urls": ["https://github.com/tercen/workflow_runner_operator"],
"container":"ghcr.io/tercen/workflow_runner_operator:latest",
"properties": [
{
"kind": "BooleanProperty",
"name": "Report Mode",
"defaultValue": false,
"description": ""
},
{
"kind": "DoubleProperty",
"name": "Memory",
"defaultValue": -1,
"description": "Custom RAM allocated to all opertors in all workflows."
},
{
"kind": "StringProperty",
"name": "Github Token",
"defaultValue": "",
"description": "Personal Github Access Token."
},
{
"kind": "DoubleProperty",
"name": "Tolerance",
"defaultValue": 0.001,
"description": "Acceptable difference between resulting column values."
},
{
"kind": "EnumeratedProperty",
"name": "Tolerance",
"defaultValue": "Relative",
"values": [
"Relative",
"Absolute"
],
"description": "Type of tolerance used to compare numerical values."
}
]
}