fix disk controller type in Vagrantfile (#8656)

This commit is contained in:
190ikp 2022-04-01 02:51:01 +09:00 committed by GitHub
parent 1c0df78278
commit 78b05d0ffc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Vagrantfile vendored
View file

@ -171,7 +171,7 @@ Vagrant.configure("2") do |config|
# always make /dev/sd{a/b/c} so that CI can ensure that
# virtualbox and libvirt will have the same devices to use for OSDs
(1..$kube_node_instances_with_disks_number).each do |d|
lv.storage :file, :device => "hd#{driverletters[d]}", :path => "disk-#{i}-#{d}-#{DISK_UUID}.disk", :size => $kube_node_instances_with_disks_size, :bus => "ide"
lv.storage :file, :device => "hd#{driverletters[d]}", :path => "disk-#{i}-#{d}-#{DISK_UUID}.disk", :size => $kube_node_instances_with_disks_size, :bus => "scsi"
end
end
end