RETIRED, Chef Cookbook - OpenStack Orchestration
Go to file
Chen Zhiwei 6b9df49443 Fix DB2 ODBC driver installation issue
There is an LWRP in db2 cookbook to install ODBC driver,
so need to move this driver installation to db2 cookbook.

Change-Id: I309bac0e5fdf0abb110210069e731ff260679a3c
Closes-bug: 1294376
2014-03-21 03:21:03 -04:00
attributes Fix DB2 ODBC driver installation issue 2014-03-21 03:21:03 -04:00
recipes Use the library method auth_uri_transform. 2014-03-14 23:56:24 +08:00
spec Fix DB2 ODBC driver installation issue 2014-03-21 03:21:03 -04:00
templates/default Use get_password method to obtain qpid password 2014-03-06 14:26:23 +00:00
.gitignore Initial Rubocop cleanup. 2014-01-15 23:16:42 -06:00
.gitreview Added .gitreview 2013-05-22 16:50:16 +00:00
.rubocop.yml Disable the NumericLiterals cop for rubocop 2014-02-25 18:07:19 +00:00
Berksfile Add cookbook support for Openstack Orchestration 2014-01-15 15:25:21 +08:00
CHANGELOG.md Fix DB2 ODBC driver installation issue 2014-03-21 03:21:03 -04:00
Gemfile Upgrade rubocop 2014-02-04 17:09:51 -05:00
Gemfile.lock Upgrade rubocop 2014-02-04 17:09:51 -05:00
README.md Fix DB2 ODBC driver installation issue 2014-03-21 03:21:03 -04:00
Strainerfile Add cookbook support for Openstack Orchestration 2014-01-15 15:25:21 +08:00
TESTING.md Initial Rubocop cleanup. 2014-01-15 23:16:42 -06:00
metadata.rb Fix DB2 ODBC driver installation issue 2014-03-21 03:21:03 -04:00

README.md

Description

This cookbook installs the OpenStack Heat service Heat as part of an OpenStack reference deployment Chef for OpenStack.

http://heat.openstack.org/

Requirements

Chef 11 or higher required (for Chef environment use).

Cookbooks

The following cookbooks are dependencies:

  • openstack-common
  • openstack-identity

Usage

api

  • Configure and start heat-api service

api-cfn

  • Configure and start heat-api-cfn service

api-cloudwatch

  • Configure and start heat-api-cloudwatch service

client

  • Install the heat client packages

common

  • Installs the heat packages and setup configuration for Heat.

engine

  • Setup the heat database and start heat-engine service

identity_registration

  • Registers the Heat API endpoint, heat service and user

Attributes

Attributes for the Heat service are in the ['openstack']['orchestration'] namespace.

  • openstack['orchestration']['verbose'] - Enables/disables verbose output for heat services.
  • openstack['orchestration']['debug'] - Enables/disables debug output for heat services.
  • openstack['orchestration']['identity_service_chef_role'] - The name of the Chef role that installs the Keystone Service API
  • openstack['orchestration']['rabbit_server_chef_role'] - The name of the Chef role that knows about the message queue server
  • openstack['orchestration']['user'] - User heat runs as
  • openstack['orchestration']['group'] - Group heat runs as
  • openstack['orchestration']['db']['username'] - Username for heat database access
  • openstack['orchestration']['api']['adminURL'] - Used when registering heat endpoint with keystone
  • openstack['orchestration']['api']['internalURL'] - Used when registering heat endpoint with keystone
  • openstack['orchestration']['api']['publicURL'] - Used when registering heat endpoint with keystone
  • openstack['orchestration']['service_tenant_name'] - Tenant name used by heat when interacting with keystone - used in the API and registry paste.ini files
  • openstack['orchestration']['service_user'] - User name used by heat when interacting with keystone - used in the API and registry paste.ini files
  • openstack['orchestration']['service_role'] - User role used by heat when interacting with keystone - used in the API and registry paste.ini files
  • openstack['orchestration']['api']['auth']['cache_dir'] - Defaults to /var/cache/heat. Directory where auth_token middleware writes certificates for heat
  • openstack['orchestration']['syslog']['use'] - Should heat log to syslog?
  • openstack['orchestration']['syslog']['facility'] - Which facility heat should use when logging in python style (for example, LOG_LOCAL1)
  • openstack['orchestration']['syslog']['config_facility'] - Which facility heat should use when logging in rsyslog style (for example, local1)
  • openstack['orchestration']['rpc_thread_pool_size'] - size of RPC thread pool
  • openstack['orchestration']['rpc_conn_pool_size'] - size of RPC connection pool
  • openstack['orchestration']['rpc_response_timeout'] - seconds to wait for a response from call or multicall
  • openstack['orchestration']['platform'] - hash of platform specific package/service names and options
  • openstack['orchestration']['api']['auth']['version'] - Select v2.0 or v3.0. Default v2.0. The auth API version used to interact with identity service.

