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

[REVIEW] Add tolerations and node/pod affinities, add field verifications, add some default values #205

Closed
wants to merge 37 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9b277d3
Add tolerations to the pod object
kozhukalov May 8, 2018
0f6d15a
updated tests
consideRatio Jul 4, 2018
06cc452
make_pod tolerations param. documentation
consideRatio Jul 4, 2018
b3b2b36
ensure passed tolerations match API
consideRatio Jul 4, 2018
e0abfb4
boilerplate of the affinity field
consideRatio Jul 4, 2018
f9066a4
initial tests added
consideRatio Jul 4, 2018
1f91320
added affinity traitlets
consideRatio Jul 5, 2018
08abd2c
fix imports
consideRatio Jul 5, 2018
7ca1b8f
added affinity test
consideRatio Jul 5, 2018
4333303
added pod anti affinity tests
consideRatio Jul 5, 2018
359a588
adds affinity api verification
consideRatio Jul 5, 2018
826f6b4
fixed camelCase / snake_case issue
consideRatio Jul 5, 2018
a09e980
default values: None -> []
consideRatio Jul 5, 2018
275bf36
traitlet verification with k8s API specification
consideRatio Jul 5, 2018
2db1b62
removed 'volumes: []' from test validations
consideRatio Jul 6, 2018
9290f73
backwards compabtible > aesthetic
consideRatio Jul 6, 2018
7931e41
extra_pod_config override warning
consideRatio Jul 9, 2018
0fbb7db
support setting priority_class_name
consideRatio Jul 10, 2018
5fe57e0
Added .vscode to .gitignore
consideRatio Jul 19, 2018
a35cb34
Bugfix: singleuser_ prefix deprecation test
consideRatio Jul 19, 2018
122ca6c
Model verification now works (?)
consideRatio Jul 19, 2018
521b84a
Added test for dict/object inputs
consideRatio Jul 19, 2018
c8542c7
Removed Py3.4 testing
consideRatio Jul 19, 2018
03b870c
Added tests of utility functions
consideRatio Jul 19, 2018
a152cc8
Bumped JupyterHub requirement to 0.9
consideRatio Jul 19, 2018
3b511d7
Ensure stability in for loop
consideRatio Jul 28, 2018
0c84ccf
Revert mutable default keyword arguments
consideRatio Aug 1, 2018
64d6451
Bump kubespawner version to 0.9.1.
consideRatio Aug 1, 2018
8110c87
No need for setattr
consideRatio Aug 1, 2018
ee68998
Use traitlet's @default decorator
consideRatio Aug 1, 2018
663ea2c
Improve readability: traitlets first argument
consideRatio Aug 1, 2018
d65ab4a
Conform to known naming conventions
consideRatio Aug 1, 2018
100c4e8
Testing instructions added
consideRatio Aug 1, 2018
6714b62
Complemented scheduler_name configuration
consideRatio Aug 1, 2018
e528e63
Added scheduler_name test
consideRatio Aug 1, 2018
d35b1e8
Added priority_class_name test
consideRatio Aug 1, 2018
3445a8d
Fix merge artifacts
consideRatio Aug 1, 2018
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
Prev Previous commit
Next Next commit
Bumped JupyterHub requirement to 0.9
  • Loading branch information
consideRatio committed Aug 1, 2018
commit a152cc876782c1de0af98e65aa9aa963cf8f0674
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -12,14 +12,14 @@
name='jupyterhub-kubespawner',
version='0.8.1',
install_requires=[
'jupyterhub>=0.8',
'jupyterhub>=0.9',
'pyYAML',
'kubernetes==6.*',
'escapism',
'jinja2',
'async_generator>=1.8',
],
python_requires = ">=3.5",
python_requires='>=3.5',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
description='JupyterHub Spawner targeting Kubernetes',