Change default box for VMware platforms

Begin the process of phasing out my personal Vagrant boxes in favor of better-maintained boxes. This involves changes to machines.yml and README.md for many projects in this repo.

Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
This commit is contained in:
Scott S. Lowe 2016-11-26 00:00:19 -07:00
parent 26b9091be6
commit 23ad41fdee
3 changed files with 6 additions and 6 deletions

View file

@ -16,9 +16,9 @@ These files were created to allow users to use Vagrant ([http://www.vagrantup.co
These instructions assume you've already installed your virtualization provider (VMware Fusion/Workstation or VirtualBox), Vagrant, and any necessary plugins (such as the Vagrant VMware plugin). Please refer to the documentation for those products for more information on installation or configuration.
1. Use `vagrant box add` to add an Ubuntu 14.04 base box to be used by this `Vagrantfile`. If you are using a VMware virtualization provider, you can use my base box ("slowe/ubuntu-trusty-x64"; it should work with either VMware Workstation or VMware Fusion but has only been tested on Fusion).
1. Use `vagrant box add` to add an Ubuntu 14.04 base box to be used by this `Vagrantfile`. The "bento" box for Ubuntu 14.04 ("bento/ubuntu-14.04") offers support for both VirtualBox and VMware Fusion/Workstation.
2. If you are using a box other than my Ubuntu 14.04 base box, or if you want to change the default amount of RAM or number of vCPUs assigned to the VM, edit the `machines.yml` file and make the desired changes.
2. Edit the `machines.yml` file to specify the Vagrant box you added in step 1. You can also edit this file to change the amount of RAM allocated or the number of virtual CPUs assigned.
3. Run `vagrant up`, and when the VM is up use `vagrant ssh` to access the generic Ubuntu 14.04 installation.

View file

@ -1,7 +1,7 @@
---
- name: "trusty"
box:
vmw: "slowe/ubuntu-trusty-x64"
vmw: "bento/ubuntu-14.04"
vb: "ubuntu/trusty64"
ram: "1024"
vcpu: "1"

View file

@ -1,7 +1,7 @@
[
{
"name": "jessie",
"vmw_box": "slowe/debian-81-x64",
"vmw_box": "bento/debian-8.6",
"vb_box": "debian/jessie64",
"ram": 512,
"vcpu": 1,
@ -11,7 +11,7 @@
{
"name": "trusty",
"vmw_box": "slowe/ubuntu-trusty-x64",
"vmw_box": "bento/ubuntu-14.04",
"vb_box": "ubuntu/trusty64",
"ram": 512,
"vcpu": 1,
@ -21,7 +21,7 @@
{
"name": "precise",
"vmw_box": "slowe/ubuntu-precise-x64",
"vmw_box": "bento/ubuntu-12.04",
"vb_box": "ubuntu/precise64",
"ram": 512,
"vcpu": 1,