MQ attributes

  • openstack["orchestration"]["mq"]["service_type"] - Select qpid or rabbitmq. default rabbitmq TODO: move rabbit parameters under openstack["orchestration"]["mq"]

  • openstack["orchestration"]["rabbit"]["username"] - Username for nova rabbit access

  • openstack["orchestration"]["rabbit"]["vhost"] - The rabbit vhost to use

  • openstack["orchestration"]["rabbit"]["port"] - The rabbit port to use

  • openstack["orchestration"]["rabbit"]["host"] - The rabbit host to use (must set when openstack["orchestration"]["rabbit"]["ha"] false).

  • openstack["orchestration"]["rabbit"]["ha"] - Whether or not to use rabbit ha

  • openstack["orchestration"]["mq"]["qpid"]["host"] - The qpid host to use

  • openstack["orchestration"]["mq"]["qpid"]["port"] - The qpid port to use

  • openstack["orchestration"]["mq"]["qpid"]["qpid_hosts"] - Qpid hosts. TODO. use only when ha is specified.

  • openstack["orchestration"]["mq"]["qpid"]["username"] - Username for qpid connection

  • openstack["orchestration"]["mq"]["qpid"]["password"] - Password for qpid connection

  • openstack["orchestration"]["mq"]["qpid"]["sasl_mechanisms"] - Space separated list of SASL mechanisms to use for auth

  • openstack["orchestration"]["mq"]["qpid"]["reconnect_timeout"] - The number of seconds to wait before deciding that a reconnect attempt has failed.

  • openstack["orchestration"]["mq"]["qpid"]["reconnect_limit"] - The limit for the number of times to reconnect before considering the connection to be failed.

  • openstack["orchestration"]["mq"]["qpid"]["reconnect_interval_min"] - Minimum number of seconds between connection attempts.

  • openstack["orchestration"]["mq"]["qpid"]["reconnect_interval_max"] - Maximum number of seconds between connection attempts.

  • openstack["orchestration"]["mq"]["qpid"]["reconnect_interval"] - Equivalent to setting qpid_reconnect_interval_min and qpid_reconnect_interval_max to the same value.

  • openstack["orchestration"]["mq"]["qpid"]["heartbeat"] - Seconds between heartbeat messages sent to ensure that the connection is still alive.

  • openstack["orchestration"]["mq"]["qpid"]["protocol"] - Protocol to use. Default tcp.

  • openstack["orchestration"]["mq"]["qpid"]["tcp_nodelay"] - Disable the Nagle algorithm. default disabled.

Testing

Please refer to the TESTING.md for instructions for testing the cookbook.

License and Author

Author Zhao Fang Han (hanzhf@cn.ibm.com)
Author Chen Zhiwei (zhiwchen@cn.ibm.com)
Copyright Copyright (c) 2013-2014, IBM Corp.

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.