Skip to content

Instantly share code, notes, and snippets.

View venumurthy's full-sized avatar

Venu Murthy venumurthy

View GitHub Profile
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:
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:
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
@venumurthy
venumurthy / local.conf
Created June 27, 2016 15:46 — forked from amotoki/local.conf
local.conf (minimum) for master branch
[[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
@venumurthy
venumurthy / local.conf
Created June 27, 2016 11:36 — forked from amotoki/local.conf
local.conf (Mitaka) - Almost all services are enabled with Neutron
[[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