Last active
July 10, 2018 15:03
-
-
Save boxrick/f8128d9819fd781793b3a84369f5fe11 to your computer and use it in GitHub Desktop.
Openstack AIO quickstart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Quick and dirty AIO Openstack bash script | |
start=`date +%s` | |
git clone https://git.openstack.org/openstack/openstack-ansible /opt/openstack-ansible | |
cd /opt/openstack-ansible | |
git checkout stable/queens | |
scripts/bootstrap-ansible.sh | |
scripts/bootstrap-aio.sh | |
cd /opt/openstack-ansible | |
export SCENARIO='aio_lxc' | |
openstack-ansible setup-hosts.yml | |
openstack-ansible setup-infrastructure.yml | |
openstack-ansible setup-openstack.yml | |
end=`date +%s` | |
runtime=$((end-start)) | |
echo "Total time: ${runtime}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment