Skip to content

Commit

Permalink
feat(dask): update reana.yaml schema to include dask (reanahub#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Oct 16, 2024
1 parent 563f8c8 commit e476354
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions reana_commons/validation/schemas/reana_analysis_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,24 @@
"$id": "/properties/workflow/properties/resources/properties/kerberos",
"type": "boolean",
"title": "Kerberos authentication for the whole workflow."
},
"dask": {
"$id": "/properties/workflow/properties/resources/properties/dask",
"type": "object",
"title": "Dask cluster to be used by the workflow",
"properties": {
"image": {
"type": "string"
},
"cores": {
"type": "number"
},
"memory": {
"type": "string",
"pattern": "^[1-9][0-9]*[EPTGMK]$"
}
},
"required": ["image", "cores", "memory"]
}
},
"additionalProperties": false
Expand Down

0 comments on commit e476354

Please sign in to comment.