Skip to content

Commit

Permalink
Merge pull request #2 from Sandip117/master
Browse files Browse the repository at this point in the history
Removed preset limits & version bump
  • Loading branch information
jbernal0019 committed Mar 23, 2021
2 parents 7d98dee + dc98337 commit cb69774
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.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

0 comments on commit cb69774

Please sign in to comment.