-
Notifications
You must be signed in to change notification settings - Fork 37
feat(openapi): add K8s resource requests and limits in reana.yaml #486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"info": { | ||
"description": "Submit workflows to be run on REANA Cloud", | ||
"title": "REANA Server", | ||
"version": "0.9.3" | ||
"version": "0.9.4" | ||
}, | ||
"paths": { | ||
"/account/settings/linkedaccounts/": {}, | ||
|
@@ -366,14 +366,38 @@ | |
"title": "Default workspace", | ||
"value": "/usr/share" | ||
}, | ||
"kubernetes_cpu_limit": { | ||
"title": "Default CPU limit for Kubernetes jobs", | ||
"value": "2" | ||
}, | ||
"kubernetes_cpu_request": { | ||
"title": "Default CPU request for Kubernetes jobs", | ||
"value": "1" | ||
}, | ||
"kubernetes_max_cpu_limit": { | ||
"title": "Maximum allowed CPU limit for Kubernetes jobs", | ||
"value": "4" | ||
}, | ||
"kubernetes_max_cpu_request": { | ||
"title": "Maximum allowed CPU request for Kubernetes jobs", | ||
"value": "2" | ||
}, | ||
"kubernetes_max_memory_limit": { | ||
"title": "Maximum allowed memory limit for Kubernetes jobs", | ||
"value": "10Gi" | ||
"value": "10Gi\"" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove extra backquote. |
||
}, | ||
"kubernetes_max_memory_request": { | ||
"title": "Maximum allowed memory request for Kubernetes jobs", | ||
"value": "5Gi" | ||
}, | ||
"kubernetes_memory_limit": { | ||
"title": "Default memory limit for Kubernetes jobs", | ||
"value": "3Gi" | ||
}, | ||
"kubernetes_memory_request": { | ||
"title": "Default memory request for Kubernetes jobs", | ||
"value": "1Gi" | ||
}, | ||
"maximum_kubernetes_jobs_timeout": { | ||
"title": "Maximum timeout for Kubernetes jobs", | ||
"value": "1209600" | ||
|
@@ -408,6 +432,28 @@ | |
}, | ||
"type": "object" | ||
}, | ||
"default_kubernetes_cpu_limit": { | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"default_kubernetes_cpu_request": { | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"default_kubernetes_jobs_timeout": { | ||
"properties": { | ||
"title": { | ||
|
@@ -430,6 +476,17 @@ | |
}, | ||
"type": "object" | ||
}, | ||
"default_kubernetes_memory_request": { | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"default_workspace": { | ||
"properties": { | ||
"title": { | ||
|
@@ -441,6 +498,30 @@ | |
}, | ||
"type": "object" | ||
}, | ||
"kubernetes_max_cpu_limit": { | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string", | ||
"x-nullable": true | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"kubernetes_max_cpu_request": { | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string", | ||
"x-nullable": true | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"kubernetes_max_memory_limit": { | ||
"properties": { | ||
"title": { | ||
|
@@ -453,6 +534,18 @@ | |
}, | ||
"type": "object" | ||
}, | ||
"kubernetes_max_memory_request": { | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string", | ||
"x-nullable": true | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"maximum_interactive_session_inactivity_period": { | ||
"properties": { | ||
"title": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is a minor patchlevel release, and since somebody may be using Python API to submit workflows, perhaps we should add the new optional arguments at the end? Ideally, they would be close together, but let's check how RECAST uses the API to make sure that we don't break their submission workflow by rearranging argument order.
(The safest option would be just to add them at the end, even though it's not pretty...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, just checked
recast-atlas
sources: https://github.com/recast-hep/recast-atlas/blob/main/src/recastatlas/backends/reana.pyWe should be good WRT parameter order, since the RECAST client does not seem to be using
submit()
from the REANA client API.