Skip to content

Commit

Permalink
Improve documentation for pod quota setting
Browse files Browse the repository at this point in the history
  • Loading branch information
betatim committed Aug 8, 2019
1 parent 8d0ab0e commit 73213a4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions binderhub/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,15 @@ def _valid_badge_base_url(self, proposal):
pod_quota = Integer(
None,
help="""
The number of concurrent pods this hub has been designed to support.
The number of concurrent pods this hub has been designed to support.
This quota is used as an indication for how much above or below the
design capacity a hub is running. It is not used to reject new launch
requests when usage is above the quota.
The default corresponds to no quotas, 0 means the hub can't accept pods,
and any positive integer sets the quota.
The default corresponds to no quota, 0 means the hub can't accept pods
(maybe because it is in maintenance mode), and any positive integer
sets the quota.
""",
allow_none=True,
config=True,
Expand Down

0 comments on commit 73213a4

Please sign in to comment.