From 1328fe4e23ce34c8cbaf6a7b7f54ae0d97ac3f30 Mon Sep 17 00:00:00 2001 From: Jason Werry Date: Tue, 25 Aug 2020 18:08:27 +1000 Subject: [PATCH] Update _index.md Not being familiar with Vagrant I had trouble with missing plugins and with Vagrant using the libvert provider as a default. Hopefully these changes will help people get going with Rancher more smoothly. --- .../deployment/quickstart-vagrant/_index.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/rancher/v2.x/en/quick-start-guide/deployment/quickstart-vagrant/_index.md b/content/rancher/v2.x/en/quick-start-guide/deployment/quickstart-vagrant/_index.md index bf8db298c3c..ea28bf2c32e 100644 --- a/content/rancher/v2.x/en/quick-start-guide/deployment/quickstart-vagrant/_index.md +++ b/content/rancher/v2.x/en/quick-start-guide/deployment/quickstart-vagrant/_index.md @@ -10,6 +10,13 @@ The following steps quickly deploy a Rancher Server with a single node cluster a - [Virtualbox](https://www.virtualbox.org): The virtual machines that Vagrant provisions need to be provisioned to VirtualBox. - At least 4GB of free RAM. +### Note +- Vagrant will require plugins to create VirtualBox VMs. Install them with the following commands: + + `vagrant plugin install vagrant-vboxmanage` + + `vagrant plugin install vagrant-vbguest` + ## Getting Started 1. Clone [Rancher Quickstart](https://github.com/rancher/quickstart) to a folder using `git clone https://github.com/rancher/quickstart`. @@ -21,7 +28,7 @@ The following steps quickly deploy a Rancher Server with a single node cluster a - Change the number of nodes and the memory allocations, if required. (`node.count`, `node.cpus`, `node.memory`) - Change the password of the `admin` user for logging into Rancher. (`default_password`) -4. To initiate the creation of the environment run, `vagrant up`. +4. To initiate the creation of the environment run, `vagrant up --provider=virtualbox`. 5. Once provisioning finishes, go to `https://172.22.101.101` in the browser. The default user/password is `admin/admin`.