fuel-library/deployment/puppet/keystone
Dmitry Ilyin 4b1a790959 Enable keystone wsgi support
* New task to deploy Apache and configure MPM
* Run keystone as Apache vhost
* Pull wsgi threads and priority configuration from upstream
  change-id: Ib05ac81381e169845b44b2ef7cb810a4d5db17de
* Pull custom file source for wsgi scripts from upstream
  change-id: I941bf8804982e9081812e076f7a736f413220047
* Fix for keystone spec tests (use concat 1.2.1 in fixtures)
* Use keystone.py wsgi script from packages instead of downloading
  it from puppet module. Requires deb package with this patch:
  https://review.fuel-infra.org/6251
  Until it's megred, we'll use upstream wsgi script for Debian

Change-Id: I85008079b0e922a4518c696a097238500132fa04
Closes-Bug: 1313662
2015-05-12 18:05:59 +03:00
..
examples Sync puppet-keystone 2014-10-30 16:45:31 +02:00
ext Sync puppet-keystone 2014-10-30 16:45:31 +02:00
files/httpd Enable keystone wsgi support 2015-05-12 18:05:59 +03:00
lib/puppet Merge "new option manage_password for keystone_user" 2014-12-10 15:07:41 +00:00
manifests Enable keystone wsgi support 2015-05-12 18:05:59 +03:00
spec Enable keystone wsgi support 2015-05-12 18:05:59 +03:00
tests Sync puppet-keystone 2014-10-30 16:45:31 +02:00
.fixtures.yml Enable keystone wsgi support 2015-05-12 18:05:59 +03:00
.gitignore Sync puppet-keystone 2014-10-30 16:45:31 +02:00
.gitreview Sync puppet-keystone 2014-10-30 16:45:31 +02:00
Gemfile Sync puppet-keystone 2014-10-30 16:45:31 +02:00
LICENSE Sync puppet-keystone 2014-10-30 16:45:31 +02:00
Modulefile Sync puppet-keystone 2014-10-30 16:45:31 +02:00
README.md Sync puppet-keystone 2014-10-30 16:45:31 +02:00
Rakefile Sync puppet-keystone 2014-10-30 16:45:31 +02:00

README.md

keystone

4.0.0 - 2014.1.0 - Icehouse

Table of Contents

  1. Overview - What is the keystone module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with keystone
  4. Implementation - An under-the-hood peek at what the module is doing
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module
  7. Contributors - Those with commits
  8. Release Notes - Notes on the most recent updates to the module

Overview

The keystone module is a part of Stackforge, an effort by the Openstack infrastructure team to provide continuous integration testing and code review for Openstack and Openstack community projects not part of the core software. The module its self is used to flexibly configure and manage the identify service for Openstack.

Module Description

The keystone module is a thorough attempt to make Puppet capable of managing the entirety of keystone. This includes manifests to provision region specific endpoint and database connections. Types are shipped as part of the keystone module to assist in manipulation of configuration files.

This module is tested in combination with other modules needed to build and leverage an entire Openstack software stack. These modules can be found, all pulled together in the openstack module.

Setup

What the keystone module affects

  • keystone, the identify service for Openstack.

Installing keystone

example% puppet module install puppetlabs/keystone

Beginning with keystone

To utilize the keystone module's functionality you will need to declare multiple resources. The following is a modified excerpt from the openstack module. This is not an exhaustive list of all the components needed, we recommend you consult and understand the openstack module and the core openstack documentation.

Define a keystone node

class { 'keystone':
  verbose        => True,
  catalog_type   => 'sql',
  admin_token    => 'random_uuid',
  sql_connection => 'mysql://keystone_admin:super_secret_db_password@openstack-controller.example.com/keystone',
}

# Adds the admin credential to keystone.
class { 'keystone::roles::admin':
  email        => 'admin@example.com',
  password     => 'super_secret',
}

# Installs the service user endpoint.
class { 'keystone::endpoint':
  public_address   => '10.16.0.101',
  admin_address    => '10.16.1.101',
  internal_address => '10.16.2.101',
  region           => 'example-1',
}

Leveraging the Native Types

Keystone ships with a collection of native types that can be used to interact with the data stored in keystone. The following, related to user management could live throughout your Puppet code base. They even support puppet's ability to introspect the current environment much the same as puppet resource user, puppet resouce keystone_tenant will print out all the currently stored tenants and their parameters.

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', 'superawesomedude'],
  ensure => present
}

