Skip to content

Files

Latest commit

7b947b6 · Feb 11, 2011

History

History
This branch is up to date with uran1980/chef-cookbooks:master.

haproxy

DESCRIPTION:

Installs haproxy and prepares the configuration location.

REQUIREMENTS:

Platform:

Tested on Ubuntu 8.10 and higher.

Cookbooks:

ATTRIBUTES:

  • node[’member_port’]‘ - the port that member systems will be listening on, default 80

  • node[’enable_admin’]‘ - whether to enable the admin interface. default true. Listens on port 22002.

  • node[’app_server_role’]‘ - used by the `app_lb` recipe to search for a specific role of member systems. Default `webserver`.

USAGE:

Use either the default recipe or the app_lb recipe.

When using the default recipe, modify the haproxy.cfg.erb file with listener(s) for your sites/servers.

The app_lb recipe is designed to be used with the application cookbook, and provides search mechanism to find the appropriate application servers. Set this in a role that includes the haproxy::app_lb recipe. For example,

name "load_balancer"
description "haproxy load balancer"
run_list("recipe[haproxy::app_lb]")
override_attributes(
  "haproxy" => {
    "app_server_role" => "webserver"
  }
)

The search also relies on an attribute “app_environment” being set on the node and a role named with the same value. For example, production:

name "production"
description "Nodes in the production environment."
default_attributes(
  "app_environment" => "production"
)

LICENSE and AUTHOR:

Author

Joshua Timberman (<[email protected]>)

Copyright

2009-2010, Opscode, Inc

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.