Go to file
Dan Bode db270cfe0e Merge pull request #61 from puppetlabs/master
merge folsom changes from master
2012-11-13 23:49:48 -08:00
2012-10-31 16:02:34 -07:00
2012-10-31 16:03:43 -07:00
2012-10-31 16:03:06 -07:00
2012-10-31 10:39:12 -07:00
2012-10-26 12:14:48 -07:00
2012-10-14 12:37:06 -07:00
2012-10-23 11:38:01 -07:00
2012-11-02 12:38:15 -07:00
2012-08-23 14:57:14 -07:00
2012-11-02 12:38:15 -07:00
2012-10-31 16:03:06 -07:00
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 folsom release of OpenStack.

Use the essex branch for essex support.

Platforms

  • Ubuntu 11.04 (Natty)
  • Ubuntu 11.10 (Oneiric)
  • Ubuntu 12.04 (Precise)

configurations

Glance is configured with the following classes:

#configures glance::api service

class { 'glance::api': verbose => $verbose, debug => $verbose, auth_type => 'keystone', auth_port => '35357', auth_host => $keystone_host, keystone_tenant => 'services', keystone_user => 'glance', keystone_password => $glance_user_password, sql_connection => $sql_connection, enabled => $enabled, }

configures the glance registry

class { 'glance::registry': verbose => $verbose, debug => $verbose, auth_host => $keystone_host, auth_port => '35357', auth_type => 'keystone', keystone_tenant => 'services', keystone_user => 'glance', keystone_password => $glance_user_password, sql_connection => $sql_connection, enabled => $enabled, }

Configure file storage backend

class { 'glance::backend::file': }

Create the Glance db, this should be configured on your mysql server

class { 'glance::db::mysql': user => $glance_db_user, password => $glance_db_password, dbname => $glance_db_dbname, allowed_hosts => $allowed_hosts, }

configures glance endpoints in keystone

should be run on your keystone server

class { 'glance::keystone::auth': password => $glance_user_password, public_address => $glance_public_real, admin_address => $glance_admin_real, internal_address => $glance_internal_real, region => $region, }

for full examples, see the examples directory.

in the module, puppetlabs-openstack, the following classes configure parts of glance:

  • openstack::glance # api, file backend, and registry
  • openstack::keystone # sets up endpoints
  • openstack::db::mysql # sets up db config
Description
OpenStack Glance Puppet Module
Readme 14 MiB
Languages
Ruby 59.3%
Puppet 38.1%
Python 1.8%
Pascal 0.8%