Skip to content

Instantly share code, notes, and snippets.

View venumurthy's full-sized avatar

Venu Murthy venumurthy

View GitHub Profile
@amotoki
amotoki / local.conf
Last active January 25, 2017 06:13
local.conf (minimum) for master branch (master: newton or later)
[[local|localrc]]
unset OS_CLOUD
#OFFLINE=True
RECLONE=True
#disable_service tempest
#disable_service horizon
enable_service heat h-api h-api-cfn h-api-cw h-eng
@amotoki
amotoki / local.conf
Last active March 22, 2018 16:46
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
@kopparam
kopparam / simple_server.yaml
Last active August 29, 2015 14:04
Simple Heat template (HOT)
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:
@nathenharvey
nathenharvey / vhosts.rb
Last active May 31, 2016 16:41
vhosts recipe for one-day Introduction to Chef workshop
data_bag("vhosts").each do |site|
site_data = data_bag_item("vhosts", site)
site_name = site_data["id"]
document_root = "/srv/apache/#{site_name}"
template "/etc/httpd/conf.d/#{site_name}.conf" do
source "custom-vhosts.erb"
mode "0644"
variables(
:document_root => document_root,