Skip to content

Using Latest Master Plugin

ADiLet edited this page May 18, 2018 · 34 revisions

Download and Install Plugin

You first have to download and install the plugin:

1. Download here

2. Install plugin:

vagrant plugin install /path/downloaded/plugin

Launching a Peer

This plugin works with the master branch boxes so you'll need to use those box names which have the -master suffix:

  • subutai/stretch-master

You can use them with the following providers:

  • virtualbox
  • libvirt
  • vmware-desktop
  • vmware-fusion
  • parallels
  • hyperv

WARNING: These boxes and the plugin will not use the MASTER staging environment by default. They will still use production, in which case they might malfunction. To use the MASTER staging environment you must make sure to set the SUBUTAI_ENV parameter to master.

First initialize your Vagrantfile, then bring up the box for the default virtualbox provider:

vagrant init --minimal subutai/stretch-master
SUBUTAI_ENV=master vagrant up

If you want to use another provider just add the provider switch like below for libvirt. Be aware that each provider requires its own installation and configuration in advance:

vagrant init --minimal subutai/stretch-master
SUBUTAI_ENV=master vagrant up --provider libvirt
Clone this wiki locally