Skip to content

Commit ff24d62

Browse files
Gabriel Monroycarmstrong
authored andcommitted
fix(ec2): add explicit 100GB root volume
By default the m3 instances (of all types) use an 8GB root volume. The SSD volume is unused and located at /dev/xvdb. This PR changes the 8GB root volume to 100GB, providing enough storage for a basic Deis cluster. fixes #882
1 parent df58361 commit ff24d62

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

contrib/ec2/deis.template

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,13 @@
159159
"InstanceType": {"Ref": "InstanceType"},
160160
"KeyName": {"Ref": "KeyPair"},
161161
"SecurityGroups": [{"Ref": "CoreOSSecurityGroup"}, {"Ref": "DeisSecurityGroup"}],
162-
"UserData" : { "Fn::Base64": { "Fn::Join": [ "", [ ] ] }
163-
}
162+
"UserData" : { "Fn::Base64": { "Fn::Join": [ "", [ ] ] } },
163+
"BlockDeviceMappings" : [
164+
{
165+
"DeviceName" : "/dev/sda",
166+
"Ebs" : { "VolumeSize" : "100" }
167+
}
168+
]
164169
}
165170
}
166171
}

0 commit comments

Comments
 (0)