From 78b05d0ffc133f9fcd1790ee00a96d65e885f458 Mon Sep 17 00:00:00 2001
From: 190ikp <ikp190@outlook.com>
Date: Fri, 1 Apr 2022 02:51:01 +0900
Subject: [PATCH] fix disk controller type in Vagrantfile (#8656)

---
 Vagrantfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Vagrantfile b/Vagrantfile
index 1653e76a9..e483ffc65 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -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
-- 
GitLab