5b9f85d715
The project infrastructure is now hosted at opendev.org. Kayobe projects have been moved from the openstack/ namespace to x/. Change-Id: I16b523285eb34c1cd0eaf920aa4512d0ae1b4f05
59 lines
1.4 KiB
ReStructuredText
59 lines
1.4 KiB
ReStructuredText
.. _development-vagrant:
|
|
|
|
=======
|
|
Vagrant
|
|
=======
|
|
|
|
Kayobe provides a Vagrantfile that can be used to bring up a virtual machine
|
|
for use as a development environment. The VM is based on the `stackhpc/centos-7
|
|
<https://app.vagrantup.com/stackhpc/boxes/centos-7>`_ CentOS 7 image, and
|
|
supports the following providers:
|
|
|
|
* VirtualBox
|
|
* VMWare Fusion
|
|
|
|
The VM is configured with 4GB RAM. It has a single private network in addition
|
|
to the standard Vagrant NAT network.
|
|
|
|
Preparation
|
|
===========
|
|
|
|
First, ensure that Vagrant is installed and correctly configured to use
|
|
the required provider. Also install the following vagrant plugin::
|
|
|
|
vagrant plugin install vagrant-reload
|
|
|
|
If using the VirtualBox provider, install the following vagrant plugin::
|
|
|
|
vagrant plugin install vagrant-vbguest
|
|
|
|
Note: if using Ubuntu 16.04 LTS, you may be unable to install any plugins. To
|
|
work around this install the upstream version from www.virtualbox.org.
|
|
|
|
Usage
|
|
=====
|
|
|
|
Later sections in the development guide cover in more detail how to use the
|
|
development VM in different configurations. These steps cover bringing up and
|
|
accessing the VM.
|
|
|
|
Clone the kayobe repository::
|
|
|
|
git clone https://opendev.org/x/kayobe.git
|
|
|
|
Change the current directory to the kayobe repository::
|
|
|
|
cd kayobe
|
|
|
|
Inspect kayobe's ``Vagrantfile``, noting the provisioning steps::
|
|
|
|
less Vagrantfile
|
|
|
|
Bring up a virtual machine::
|
|
|
|
vagrant up
|
|
|
|
Wait for the VM to boot, then SSH in::
|
|
|
|
vagrant ssh
|