forked from glarizza/puppet-haproxy
-
Notifications
You must be signed in to change notification settings - Fork 270
/
Copy pathfrontend.pp
152 lines (148 loc) · 5.11 KB
/
frontend.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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
151
152
# @summary
# This type will setup a frontend service configuration block inside
# the haproxy.cfg file on an haproxy load balancer.
#
# @note
# Currently requires the puppetlabs/concat module on the Puppet Forge and
# uses storeconfigs on the Puppet Server to export/collect resources
# from all balancer members.
#
# @param section_name
# This name goes right after the 'frontend' statement in haproxy.cfg
# Default: $name (the namevar of the resource).
#
# @param ports
# Ports on which the proxy will listen for connections on the ip address
# specified in the ipaddress parameter. Accepts either a single
# comma-separated string or an array of strings which may be ports or
# hyphenated port ranges.
#
# @param bind
# Set of ip addresses, port and bind options
# $bind = { '10.0.0.1:80' => ['ssl', 'crt', '/path/to/my/crt.pem'] }
#
# @param ipaddress
# The ip address the proxy binds to.
# Empty addresses, '*', and '0.0.0.0' mean that the proxy listens
# to all valid addresses on the system.
#
# @param mode
# The mode of operation for the frontend service. Valid values are undef,
# 'tcp', 'http', and 'health'.
#
# @param description
# Allows to add a sentence to describe the related object in the HAProxy HTML
# stats page. The description will be printed on the right of the object name
# it describes. Usefull in huge environments
#
# @param bind_options
# (Deprecated) An array of options to be specified after the bind declaration
# in the listening serivce's configuration block.
#
# @param options
# A hash of options that are inserted into the frontend service
# configuration block.
#
# @param sort_options_alphabetic
# Sort options either alphabetic or custom like haproxy internal sorts them.
# Defaults to true.
#
# @param defaults
# Name of the defaults section this backend will use.
# Defaults to undef which means the global defaults section will be used.
#
# @param defaults_use_backend
# If defaults are used and a default backend is configured use the backend
# name for ordering. This means that the frontend is placed in the
# configuration file before the backend configuration.
# Defaults to true.
#
# @param config_file
# Optional. Path of the config file where this entry will be added.
# Assumes that the parent directory exists.
# Default: $haproxy::params::config_file
#
# @param collect_exported
# Boolean. Default true
#
# @param instance
# Optional. Defaults to 'haproxy'
#
# @example
# Exporting the resource for a balancer member:
#
# haproxy::frontend { 'puppet00':
# ipaddress => $::ipaddress,
# ports => '18140',
# mode => 'tcp',
# bind_options => 'accept-proxy',
# options => {
# 'option' => [
# 'tcplog',
# 'accept-invalid-http-request',
# ],
# 'timeout client' => '30s',
# 'balance' => 'roundrobin'
# },
# }
#
# === Authors
#
# Gary Larizza <gary@puppetlabs.com>
#
define haproxy::frontend (
$ports = undef,
$ipaddress = undef,
Optional[Hash] $bind = undef,
$mode = undef,
$collect_exported = true,
$options = {
'option' => [
'tcplog',
],
},
$instance = 'haproxy',
$section_name = $name,
$sort_options_alphabetic = undef,
$description = undef,
$defaults = undef,
$defaults_use_backend = true,
Optional[Stdlib::Absolutepath] $config_file = undef,
# Deprecated
$bind_options = '',
) {
if $ports and $bind {
fail('The use of $ports and $bind is mutually exclusive, please choose either one')
}
if $ipaddress and $bind {
fail('The use of $ipaddress and $bind is mutually exclusive, please choose either one')
}
if $bind_options != '' {
warning('The $bind_options parameter is deprecated; please use $bind instead')
}
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
$_sort_options_alphabetic = pick($sort_options_alphabetic, $haproxy::globals::sort_options_alphabetic)
if $defaults == undef {
$order = "15-${section_name}-00"
} else {
if $defaults_use_backend and has_key($options, 'default_backend') {
$order = "25-${defaults}-${options['default_backend']}-00-${section_name}"
} else {
$order = "25-${defaults}-${section_name}-00"
}
}
# Template uses: $section_name, $ipaddress, $ports, $options
concat::fragment { "${instance_name}-${section_name}_frontend_block":
order => $order,
target => $_config_file,
content => template('haproxy/haproxy_frontend_block.erb'),
}
}