Class: Bosh::Stemcell::Infrastructure::Google
- Defined in:
- lib/bosh/stemcell/infrastructure.rb
Instance Attribute Summary
Attributes inherited from Base
#default_disk_size, #disk_formats, #hypervisor, #name
Instance Method Summary collapse
- #additional_cloud_properties ⇒ Object
-
#initialize ⇒ Google
constructor
A new instance of Google.
Methods inherited from Base
Constructor Details
#initialize ⇒ Google
Returns a new instance of Google.
107 108 109 |
# File 'lib/bosh/stemcell/infrastructure.rb', line 107 def initialize super(name: 'google', hypervisor: 'kvm', default_disk_size: 3072, disk_formats: ['rawdisk']) end |
Instance Method Details
#additional_cloud_properties ⇒ Object
111 112 113 |
# File 'lib/bosh/stemcell/infrastructure.rb', line 111 def additional_cloud_properties {'root_device_name' => '/dev/sda1'} end |