class Bosh::Stemcell::Infrastructure::Aws

Public Class Methods

new() click to toggle source
# File lib/bosh/stemcell/infrastructure.rb, line 91
def initialize
  super(
    name: 'aws',
    hypervisor: 'xen',
    supports_light_stemcell: true,
    default_disk_size: 3072,
    disk_formats: ['raw']
  )
end

Public Instance Methods

additional_cloud_properties() click to toggle source
# File lib/bosh/stemcell/infrastructure.rb, line 101
def additional_cloud_properties
  {'root_device_name' => '/dev/sda1'}
end