Skip to content

Commit

Permalink
feat(dask): add descriptions to dask properties (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Sep 9, 2024
1 parent 8caeb77 commit b3e522b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions reana_commons/validation/schemas/reana_analysis_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,16 @@
"title": "Dask cluster to be used by the workflow",
"properties": {
"image": {
"type": "string"
"type": "string",
"description": "Image to be used by dask workers and scheduler"
},
"cores": {
"type": "number"
"type": "number",
"description": "Number of cores to be used by the workflow. If not needed, autoscaler can choose to use fewer cores."
},
"memory": {
"type": "string",
"description": "Amount of memory to be used by the workflow. If not needed, autoscaler can choose to use less memory.",
"pattern": "^[1-9][0-9]*[EPTGMK]$"
}
},
Expand Down

0 comments on commit b3e522b

Please sign in to comment.