Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Merge pull request #309 from cloudfoundry-community/m3
Browse files Browse the repository at this point in the history
upgrade to m3
  • Loading branch information
lnguyen committed Apr 28, 2015
2 parents 605597c + e215616 commit d607576
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
1 change: 1 addition & 0 deletions bosh-bootstrap.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ EOS
gem.add_dependency "bosh_cli_plugin_micro"
gem.add_dependency "cyoi", "~> 0.11.3"
gem.add_dependency "fog", "~> 1.11"
gem.add_dependency "fog-aws", "0.1.1"
gem.add_dependency "readwritesettings", "~> 3.0"
gem.add_dependency "thor", "~> 0.18"
gem.add_dependency "httpclient", '=2.4.0'
Expand Down
3 changes: 2 additions & 1 deletion lib/bosh-bootstrap/microbosh_providers/aws.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ def persistent_disk
end

def resources_cloud_properties
{"instance_type"=>"m1.medium"}
{"instance_type"=>"m3.medium",
"ephemeral_disk"=>{"size" => 163840, "type" => "gp2"}}
end

def cloud_properties
Expand Down
5 changes: 4 additions & 1 deletion spec/assets/microbosh_yml/micro_bosh.aws_ec2.us-west-2a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ network:
resources:
persistent_disk: 32768
cloud_properties:
instance_type: m1.medium
instance_type: m3.medium
ephemeral_disk:
size: 163840
type: gp2
availability_zone: us-west-2a
cloud:
plugin: aws
Expand Down
5 changes: 4 additions & 1 deletion spec/assets/microbosh_yml/micro_bosh.aws_ec2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ network:
resources:
persistent_disk: 32768
cloud_properties:
instance_type: m1.medium
instance_type: m3.medium
ephemeral_disk:
size: 163840
type: gp2
cloud:
plugin: aws
properties:
Expand Down
5 changes: 4 additions & 1 deletion spec/assets/microbosh_yml/micro_bosh.aws_vpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ network:
resources:
persistent_disk: 32768
cloud_properties:
instance_type: m1.medium
instance_type: m3.medium
ephemeral_disk:
size: 163840
type: gp2
cloud:
plugin: aws
properties:
Expand Down
5 changes: 4 additions & 1 deletion spec/assets/microbosh_yml/micro_bosh.aws_vpc_recursor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ network:
resources:
persistent_disk: 32768
cloud_properties:
instance_type: m1.medium
instance_type: m3.medium
ephemeral_disk:
size: 163840
type: gp2
cloud:
plugin: aws
properties:
Expand Down

0 comments on commit d607576

Please sign in to comment.