OpenStack Glance Puppet Module
Go to file
Dan Bode 879dfa3a8e switch single.pp to site.pp
in example directory
2012-10-31 16:02:34 -07:00
examples switch single.pp to site.pp 2012-10-31 16:02:34 -07:00
ext Update script for loading glance images 2012-04-10 17:09:04 -07:00
lib/puppet Properly load parent provider from another module 2012-10-10 12:59:45 -07:00
manifests remove auth_url param 2012-10-31 10:39:12 -07:00
spec remove auth_url param 2012-10-31 10:39:12 -07:00
tests switch log_verbose,log_debug to debug,verbose 2012-10-14 00:21:14 -07:00
.fixtures.yml Add create_resource to fixures 2012-10-26 12:14:48 -07:00
.gemfile Switch to using the puppetlabs_spec_helper gem for common files instead of duplicating code 2012-05-31 15:33:11 -07:00
.gitignore add gitignore 2012-10-14 12:37:06 -07:00
.travis.yml Add more branches 2012-10-23 11:38:01 -07:00
CHANGELOG Release 0.2.0 2012-10-08 13:38:21 -07:00
LICENSE Add Apache LICENSE FILE 2012-08-23 14:57:14 -07:00
Modulefile Release 0.2.0 2012-10-08 13:38:21 -07:00
README.markdown (#14221) Cleanup the readme a bit 2012-05-04 12:25:38 -07:00
Rakefile Switch to using the puppetlabs_spec_helper gem for common files instead of duplicating code 2012-05-31 15:33:11 -07: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)
  • Ubuntu 12.04 (Precise)

Quick Start

The below example 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': }

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

  class { 'glance::api':
    registry_port = '9393',
  }
}