Skip to content

Commit 9a62a85

Browse files
author
Dougal Ballantyne
committed
Updated EBS volumes types
1 parent 6577d5d commit 9a62a85

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

cli/cfncluster/examples/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ availability_zones =
107107
# (defaults to NONE for default template)
108108
#ebs_snapshot_id = snap-
109109
# Type of volume to create either new or from snapshot
110-
# (defaults to standard for default template)
110+
# (defaults to gp2 for default template)
111111
#volume_type = io1
112112
# Size of volume to be created if not using a snapshot
113113
# (defaults to 100GB for default template)

cli/setup.py

Lines changed: 2 additions & 2 deletions
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 = "0.0.5"
23+
version = "0.0.6"
2424

2525
setup(
2626
name = "cfncluster",
@@ -31,7 +31,7 @@ def read(fname):
3131
url = ("https://github.com/awslabs/cfncluster"),
3232
license = "Amazon Software License",
3333
packages = find_packages(),
34-
install_requires=['boto >= 2.28.0', 'paramiko >= 1.14'],
34+
install_requires=['boto >= 2.28.0', 'paramiko >= 1.14.0'],
3535
entry_points=dict(console_scripts=console_scripts),
3636
include_package_data = True,
3737
zip_safe = False,

cloudformation/cfncluster.cfn.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,11 @@
164164
"VolumeType" : {
165165
"Description" : "Type of volume to create either new or from snapshot",
166166
"Type" : "String",
167-
"Default" : "standard",
168-
"ConstraintDescription" : "must be a supported volume type: standard, io1",
167+
"Default" : "gp2",
168+
"ConstraintDescription" : "must be a supported volume type: standard, io1, gp2",
169169
"AllowedValues" : [
170170
"standard",
171+
"gp2",
171172
"io1"
172173
]
173174
},

0 commit comments

Comments
 (0)