Skip to content

Commit 5f8b89a

Browse files
Sean Smithsean-smith
authored andcommitted
Release 1.5.2rc1 Version
Signed-off-by: Sean Smith <[email protected]>
1 parent f84ae68 commit 5f8b89a

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
CHANGELOG
33
=========
44

5+
1.5.2
6+
=====
7+
* feature:``cfncluster``: Added ClusterUser as a stack output. This makes it easier to get the username of the head node.
8+
* feature:``cfncluster``: Added `cfncluster ssh cluster_name`, this allows you to easily ssh into your clusters. It allows arbitrary command execution and extra ssh flags to be provided after the command. See https://cfncluster.readthedocs.io/en/latest/commands.html#ssh
9+
* change:``cfncluster``: Moved global cli flags to the command specific flags. For example `cfncluster --region us-east-1 create` now becomes `cfncluster create --region us-east-1`
10+
* bugfix:``cfncluster-cookbook``: Fix bug that prevented c5d/m5d instances from working
11+
* bugfix:``cfncluster-cookbook``: Set CPU as a consumable resource in slurm
12+
* bugfix:``cfncluster-node``: Fixed Slurm behavior to add CPU slots so multiple jobs can be scheduled on a single node
13+
514
1.5.1
615
=====
716
* change:``cfncluster``: Added "ec2:DescribeVolumes" permissions to

cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(fname):
2020
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2121

2222
console_scripts = ['cfncluster = cfncluster.cli:main']
23-
version = "1.5.1"
23+
version = "1.5.2rc2"
2424
requires = ['boto3>=1.7.33', 'awscli>=1.11.175', 'future>=0.16.0']
2525

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

cloudformation/cfncluster.cfn.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"AWSTemplateFormatVersion": "2010-09-09",
3-
"Description": "AWS CloudFormation Sample Template cfncluster.cfn.json: Sample template showing an framework for deploying master + compute type clusters on AWS. **WARNING** This template creates AWS resources. You will be billed for the AWS resources used if you create a stack from this template. Version: cfncluster-1.5.1",
3+
"Description": "AWS CloudFormation Sample Template cfncluster.cfn.json: Sample template showing an framework for deploying master + compute type clusters on AWS. **WARNING** This template creates AWS resources. You will be billed for the AWS resources used if you create a stack from this template. Version: cfncluster-1.5.2",
44
"Metadata": {
55
"AWS::CloudFormation::Interface": {
66
"ParameterGroups": [
@@ -1767,8 +1767,8 @@
17671767
},
17681768
"CfnClusterVersions": {
17691769
"default": {
1770-
"cfncluster": "cfncluster-1.5.1",
1771-
"cookbook": "cfncluster-cookbook-1.5.1",
1770+
"cfncluster": "cfncluster-1.5.2rc2",
1771+
"cookbook": "cfncluster-cookbook-1.5.2",
17721772
"chef": "14.2.0",
17731773
"ridley": "5.1.1",
17741774
"berkshelf": "7.0.4",

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.5'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.5.1'
55+
release = '1.5.2rc2'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

0 commit comments

Comments
 (0)