fuel-library/deployment/puppet/glance
Dmitry Ilyin c991a844ca Fix notification driver and strategy values
To make glance ceilometer notifications to work.

Change-Id: I75e13e3cc5fdfad413b460323bb870de3565ff5a
Closes-Bug: 1314196
2014-06-26 13:38:02 +04:00
..
examples Add package providers and version lookup 2014-04-14 18:54:09 +04:00
ext Update script for loading glance images 2012-04-10 17:09:04 -07:00
lib/puppet move cinder_config and glance_api_config changes from ceph to cinder and glance modules 2013-10-07 09:58:06 -07:00
manifests Fix notification driver and strategy values 2014-06-26 13:38:02 +04:00
spec Use rabbitmq notifications for glance 2014-04-25 14:09:43 +03:00
tests Fix bool defaults for debug, verbose, use_syslog 2014-02-19 13:28:55 +02:00
.fixtures.yml Limit puppet-mysql module version from the top 2014-01-21 18:27:33 +02: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 Allow metadata.json 2013-01-10 15:18:41 +04:00
.project some syntax and minor fixes for puppet 3.0 comliance 2013-01-14 15:42:32 +04:00
.travis.yml Switch to using the puppetlabs_spec_helper gem for common files instead of duplicating code 2012-05-31 15:33:11 -07:00
CHANGELOG Update modulefile for initial release; add initial changelog 2012-06-07 14:03:55 -07:00
LICENSE Add Apache LICENSE FILE 2012-08-23 14:57:14 -07:00
Modulefile Limit puppet-mysql module version from the top 2014-01-21 18:27:33 +02: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
README.markdown (#14221) Cleanup the readme a bit 2012-05-04 12:25:38 -07:00
TODO Add test script 2012-03-29 16:45:40 -07:00

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',
  }
}