Defined Type: haproxy::backend
- Defined in:
- manifests/backend.pp
Summary
This type will setup a backend service configuration block inside the haproxy.cfg file on an haproxy load balancer.Overview
Authors
Gary Larizza <gary@puppetlabs.com> Jeremy Kitchen <jeremy@nationbuilder.com>
Note:
Each backend service needs one or more backend member servers (that can be declared with the haproxy::balancermember defined resource type). Using storeconfigs, you can export the haproxy::balancermember resources on all load balancer member servers and then collect them on a single haproxy load balancer server.
Note:
Currently requires the puppetlabs/concat module on the Puppet Forge and uses storeconfigs on the Puppet Server to export/collect resources from all backend members.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'manifests/backend.pp', line 72
define haproxy::backend (
Optional[Enum['tcp', 'http', 'health']] $mode = undef,
Boolean $collect_exported = true,
Variant[Hash, Array[Hash]] $options = {
'balance' => 'roundrobin',
},
String $instance = 'haproxy',
String[1] $section_name = $name,
Boolean $sort_options_alphabetic = true,
Optional[String] $description = undef,
Optional[String] $defaults = undef,
Optional[Stdlib::Absolutepath] $config_file = undef,
) {
if defined(Haproxy::Listen[$section_name]) {
fail("An haproxy::listen resource was discovered with the same name (${section_name}) which is not supported")
}
include haproxy::params
if $instance == 'haproxy' {
$instance_name = 'haproxy'
$_config_file = pick($config_file, $haproxy::config_file)
} else {
$instance_name = "haproxy-${instance}"
$_config_file = pick($config_file, inline_template($haproxy::params::config_file_tmpl))
}
include haproxy::globals
# See https://github.com/puppetlabs/puppetlabs-haproxy/pull/442 - when using the option 'httpchk', it must be positioned
# before the 'http-check' directive in haproxy.cfg otherwise it will be ignored
#
# logic:
# 1) if alphabetic sorting is explicitly disabled, accept that
# 2) if the options hash contains httpchk, disable alphabetic sorting *and* log a warning
# 3) use whats provides to this module and if that's undef, use the module default
$picked_sort_options_alphabetic = pick($sort_options_alphabetic, $haproxy::globals::sort_options_alphabetic)
if $picked_sort_options_alphabetic == false {
$_sort_options_alphabetic = $picked_sort_options_alphabetic
} else {
if $options =~ Hash and 'option' in $options {
if ('httpchk' in $options['option']) {
warning('Overriding the value of $sort_options_alphabetic to "false" due to "httpchk" option defined')
$_sort_options_alphabetic = false
} else {
$_sort_options_alphabetic = $picked_sort_options_alphabetic
}
} else {
$_sort_options_alphabetic = $picked_sort_options_alphabetic
}
}
if $defaults == undef {
$order = "20-${section_name}-00"
} else {
$order = "25-${defaults}-${section_name}-01"
}
$parameters = {
'section_name' => $section_name,
'mode' => $mode,
'description' => $description,
'_sort_options_alphabetic' => $_sort_options_alphabetic,
'options' => $options,
}
# Template uses: $section_name, $ipaddress, $ports, $options
concat::fragment { "${instance_name}-${section_name}_backend_block":
order => $order,
target => $_config_file,
content => epp('haproxy/haproxy_backend_block.epp', $parameters),
}
if $collect_exported {
haproxy::balancermember::collect_exported { $section_name: }
}
# else: the resources have been created and they introduced their
# concat fragments. We don't have to do anything about them.
}
|