RETIRED, Chef Cookbook - Support Cookbook for Database
Go to file
galstrom21 95b18479e3 Setting tunable[skip-name-resolve] to true
If tunable[skip-name-resolve] is set to false, hostname resolution
can cause auth issues.

Change-Id: I34b3b530786239c3c42ff1d8a44c536fea82f125
2013-10-17 21:28:15 -05:00
attributes add support for PostgreSQL 2013-07-10 16:57:35 +02:00
recipes Setting tunable[skip-name-resolve] to true 2013-10-17 21:28:15 -05:00
spec Setting tunable[skip-name-resolve] to true 2013-10-17 21:28:15 -05:00
.gitignore Prep work before adding each db recipe 2013-06-25 18:12:21 -07:00
.gitreview Brings in Matt's openstack-ops-database work 2013-05-29 12:36:07 -04:00
.tailor Add tailor ruby style check 2013-06-10 14:53:08 -07:00
Berksfile Replace ceilometer reference from openstack-compute to openstack-metering 2013-08-08 19:43:49 +09:00
Berksfile.lock Merge "Removed the attributes provided by openstack-common" 2013-07-04 13:02:20 +00:00
CHANGELOG.md Brings in Matt's openstack-ops-database work 2013-05-29 12:36:07 -04:00
Gemfile Prep work before adding each db recipe 2013-06-25 18:12:21 -07:00
Gemfile.lock Prep work before adding each db recipe 2013-06-25 18:12:21 -07:00
LICENSE first commit 2013-05-06 16:41:21 -05:00
README.md add support for PostgreSQL 2013-07-10 16:57:35 +02:00
Strainerfile Add tailor ruby style check 2013-06-10 14:53:08 -07:00
metadata.rb Replace ceilometer reference from openstack-compute to openstack-metering 2013-08-08 19:43:49 +09:00

README.md

Description

This cookbook provides a reference example of database configuration for the OpenStack Grizzly reference deployment provided by Chef for OpenStack. It currently supports MySQL and will soon support PostgreSQL.

Requirements

Chef 11 with Ruby 1.9.x required.

Platforms

  • Ubuntu-12.04
  • openSUSE 12.3, SLES 11 SP2

Cookbooks

The following cookbooks are dependencies:

  • database
  • mysql
  • openstack-common
  • postgresql

Usage

The usage of this cookbook is optional, you may choose to set up your own databases without using this cookbook. If you choose to do so, you will need to do the following:

  • create the schema specified by the openstack-db recipe.
  • create and upload encrypted data bags into your chef environment, as specified by #db_password in the openstack-db recipe.

Resources/Providers

None

Templates

None

Recipes

client

  • database client configuration, selected by attributes

server

  • database server configuration, selected by attributes

mysql-client

  • calls mysql::ruby and mysql::client and installs 'mysql_python_packages'

mysql-server

  • configures the mysql server for OpenStack

postgresql-client

  • calls postgresql::ruby and postgresql::client and installs 'postgresql_python_packages'

postgresql-server

  • configures the PostgreSQL server for OpenStack

openstack-db

  • creates necessary tables, users, and grants for OpenStack

Attributes

  • openstack["db"]["bind_interface"] - bind to interfaces IPv4 address
  • openstack["db"]["platform"]["mysql_python_packages"] - platform-specific mysql python packages to install

Testing

This cookbook uses bundler, berkshelf, and strainer to isolate dependencies and run tests.

Tests are defined in Strainerfile.

To run tests:

$ bundle install # install gem dependencies
$ bundle exec berks install # install cookbook dependencies
$ bundle exec strainer test # run tests

License and Author

Author Justin Shepherd (justin.shepherd@rackspace.com)
Author Jason Cannavale (jason.cannavale@rackspace.com)
Author Ron Pedde (ron.pedde@rackspace.com)
Author Joseph Breu (joseph.breu@rackspace.com)
Author William Kelly (william.kelly@rackspace.com)
Author Darren Birkett (darren.birkett@rackspace.co.uk)
Author Evan Callicoat (evan.callicoat@rackspace.com)
Author Matt Thompson (matt.thompson@rackspace.co.uk)
Author Matt Ray (matt@opscode.com)
Author Sean Gallagher (<sean.gallagher@.att.com>)
Author John Dewey (jdewey@att.com)
Author Ionut Artarisi (iartarisi@suse.cz)
Copyright Copyright (c) 2012-2013, Rackspace US, Inc.
Copyright Copyright (c) 2012-2013, Opscode, Inc.
Copyright Copyright (c) 2013, AT&T Services, Inc.
Copyright Copyright (c) 2013, SUSE Linux GmbH

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.