This file contains 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
[[local|localrc]] | |
#OFFLINE=True | |
RECLONE=True | |
#disable_service mysql | |
#enable_service postgresql | |
#disable_service cinder c-sch c-api c-vol | |
#disable_service tempest | |
#disable_service horizon |
This file contains 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
[[local|localrc]] | |
#OFFLINE=True | |
RECLONE=True | |
HORIZON_BRANCH=stable/mitaka | |
KEYSTONE_BRANCH=stable/mitaka | |
NOVA_BRANCH=stable/mitaka | |
NEUTRON_BRANCH=stable/mitaka | |
GLANCE_BRANCH=stable/mitaka | |
CINDER_BRANCH=stable/mitaka |
This file contains 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
sudo apt-get update && \ | |
sudo apt-get -y install git-core && \ | |
sudo apt-get -y install alien && \ | |
sudo apt-get -y install python-software-properties && \ | |
sudo add-apt-repository -y ppa:rquillo/ansible && \ | |
sudo apt-get update && \ | |
sudo apt-get -y install ansible && \ | |
sudo alien -i --scripts jdk-7u67-linux-x64.rpm && \ | |
((cd ansible-datawinners/ && git pull ) || (git clone https://github.com/mangroveorg/ansible-datawinners.git && cd ansible-datawinners/)) && \ | |
ansible-playbook dev.yml --sudo -K |
This file contains 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
heat_template_version: 2013-05-23 | |
description: > | |
Heat WordPress template to support F20, using only Heat OpenStack-native | |
resource types, and without the requirement for heat-cfntools in the image. | |
WordPress is web software you can use to create a beautiful website or blog. | |
This template installs a single-instance WordPress deployment using a local | |
MySQL database to store the data. | |
parameters: |
This file contains 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
heat_template_version: 2013-05-23 | |
description: Simple template to deploy a single compute instance | |
parameters: | |
key_name: | |
type: string | |
label: Key Name | |
description: Name of key-pair to be used for compute instance | |
image_id: |