Add README

This commit is contained in:
Dan Bode 2012-01-11 11:41:43 -08:00
parent c273426619
commit 9879e760a7
1 changed files with 26 additions and 0 deletions

26
README.markdown Normal file
View File

@ -0,0 +1,26 @@
# PuppetLabs Glance module #
This module provides a set of manifests that can be
used to install and configure glance.
# Platforms #
Ubuntu 11.04 (Natty)
# 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',
}
}