Version information
released Jul 16th 2014
This version is compatible with:
Start using this module
Add this module to your Puppetfile:
mod 'arioch-haproxy', '0.0.5'
Learn more about managing modules with a PuppetfileDocumentation
arioch/haproxy — version 0.0.5 Jul 16th 2014
Puppet HAProxy
Build status
Requirements
Tested on...
- Debian 6 (Squeeze)
- Debian 7 (Wheezy)
Example usage
Install HAProxy
node /box/ {
include haproxy
}
Adjust configuration settings
node /box/ {
class { 'haproxy':
defaults_maxconn => '32768',
global_chroot => '/usr/share/haproxy',
global_nbproc => '2',
global_ulimit => '65548',
}
}
Create split frontend instance
haproxy::instance { 'http-in':
instance => 'frontend',
bind => '*:80',
default_backend => 'pool1',
}
Create split frontend instance, with ACL
haproxy::instance { 'http-in':
instance => 'frontend',
bind => '*:80',
default_backend => 'pool1',
acl => 'acl_pool1',
acl_header => 'example.org',
acl_backend => 'pool1',
}
Create split backend instance
haproxy::instance { 'pool1':
instance => 'backend',
balance => 'roundrobin',
option => [ 'http-server-close', 'checkcache' ],
server => [
'inst1 10.0.1.10:80'
'inst2 10.0.1.20:80'
],
}
Create combined listen instance
haproxy::instance { 'pool2':
instance => 'listen',
bind => '0.0.0.0:80',
mode => 'http',
option => 'persist',
balance => 'roundrobin',
server => [
'inst1 10.0.2.10:80',
'inst2 10.0.2.20:80',
],
}
Enable HAProxy stats page
class { 'haproxy':
stats_enable => true,
stats_listen_address => '0.0.0.0',
stats_listen_port => '8000',
}
Enable HAProxy stats page with authentication
class { 'haproxy':
stats_enable => true,
stats_auth_enable => true,
stats_auth_user => 'haproxy',
stats_auth_pass => 'haproxy',
}
Unit testing
Plain RSpec:
$ rake spec
Using bundle:
$ bundle exec rake spec
Test against a specific Puppet or Facter version:
$ PUPPET_VERSION=3.2.1 bundle update && bundle exec rake spec
$ PUPPET_VERSION=2.7.19 bundle update && bundle exec rake spec
$ FACTER_VERSION=1.6.8 bundle update && bundle exec rake spec
Dependencies
- puppetlabs/stdlib (>= 4.0.0)
- puppetlabs/concat (>= 1.0.2)
Copyright (C) 2012 Tom De Vylder 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.