OpenStack Keystone Puppet Module
Go to file
Dan Bode d15b23091d Release 1.0.1 2012-11-02 12:29:58 -07:00
examples edit example manifest 2012-10-31 15:00:44 -07:00
ext Add test code 2012-03-29 14:41:57 -07:00
lib/puppet Merge pull request #95 from derekhiggins/endpoint-list-change 2012-11-01 11:06:29 -07:00
manifests Updates modules documentation. 2012-10-31 12:34:22 -07:00
spec update rspec tests 2012-10-26 11:20:29 -07:00
templates/client remove more unused files 2012-10-23 15:32:39 -07:00
.fixtures.yml Add create_resource as a dep 2012-10-26 12:06:08 -07:00
.gemfile Update module for the puppetlabs_spec_helper gem 2012-05-31 16:55:33 -07:00
.gitignore added pkg to .gitignore 2012-11-02 12:28:28 -07:00
.travis.yml Add travis file 2012-10-23 11:41:43 -07:00
CHANGELOG Release 1.0.0 2012-11-02 12:11:02 -07:00
LICENSE Added explicit license 2012-08-23 15:00:52 -07:00
Modulefile Release 1.0.1 2012-11-02 12:29:58 -07:00
README.markdown mention the module is targetting folsom. 2012-10-31 12:36:13 -07:00
Rakefile Update module for the puppetlabs_spec_helper gem 2012-05-31 16:55:33 -07:00

README.markdown

Overview

Keystone is the Identity service for OpenStack.

This modules contains classes and native types that install and configure keystone.

This version of the module is targetted at Folsom.

Tested use cases

This module has been tested against the dev version of Ubuntu Precise.

It has only currently been tested as a single node installation of keystone.

It is currently targetting essex support and is being actively developed against packaging that are built off of trunk.

Dependencies:

This module has relatively few dependencies:

if using mysql as a backend

https://github.com/puppetlabs/puppetlabs-mysql

Usage

class keystone

The keystone class sets up the basic configuration for the keystone service.

for example:

class { 'keystone':
  admin_token => 'my_secret_token'
  verbose     => 'True',
}

setting up a keystone mysql db

A keystone mysql database can be configured separately from the service.

If you need to actually install a mysql database server, you can use the mysql::server class from the puppetlabs mysql module

# check out the mysql module's README to learn more about
# how to more appropriately configure a server
# http://forge.puppetlabs.com/puppetlabs/mysql
class { 'mysql::server': }

class { 'keystone::mysql':
  dbname   => 'keystone',
  user     => 'keystone',
  password => 'keystone_password',
}

setting up a keystone postgresql db

A keystone postgresql database can be configured separately from the service instead of mysql.

Use puppetlab's postgresql module to install postgresql. http://forge.puppetlabs.com/puppetlabs/postgresql

class { 'postgresql::server': }

class { 'keystone::postgresql': dbname => 'keystone', user => 'keystone', password => 'keystone_password', }

Install keystone role

The following class adds admin credentials to keystone.

class { 'keystone::roles::admin': email => 'you@your_domain.com', password => 'password', admin_tenant => 'admin_tenant', }

Install service user and endpoint

The following class installs the keystone service user and endpoints.

class { 'keystone::endpoint': public_address => '212.234.21.4', admin_address => '10.0.0.4', internal_address => '11.0.1.4', region => 'RegionTwo', }

Examples

Examples can be located in the examples directory of this modules. The node keystone_mysql is the most common deployment style.

The keystone deployment description that I use for testing can be found here:

https://github.com/puppetlabs/puppetlabs-openstack_dev_env/tree/master/manifests

Native Types

The Puppet support for keystone also includes native types that can be used to manage the following keystone objects:

- keystone_tenant
- keystone_user
- keystone_role
- keystone_user_role
- keystone_service
- keystone_endpoint

These types will only work on the keystone server (and they read keystone.conf to figure out the admin port and admin token, which is kind of hacky, but the best way I could think of.)

- keystone_config - manages individual config file entries as resources.

examples

keystone_tenant { 'openstack':
  ensure  => present,
  enabled => 'True',
}
keystone_user { 'openstack':
  ensure  => present,
  enabled => 'True'
}
keystone_role { 'admin':
  ensure => present,
}
keystone_user_role { 'admin@openstack':
  roles => ['admin', 'superawesomedue'],
  ensure => present
}

The keystone_config native type allows you to arbitrarily modify any config line from any scope in Puppet.

keystone_config { '':

}

puppet resource

These native types also allow for some interesting introspection using puppet resource

To list all of the objects of a certain type in the keystone database, you can run:

puppet resource

For example, the following command lists all keystone tenants when run on the keystone server:

puppet resource keystone_tenant