Skip to content

Commit

Permalink
update limits and bump version up
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Mar 23, 2021
1 parent 0e56528 commit 7f9fc00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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.0',
version = '2.0.1',
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 = '' # 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'
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'
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

0 comments on commit 7f9fc00

Please sign in to comment.