generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchris_plugin_info.json
161 lines (157 loc) · 4.12 KB
/
chris_plugin_info.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"CHANGEME": "This is a whitelabel application. Delete this line, then edit the metadata below to your liking before uploading to the ChRIS Store.",
"type": "ds",
"version": "0.2.0",
"title": "Rclone Copy",
"authors": "FNNDSC <[email protected]>",
"category": "Utility",
"description": "Copy files to or from servers.",
"documentation": "https://github.com/FNNDSC/pl-rclone-copy-template#readme",
"license": "MIT",
"icon": "",
"parameters": [
{
"name": "path",
"type": "str",
"optional": false,
"flag": "--path",
"short_flag": "--path",
"action": "store",
"help": "remote path location",
"default": "",
"ui_exposed": true
},
{
"name": "ignore_case",
"type": "bool",
"optional": true,
"flag": "--ignore-case",
"short_flag": "--ignore-case",
"action": "store_true",
"help": "Ignore case in filters (case insensitive)",
"default": false,
"ui_exposed": true
},
{
"name": "ignore_checksum",
"type": "bool",
"optional": true,
"flag": "--ignore-checksum",
"short_flag": "--ignore-checksum",
"action": "store_true",
"help": "Skip post copy check of checksums",
"default": false,
"ui_exposed": true
},
{
"name": "ignore_existing",
"type": "bool",
"optional": true,
"flag": "--ignore-existing",
"short_flag": "--ignore-existing",
"action": "store_true",
"help": "Skip all files that exist on destination",
"default": false,
"ui_exposed": true
},
{
"name": "timeout",
"type": "str",
"optional": true,
"flag": "--timeout",
"short_flag": "--timeout",
"action": "store",
"help": "IO idle timeout (default 5m0s)",
"default": "",
"ui_exposed": true
},
{
"name": "include",
"type": "str",
"optional": true,
"flag": "--include",
"short_flag": "--include",
"action": "store",
"help": "Include files matching pattern",
"default": "",
"ui_exposed": true
},
{
"name": "exclude",
"type": "str",
"optional": true,
"flag": "--exclude",
"short_flag": "--exclude",
"action": "store",
"help": "Exclude files matching pattern",
"default": "",
"ui_exposed": true
},
{
"name": "filter",
"type": "str",
"optional": true,
"flag": "--filter",
"short_flag": "--filter",
"action": "store",
"help": "Add a file-filtering rule",
"default": "",
"ui_exposed": true
},
{
"name": "max_depth",
"type": "int",
"optional": true,
"flag": "--max-depth",
"short_flag": "--max-depth",
"action": "store",
"help": "Maximum depth of directory hierarchy",
"default": "",
"ui_exposed": true
},
{
"name": "max_size",
"type": "str",
"optional": true,
"flag": "--max-size",
"short_flag": "--max-size",
"action": "store",
"help": "Only transfer files smaller than this in KiB or suffix B|K|M|G|T|P (default off)",
"default": "",
"ui_exposed": true
},
{
"name": "min_size",
"type": "str",
"optional": true,
"flag": "--min-size",
"short_flag": "--min-size",
"action": "store",
"help": "Only transfer files bigger than this in KiB or suffix B|K|M|G|T|P (default off)",
"default": "",
"ui_exposed": true
},
{
"name": "error_on_no_transfer",
"type": "bool",
"optional": true,
"flag": "--error-on-no-transfer",
"short_flag": "--error-on-no-transfer",
"action": "store_true",
"help": "Sets exit code 9 if no files are transferred, useful in scripts",
"default": false,
"ui_exposed": true
}
],
"selfpath": "/usr/local/bin",
"selfexec": "chrclone",
"execshell": "/docker-entrypoint.sh",
"min_number_of_workers": 1,
"max_number_of_workers": 1,
"min_memory_limit": "200Mi",
"max_memory_limit": "4Gi",
"min_cpu_limit": "200m",
"max_cpu_limit": "4000m",
"min_gpu_limit": 0,
"max_gpu_limit": 0
}