Skip to content
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

Removed preset limits & version bump #2

Merged
merged 1 commit into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name = 'simpledsapp',
version = '2.0.1',
version = '2.0.2',
description = 'A simple ChRIS ds app demo',
long_description = readme,
author = 'FNNDSC',
Expand Down
8 changes: 4 additions & 4 deletions simpledsapp/simpledsapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ class SimpleDSApp(ChrisApp):
ICON = '' # url of an icon image
MAX_NUMBER_OF_WORKERS = 1 # Override with integer value
MIN_NUMBER_OF_WORKERS = 1 # Override with integer value
MAX_CPU_LIMIT = '4000M' # Override with millicore value as string, e.g. '2000m'
MIN_CPU_LIMIT = '1000M' # Override with millicore value as string, e.g. '2000m'
MAX_MEMORY_LIMIT = '4000Mi' # Override with string, e.g. '1Gi', '2000Mi'
MIN_MEMORY_LIMIT = '4000Mi' # Override with string, e.g. '1Gi', '2000Mi'
MAX_CPU_LIMIT = '' # Override with millicore value as string, e.g. '2000m'
MIN_CPU_LIMIT = '' # Override with millicore value as string, e.g. '2000m'
MAX_MEMORY_LIMIT = '' # Override with string, e.g. '1Gi', '2000Mi'
MIN_MEMORY_LIMIT = '' # Override with string, e.g. '1Gi', '2000Mi'
MIN_GPU_LIMIT = 0 # Override with the minimum number of GPUs, as an integer, for your plugin
MAX_GPU_LIMIT = 0 # Override with the maximum number of GPUs, as an integer, for your plugin

Expand Down