Skip to content

Commit

Permalink
feat(openapi): add engine versions to info endpoint (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Nov 5, 2024
1 parent d0becac commit 9976672
Showing 1 changed file with 108 additions and 0 deletions.
108 changes: 108 additions & 0 deletions reana_commons/openapi_specifications/reana_server.json
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,10 @@
"description": "Request succeeded. The response contains general info about the cluster.",
"examples": {
"application/json": {
"adage_version": {
"title": "CWL version",
"value": "0.11.0"
},
"compute_backends": {
"title": "List of supported compute backends",
"value": [
Expand All @@ -429,6 +433,14 @@
"slurmcern"
]
},
"cwl_package": {
"title": "CWL package",
"value": "cwltool"
},
"cwl_version": {
"title": "CWL version",
"value": "3.1.20210628163208"
},
"dask_cluster_default_number_of_workers": {
"title": "The number of Dask workers created by default",
"value": "2Gi"
Expand Down Expand Up @@ -473,18 +485,49 @@
"title": "Maximum retention period in days for workspace files",
"value": "3650"
},
"packtivity_version": {
"title": "Packtivity version",
"value": "0.16.2"
},
"snakemake_version": {
"title": "Snakemake",
"value": "8.24.1"
},
"supported_workflow_engines": {
"title": "List of supported worfklow engines",
"value": [
"cwl",
"serial",
"snakemake",
"yadage"
]
},
"workspaces_available": {
"title": "List of available workspaces",
"value": [
"/usr/share",
"/eos/home",
"/var/reana"
]
},
"yadage_version": {
"title": "Yadage version",
"value": "0.20.1"
}
}
},
"schema": {
"properties": {
"adage_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"compute_backends": {
"properties": {
"title": {
Expand All @@ -499,6 +542,27 @@
},
"type": "object"
},
"cwl_package": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"cwl_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"dask_cluster_default_number_of_workers": {
"properties": {
"title": {
Expand Down Expand Up @@ -634,6 +698,40 @@
},
"type": "object"
},
"packtivity_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"snakemake_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"supported_workflow_engines": {
"properties": {
"title": {
"type": "string"
},
"value": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"workspaces_available": {
"properties": {
"title": {
Expand All @@ -647,6 +745,16 @@
}
},
"type": "object"
},
"yadage_version": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
},
"type": "object"
Expand Down

0 comments on commit 9976672

Please sign in to comment.