Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/svilgelm/openstack-ansible-on-vagrant
- Owner: SVilgelm
- License: apache-2.0
- Created: 2017-04-06T21:55:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T17:22:25.000Z (over 7 years ago)
- Last Synced: 2024-12-24T08:16:14.860Z (11 days ago)
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```