Skip to content

Commit cf0aceb

Browse files
author
Dougal Ballantyne
committed
Prepping for 0.0.14 release
1 parent 7ac5d5f commit cf0aceb

File tree

6 files changed

+20
-21
lines changed

6 files changed

+20
-21
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+
0.0.14
6+
======
7+
* feature:``cli``: Introduced sanity_check feature for config
8+
* updates:``cli``: Simplified EC2 key pair config
9+
* feature:``cfncluster``: Scale up is now driven by two policies; enables small and large scaling steps
10+
* feature:``cfnlcuster``: Introduced initial support for CloudWatch logs in us-east-1
11+
* updates:``ami``: Moved deamon handling to supervisord
12+
* updates:``ami``: Pulled latest CentOS errata
13+
514
0.0.13
615
======
716
* bugfix:``cli``: Fixed missing AvailabilityZone for "update" command

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ everything is done using CloudFormation or resources within AWS.
88

99
### Installation
1010

11-
The current working version is cfncluster-0.0.13. The CLI is written in python and uses BOTO for AWS actions. You can install the CLI with the following command:
11+
The current working version is cfncluster-0.0.14. The CLI is written in python and uses BOTO for AWS actions. You can install the CLI with the following command:
1212

1313
#### Linux/OSX
1414

@@ -61,18 +61,12 @@ Starting: mycluster
6161
Default config /home/ec2-user/.cfncluster/config not found
6262
You can copy a template from here: /usr/lib/python2.6/site-packages/cfncluster/examples/config
6363
$
64-
$ mkdir ~/.cfncluster
6564
$ cp /usr/lib/python2.6/site-packages/cfncluster/examples/config ~/.cfncluster
6665
```
6766

6867
You should now edit the config and set some defaults before launching the cluster. First define a keypair that already exists in EC2. If you do not already have a keypair, refer to the EC2 documentation on EC2 Key Pairs - http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html
6968

70-
```
71-
[keypair mykey]
72-
key_location = /path/to/key.pem
73-
````
74-
75-
Then you should associate that keypair with the cluster template.
69+
Then you should associate your choosen keypair with the cluster template.
7670
````
7771
[cluster default]
7872
# Name of an existing EC2 KeyPair to enable SSH access to the instances.

amis.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
us-west-2 ami-7f8ece4f
2-
eu-west-1 ami-22953255
3-
sa-east-1 ami-2962c834
4-
us-east-1 ami-1a69c072
5-
ap-northeast-1 ami-8f012e8e
6-
us-west-1 ami-79afa63c
7-
ap-southeast-1 ami-44ecc816
8-
ap-southeast-2 ami-814526bb
1+
us-west-2 ami-2199d511
2+
eu-west-1 ami-7eca6609
3+
sa-east-1 ami-91de6a8c
4+
us-east-1 ami-6e71c806
5+
ap-northeast-1 ami-299cab28
6+
us-west-1 ami-05848e40
7+
ap-southeast-1 ami-5cac8a0e
8+
ap-southeast-2 ami-9b6f02a1

cli/README

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ cfncluster is an example framework for launching clusters.
1515
status pull the current status of the cluster
1616
list display a list of stacks associated with cfncluster
1717
instances display a list of all instances in a cluster
18-
sshmaster ssh to Master instance
1918

2019
optional arguments:
2120
-h, --help show this help message and exit

cli/cfncluster/examples/config

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ key_name = mykey
2525
# Override path to cloudformation in S3
2626
# (defaults to https://s3.amazonaws.com/cfncluster-<aws_region_name>/templates/cfncluster-<version>.cfn.json)
2727
#template_url = https://s3.amazonaws.com/cfncluster-us-east-1/templates/cfncluster.cfn.json
28-
# Cluster user
29-
# (defaults to ec2-user for the default template)
30-
#cluster_user = ec2-user
3128
# Cluster Server EC2 instance type
3229
# (defaults to t2.micro for default template)
3330
#compute_instance_type = t2.micro

cloudformation/cfncluster.cfn.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)