This document provides the steps to create a quick setup on a local Mac OS or Linux host using a cluster of Virtual Box VMs setup using vagrant.
- Install Virtual Box 5.1.14 or later
- Install Vagrant 1.9.1 or later
- Install Docker 1.12 or later
- Clone the Contiv install repository
`git clone http://github.com/contiv/install'
make demo-k8s
make demo-swarm
- The default configuration creates a 2 node cluster. To increase the number of nodes set the environment variable
CONTIV_NODES=<n>
- Setup the pre-requisites as follows and follow the demo instructions above
wget https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.rpm
wget http://download.virtualbox.org/virtualbox/5.1.14/VirtualBox-5.1-5.1.14_112924_el7-1.x86_64.rpm
sudo yum install VirtualBox-5.1-5.1.14_112924_el7-1.x86_64.rpm -y
sudo yum install vagrant_1.9.1_x86_64.rpm -y
sudo yum install docker -y
sudo systemctl start docker
git clone http://github.com/contiv/install