无法使用 Bosh-lite 在 vagrant 上设置 Cloud Foundry

Failed to setup Cloud Foundry on vagrant with Bosh-lite

我正在尝试在我的本地计算机上设置 Cloud Foundry,当我尝试安装 bosh-lite 时出现以下错误:

$ git clone https://github.com/cloudfoundry/bosh-lite
$ cd bosh-lite
$ vagrant up --provider=virtualbox
Bringing machine 'default' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:

vm:
* The following settings shouldn't exist: box_version
* The box 'cloudfoundry/bosh-lite' could not be found.

我试图在 Vagrant 文件中注释 override.vm.box_version 但是第一个错误消失了,它仍然找不到 'cloudfoundry/bosh-lite' 框!

这是我的机器设置信息:

$ uname -a
Linux ubuntu-server 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.1 LTS
Release:        14.04
Codename:       trusty
$ vagrant -v
Vagrant 1.4.3
$ VBoxManage -v
4.3.10_Ubuntur93012

您必须在您的机器上升级 Vagrant。 box_version feature was introduced in 1.5. Bosh Lite is known to work with Vagrant 1.6.3 (as it is stated in the Bosh Lite Readme)。