Skip to content

Commit 71b4451

Browse files
committed
Merge branch 'develop'
2 parents fab3f3d + cbc8dd3 commit 71b4451

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

amis.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ sa-east-1: ami-12b8347e
99
us-east-1: ami-a8535cc2
1010
us-west-1: ami-6ac2b00a
1111
us-west-2: ami-e5b25985
12+
us-gov-west-1: ami-cd14a8ac
1213
# centos7
1314
ap-northeast-1: ami-f284919c
1415
ap-northeast-2: ami-79a06917
@@ -20,6 +21,7 @@ sa-east-1: ami-20b63a4c
2021
us-east-1: ami-7c555a16
2122
us-west-1: ami-18d8aa78
2223
us-west-2: ami-148b6074
24+
us-gov-west-1: ami-eb15a98a
2325
# alinux
2426
ap-northeast-1: ami-5c839632
2527
ap-northeast-2: ami-85a069eb
@@ -31,6 +33,7 @@ sa-east-1: ami-24bf3348
3133
us-east-1: ami-1d585777
3234
us-west-1: ami-1dd8aa7d
3335
us-west-2: ami-5ab15a3a
36+
us-gov-west-1: ami-c016aaa1
3437
# ubuntu1404
3538
ap-northeast-1: ami-5d839633
3639
ap-northeast-2: ami-30a36a5e
@@ -42,3 +45,4 @@ sa-east-1: ami-97b73bfb
4245
us-east-1: ami-7a585710
4346
us-west-1: ami-0bdeac6b
4447
us-west-2: ami-f2bf5492
48+
us-gov-west-1: ami-ee15a98f

cloudformation/cfncluster.cfn.json

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,13 @@
165165
"Description" : "Type of volume to create either new or from snapshot",
166166
"Type" : "String",
167167
"Default" : "gp2",
168-
"ConstraintDescription" : "must be a supported volume type: standard, io1, gp2",
168+
"ConstraintDescription" : "must be a supported volume type: standard, io1, gp2, st1, sc1",
169169
"AllowedValues" : [
170170
"standard",
171171
"gp2",
172-
"io1"
172+
"io1",
173+
"st1",
174+
"sc1"
173175
]
174176
},
175177
"MasterSubnetId" : {
@@ -1052,10 +1054,10 @@
10521054
"ubuntu1404" : "ami-72945e11"
10531055
},
10541056
"us-gov-west-1" : {
1055-
"centos6" : "NA",
1056-
"centos7" : "NA",
1057-
"alinux" : "NA",
1058-
"ubuntu1404" : "NA"
1057+
"centos6" : "ami-cd14a8ac",
1058+
"centos7" : "ami-eb15a98a",
1059+
"alinux" : "ami-c016aaa1",
1060+
"ubuntu1404" : "ami-ee15a98f"
10591061
},
10601062
"ap-northeast-2" : {
10611063
"centos6" : "ami-0ea26b60",
@@ -1085,7 +1087,7 @@
10851087
"CfnClusterVersions" : {
10861088
"default" : {
10871089
"cfncluster" : "cfncluster-1.2.1",
1088-
"cookbook" : "cfncluster-cookbook-1.2.1",
1090+
"cookbook" : "cfncluster-cookbook-1.2.2",
10891091
"chef" : "12.8.1",
10901092
"ridley" : "4.5.0",
10911093
"berkshelf" : "4.3.0",
@@ -2042,11 +2044,6 @@
20422044
"MaxSize" : {
20432045
"Ref" : "MaxQueueSize"
20442046
},
2045-
"AvailabilityZones" : [
2046-
{
2047-
"Ref" : "AvailabilityZone"
2048-
}
2049-
],
20502047
"VPCZoneIdentifier" : [
20512048
{
20522049
"Fn::If" : [

docs/source/configuration.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,13 @@ base_os
285285
"""""""
286286
OS type used in the cluster
287287

288-
Defaults to alinux in the default template. Available options are: alinux, centos6, centos7, ubuntu1404::
288+
Defaults to alinux in the default template. Available options are: alinux, centos6, centos7, ubuntu1404
289+
290+
Note: The base_os determines the username used to log into the cluster.
291+
292+
* Centos 6 & 7: ``centos``
293+
* Ubuntu: ``ubuntu``
294+
* Amazon Linux: ``ec2-user`` ::
289295

290296
base_os = alinux
291297

0 commit comments

Comments
 (0)