Skip to content

Release 1.6.0 #70

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

Merged
merged 36 commits into from
Oct 26, 2018
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
90fa6d7
Scale down based on idle time instead of hour percentile
fnubalaj Jul 12, 2018
3834086
Addressing comments on Code Review
fnubalaj Jul 17, 2018
6ca7fdb
Check that nodewatcher directory exists before writing the file
fnubalaj Jul 18, 2018
24a3dfb
Plugins to check for queued jobs in order to scale down efficiently
fnubalaj Jul 25, 2018
378a423
Merge nodewatcher.py with Boto3 upgrade
fnubalaj Jul 25, 2018
ce013a6
Add constants to use instead of literal strings for filename(s)
fnubalaj Jul 25, 2018
3f8fead
Fix issues addressed in code reviews and a few bugs
fnubalaj Aug 8, 2018
7849ea3
Fix new lines
fnubalaj Aug 8, 2018
9f793c5
Change config parameter and references in nodewatcher
fnubalaj Aug 8, 2018
9783c7b
Keep host locked after termination request is sent
fnubalaj Aug 9, 2018
363655c
Change parameter name to scaledown_idletime
fnubalaj Aug 13, 2018
18cf815
Rename global variable to exclude _NW
fnubalaj Aug 14, 2018
05e40c3
Bug fixes to get scale down working
fnubalaj Aug 15, 2018
e06655a
Remove exit code check, since if nothing is returned exit code is not 0
fnubalaj Aug 15, 2018
80df33f
Scale Up Based on Nodes Requested
Jul 9, 2018
2399827
Unlock host in case self termination fails
fnubalaj Aug 16, 2018
8a812f6
Only import ClientError exception from botocore.exceptions
fnubalaj Aug 16, 2018
dabae4a
Change Jobwatcher config path
Aug 16, 2018
6a47e09
Get ASG Name from tags
Aug 16, 2018
cea3832
Fixed Typo
Aug 17, 2018
824e95a
Remove completed jobs from scaleup check
fnubalaj Aug 23, 2018
d7f7ae7
Merge branch 'develop' into 'scale'
fnubalaj Aug 29, 2018
6c952ed
Merge pull request #54 from fnubalaj/merge-develop-into-scale
fnubalaj Aug 30, 2018
01c5b29
Merge branch 'scale' into 'develop'
fnubalaj Aug 30, 2018
a54fe90
Merge pull request #57 from fnubalaj/merge-scale-into-develop
fnubalaj Aug 30, 2018
13f372b
Version 1.6.0rc1
fnubalaj Aug 30, 2018
eafa094
Fix scale up when hyperthreading is disabled
fnubalaj Sep 5, 2018
94c7d17
update version
fnubalaj Sep 14, 2018
887bb40
Fix node package dependencies on CentOS6 (python 2.6)
lukeseawalker Sep 20, 2018
13ba95b
PEP8 fixes to jobwatcher code
enrico-usai Sep 20, 2018
661d302
jobwatcher: fix proxy support
enrico-usai Sep 20, 2018
ae47e09
Update node version to 1.6.0rc3
fnubalaj Sep 21, 2018
f768bac
Fix scaling up issues in torque and slurm
fnubalaj Sep 30, 2018
7c88f96
Update version to 1.6.0rc4
fnubalaj Oct 4, 2018
7c278ec
Update Paramiko Version
lukeseawalker Oct 11, 2018
fea0c19
Update version to 1.6.0rc5
fnubalaj Oct 18, 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
update version
  • Loading branch information
fnubalaj committed Sep 14, 2018
commit 94c7d177e8f2cf48c5b67fc77371d0fc414b2c7e
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def read(fname):
console_scripts = ['sqswatcher = sqswatcher.sqswatcher:main',
'nodewatcher = nodewatcher.nodewatcher:main',
'jobwatcher = jobwatcher.jobwatcher:main']
version = "1.6.0rc1"
version = "1.6.0rc2"
requires = ['boto3>=1.7.55', 'python-dateutil>=2.6.1']

if sys.version_info[:2] == (2, 6):
Expand Down