Created
February 3, 2016 15:18
-
-
Save v1k0d3n/3ba6ccdae298c8f35217 to your computer and use it in GitHub Desktop.
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
#cloud-config | |
apt_mirror: http://mirror.rackspace.com/ubuntu/ | |
package_upgrade: true | |
packages: | |
- git-core | |
runcmd: | |
- export ANSIBLE_FORCE_COLOR=true | |
- export PYTHONUNBUFFERED=1 | |
- export REPO=https://github.com/openstack/openstack-ansible | |
- export BRANCH=liberty | |
- git clone -b ${BRANCH} ${REPO} /opt/openstack-ansible | |
- cd /opt/openstack-ansible && scripts/bootstrap-ansible.sh | |
- cd /opt/openstack-ansible && scripts/bootstrap-aio.sh | |
- cd /opt/openstack-ansible && scripts/run-playbooks.sh | |
output: { all: '| tee -a /var/log/cloud-init-output.log' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment