Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/svilgelm/openstack-ansible-on-vagrant

Vagrantfile for deploying OpenStack clouds using openstack-ansible
https://github.com/svilgelm/openstack-ansible-on-vagrant

Last synced: 4 days ago
JSON representation

Vagrantfile for deploying OpenStack clouds using openstack-ansible

Awesome Lists containing this project

README

        

# openstack-ansible-on-vagrant
Vagrantfile for deploying OpenStack clouds using openstack-ansible

# Usage
***All in one***

```
$ vagrant status
Current machine states:

icehouse-ansible not created (virtualbox)
icehouse-controller not created (virtualbox)
newton-ansible not created (virtualbox)
newton-controller not created (virtualbox)

$ vagrant up icehouse-controller icehouse-ansible
```

***HA***

```
$ export COMPUTE_COUNT=5
$ export CONTROLLER_COUNT=3
$ vagrant status
Current machine states:

icehouse-ansible not created (virtualbox)
icehouse-controller-1 not created (virtualbox)
icehouse-controller-2 not created (virtualbox)
icehouse-controller-3 not created (virtualbox)
icehouse-compute-1 not created (virtualbox)
icehouse-compute-2 not created (virtualbox)
icehouse-compute-3 not created (virtualbox)
icehouse-compute-4 not created (virtualbox)
icehouse-compute-5 not created (virtualbox)
newton-ansible not created (virtualbox)
newton-controller-1 not created (virtualbox)
newton-controller-2 not created (virtualbox)
newton-controller-3 not created (virtualbox)
newton-compute-1 not created (virtualbox)
newton-compute-2 not created (virtualbox)
newton-compute-3 not created (virtualbox)
newton-compute-4 not created (virtualbox)
newton-compute-5 not created (virtualbox)

$ vagrant up icehouse-controller-1 icehouse-controller-2 icehouse-controller-3 icehouse-compute-1 icehouse-compute-2 icehouse-compute-3 icehouse-compute-4 icehouse-compute-5 icehouse-ansible
```