OpenStack Glance Puppet Module
Go to file
Dan Bode 52cbb6f59b Make repo setup code Debian specific
Ensure that repo setup code is only performed
when the osfamily is debian.
2012-04-11 17:20:17 -07:00
examples Make repo setup code Debian specific 2012-04-11 17:20:17 -07:00
ext Update script for loading glance images 2012-04-10 17:09:04 -07:00
manifests Update glance service definitions 2012-04-10 09:25:51 -07:00
spec Fix broken tests 2012-04-03 10:03:08 -07:00
templates Refactor api-ini config files 2012-04-05 09:28:55 -07:00
tests Modify class parameters, templates and tests for logging options avoiding use of 'debug' 2011-06-21 12:19:20 -07:00
README.markdown Update the README 2012-03-13 15:23:29 -07:00
Rakefile (#11692) Add unit tests 2012-01-03 11:27:43 -08:00
TODO Add test script 2012-03-29 16:45:40 -07:00

README.markdown

PuppetLabs Glance module

This module provides a set of manifests that can be used to install and configure glance.

It is currently targettting the essex release of OpenStack.

For Daiblo support, use the Diablo branch.

Platforms

Ubuntu 11.04 (Natty) Ubuntu 11.10 (Oneiric)

Quick Start

The below examples shows how the classes from this module can be declared in site.pp to install both the glance registry and api services on a node identified as glance.

In the below example, the default port for the registy service has been overridden from its default value of 9191.

node glance { class { 'glance::registry': bind_port => '9393', } class { 'glance::api': registry_port = '9393', } }