Skip to content

Commit

Permalink
feat(openapi): add workflow engine versions to info endpoint (reanahu…
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Nov 12, 2024
1 parent 3d2420a commit 2caa2e2
Showing 1 changed file with 113 additions and 0 deletions.
113 changes: 113 additions & 0 deletions reana_commons/openapi_specifications/reana_server.json
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,14 @@
"slurmcern"
]
},
"cwl_engine_tool": {
"title": "CWL engine tool",
"value": "cwltool"
},
"cwl_engine_version": {
"title": "CWL engine version",
"value": "3.1.20210628163208"
},
"dask_autoscaler_enabled": {
"title": "Dask autoscaler enabled in the cluster",
"value": "False"
Expand Down Expand Up @@ -492,13 +500,38 @@
"title": "Maximum retention period in days for workspace files",
"value": "3650"
},
"snakemake_engine_version": {
"title": "Snakemake engine version",
"value": "8.24.1"
},
"supported_workflow_engines": {
"title": "List of supported workflow engines",
"value": [
"cwl",
"serial",
"snakemake",
"yadage"
]
},
"workspaces_available": {
"title": "List of available workspaces",
"value": [
"/usr/share",
"/eos/home",
"/var/reana"
]
},
"yadage_engine_adage_version": {
"title": "Yadage engine adage version",
"value": "0.11.0"
},
"yadage_engine_packtivity_version": {
"title": "Yadage engine packtivity version",
"value": "0.16.2"
},
"yadage_engine_version": {
"title": "Yadage engine version",
"value": "0.20.1"
}
}
},
Expand All @@ -518,6 +551,28 @@
},
"type": "object"
},
"cwl_engine_tool": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"cwl_engine_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"dask_autoscaler_enabled": {
"properties": {
"title": {
Expand Down Expand Up @@ -700,6 +755,31 @@
},
"type": "object"
},
"snakemake_engine_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"supported_workflow_engines": {
"properties": {
"title": {
"type": "string"
},
"value": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"workspaces_available": {
"properties": {
"title": {
Expand All @@ -713,6 +793,39 @@
}
},
"type": "object"
},
"yadage_engine_adage_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"yadage_engine_packtivity_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"yadage_engine_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
Expand Down

0 comments on commit 2caa2e2

Please sign in to comment.