These two will seldom be used outside openstack related classes, like nova or cinder. These are modified examples form Class['nova::keystone::auth'].

# Setup the nova keystone service
keystone_service { 'nova':
  ensure      => present,
  type        => 'compute',
  description => 'Openstack Compute Service',
}

# Setup nova keystone endpoint
keystone_endpoint { 'example-1-west/nova':
   ensure       => present,
   public_url   => "http://127.0.0.1:8774/v2/%(tenant_id)s",
   admin_url    => "http://127.0.0.1:8774/v2/%(tenant_id)s",
   internal_url => "http://127.0.0.1:8774/v2/%(tenant_id)s",
}

Setting up a database for keystone

A keystone database can be configured separately from the keystone services.

If one needs to actually install a fresh database they have the choice of mysql or postgres. Use the mysql::server or postgreql::server classes to do this setup then the Class['keystone::db::mysql'] or Class['keystone::db::postgresql'] for adding the needed databases and users that will be needed by keystone.

  • For mysql
class { 'mysql::server': }

class { 'keystone::db::mysql':
  password      => 'super_secret_db_password',
  allowed_hosts => '%',
}
  • For postgresql
class { 'postgresql::server': }

class { 'keystone::db::postgresql': password => 'super_secret_db_password', }

Implementation

keystone

keystone is a combination of Puppet manifest and ruby code to delivery configuration and extra functionality through types and providers.

Limitations

  • All the keystone types use the CLI tools and so need to be ran on the keystone node.

Upgrade warning

  • If you've setup Openstack using previous versions of this module you need to be aware that it used UUID as the dedault to the token_format parameter but now defaults to PKI. If you're using this module to manage a Grizzly Openstack deployment that was set up using a development release of the modules or are attempting an upgrade from Folsom then you'll need to make sure you set the token_format to UUID at classification time.

  • The Keystone Openstack service depends on a sqlalchemy database. If you are using puppetlabs-mysql to achieve this, there is a parameter called mysql_module that can be used to swap between the two supported versions: 0.9 and 2.2. This is needed because the puppetlabs-mysql module was rewritten and the custom type names have changed between versions.

Development

Developer documentation for the entire puppet-openstack project.

Contributors

Release Notes

4.0.0

  • Stable Icehouse release.
  • Added template_file parameter to specify catalog.
  • Added keystone::config to handle additional custom options.
  • Added notification parameters.
  • Added support for puppetlabs-mysql 2.2 and greater.
  • Fixed deprecated sql section header in keystone.conf.
  • Fixed deprecated bind_host parameter.
  • Fixed example for native type keystone_service.
  • Fixed LDAP module bugs.
  • Fixed variable for host_access dependency.
  • Reduced default token duration to one hour.

3.2.0

  • Added ability to configure any catalog driver.
  • Ensures log_file is absent when using syslog.

3.1.1

  • Fixed inconsistent variable for mysql allowed hosts.

3.1.0

  • Added ability to disable pki_setup.
  • Load tenant un-lazily if needed.
  • Add log_dir param, with option to disable.
  • Updated endpoint argument.
  • Added support to enable SSL.
  • Removes setting of Keystone endpoint by default.
  • Relaxed regex when keystone refuses connections.

3.0.0

  • Major release for OpenStack Havana.
  • Fixed duplicated keystone endpoints.
  • Refactored keystone_endpoint to use prefetch and flush paradigm.
  • Switched from signing/format to token/provider.
  • Created memcache_servers option to allow for multiple cache servers.
  • Enabled serving Keystone from Apache mod_wsgi.
  • Moved db_sync to its own class.
  • Removed creation of Member role.
  • Improved performance of Keystone providers.
  • Updated endpoints to support paths and ssl.
  • Added support for token expiration parameter.

2.2.0

  • Optimized tenant and user queries.
  • Added syslog support.
  • Added support for token driver backend.
  • Various bug and lint fixes.

2.1.0

  • Tracks release of puppet-quantum
  • Fixed allowed_hosts contitional statement
  • Pinned depedencies
  • Select keystone endpoint based on SSL setting
  • Improved tenant_hash usage in keystone_tenant
  • Various cleanup and bug fixes.

2.0.0

  • Upstream is now part of stackfoge.
  • keystone_user can be used to change passwords.
  • service tenant name now configurable.
  • keystone_user is now idempotent.
  • Various cleanups and bug fixes.