Skip to content

Commit

Permalink
feat(openapi): add recommended images to info endpoint (reanahub#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Nov 12, 2024
1 parent bb6bad6 commit 1a1ab21
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions reana_commons/openapi_specifications/reana_server.json
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,17 @@
"title": "Default workspace",
"value": "/usr/share"
},
"interactive_session_recommended_jupyter_images": {
"title": "Recommended Jupyter images for interactive sessions",
"value": [
"docker.io/jupyter/scipy-notebook:notebook-6.4.5",
"docker.io/jupyter/scipy-notebook:notebook-9.4.5"
]
},
"interactive_sessions_custom_image_allowed": {
"title": "Whether users can set custom interactive session images or not",
"value": "False"
},
"kubernetes_max_memory_limit": {
"title": "Maximum allowed memory limit for Kubernetes jobs",
"value": "10Gi"
Expand Down Expand Up @@ -617,6 +628,34 @@
},
"type": "object"
},
"interactive_session_recommended_jupyter_images": {
"properties": {
"title": {
"type": "string"
},
"value": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"interactive_sessions_custom_image_allowed": {
"properties": {
"title": {
"type": "string"
},
"value": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"kubernetes_max_memory_limit": {
"properties": {
"title": {
Expand Down

0 comments on commit 1a1ab21

Please sign in to comment.