添加其他磁盘时,Chef Kitchen Vagrant框无法启动

时间:2018-05-14 22:02:10

标签: vagrant chef virtual-machine virtualbox test-kitchen

Mac OSX上正在进行开发

根据未分区,装载或格式化的驱动器编写菜谱以分区,格式化,安装驱动器,可能已从单驱动器raid-0配置中取出,或者尚未通过raid控制器配置...

在为cookbook编写测试用例时。我有以下问题。

.kitchen.yml文件:

driver:
  name: vagrant
  # ssh:
  #   insert_key: false
  customize:
    cableconnected1: 'on'
      createhd:
      - filename: /tmp/disk1.vdi
        size: 128
    storagectl:
      - name: SATA Controller
        portcount: 4
    storageattach:
      - storagectl: SATA Controller
        port: 0
        device: 0
        type: hdd
        medium: /tmp/disk1.vdi
  privileged: true

命令:kitchen verify

陷入以下

输出:

    -----> Starting Kitchen (v1.20.0)
    $$$$$$ Deprecated configuration detected:
    require_chef_omnibus
    Run 'kitchen doctor' for details.

    -----> Creating <default-centos-7>...
    (erb):173: warning: constant ::Fixnum is deprecated
    Bringing machine 'default' up with 'virtualbox' provider...
    ==> default: Importing base box 'bento/centos-7'...
    ==> default: Matching MAC address for NAT networking...
    ==> default: Checking if box 'bento/centos-7' is up to date...
    ==> default: Setting the name of the VM: default-centos- 
    7_default_1526333511693_18382
    ==> default: Fixed port collision for 22 => 2222. Now on port 2200.
    ==> default: Clearing any previously set network interfaces...
    ==> default: Preparing network interfaces based on configuration...
        default: Adapter 1: nat
    ==> default: Forwarding ports...
        default: 22 (guest) => 2200 (host) (adapter 1)
    ==> default: Running 'pre-boot' VM customizations...
    ==> default: Booting VM...
    ==> default: Waiting for machine to boot. This may take a few 
    minutes...
       default: SSH address: 127.0.0.1:2200
       default: SSH username: vagrant
       default: SSH auth method: private key
       Timed out while waiting for the machine to boot. This means that
   Vagrant was unable to communicate with the guest machine within
   the configured ("config.vm.boot_timeout" value) time period.

   If you look above, you should be able to see the error(s) that
   Vagrant had when attempting to connect to the machine. These errors
   are usually good hints as to what may be wrong.

   If you're using a custom box, make sure that networking is properly
   working and you're able to connect to the machine. It is a common
   problem that networking isn't setup properly in these boxes.
   Verify that authentication configurations are also setup properly,
   as well.

   If the box appears to be booting properly, you may want to increase
   the timeout ("config.vm.boot_timeout") value.

不会继续进行。添加磁盘代码直接来自kitchen-vagrant文​​档以添加磁盘。 我可以删除createhd,storagectl和&amp; storageattach部分,此时流浪盒按预期工作。 我已经验证了/tmp/disk1.vdi文件已创建,我还必须在运行之间删除文件,在厨房销毁之后我得到以下错误:

    -----> Starting Kitchen (v1.20.0)
    $$$$$$ Deprecated configuration detected:
    require_chef_omnibus
    Run 'kitchen doctor' for details.

    -----> Creating <default-centos-7>...
    (erb):173: warning: constant ::Fixnum is deprecated
    Bringing machine 'default' up with 'virtualbox' provider...
    ==> default: Checking if box 'bento/centos-7' is up to date...
    ==> default: Machine not provisioned because `--no-provision` is 
    specified.
    Waiting for SSH service on 127.0.0.1:2200, retrying in 3 seconds

它将继续无限期地卡在retying in 3 seconds上,直到我逃脱命令。

我曾尝试过和不使用过:

    ssh: 
      insert_key: false

我尝试过不同格式的文件,流浪者应该支持作为磁盘,包括.vdi, .vmdk

我确保SATA Controller是适用于该框的适当控制器。

1 个答案:

答案 0 :(得分:0)

这似乎是vagrant和virtualbox版本的问题。您可以找到类似的问题here