From b3e522b7c6cefd10a4b4664b781a2097da44b10a Mon Sep 17 00:00:00 2001 From: Alputer Date: Mon, 9 Sep 2024 14:56:31 +0200 Subject: [PATCH] feat(dask): add descriptions to dask properties (#467) --- .../validation/schemas/reana_analysis_schema.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reana_commons/validation/schemas/reana_analysis_schema.json b/reana_commons/validation/schemas/reana_analysis_schema.json index 380b2577..19b1581c 100644 --- a/reana_commons/validation/schemas/reana_analysis_schema.json +++ b/reana_commons/validation/schemas/reana_analysis_schema.json @@ -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]$" } },