diff --git a/CHANGELOG.md b/CHANGELOG.md
index d992990..dcd78c4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,16 @@ Changelog of Git Changelog.
No issue
+2f63ab557e78421 Jenkins ConfDroid 2019-12-31 17:25:35
+
+
recommit for updates in build 52
+
+
+0f6f603f8fbd99e Arne Teuke 2019-12-31 17:24:58
+
+
updates README
+
+
30f1e87f133fd3a Jenkins ConfDroid 2019-12-31 17:22:54
recommit for updates in build 51
diff --git a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html
index 470f249..127fdb4 100644
--- a/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html
+++ b/doc/puppet_classes/cd_haproxy_3A_3Aserver_3A_3Aproxy_test.html
@@ -132,7 +132,8 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
32
33
34
-35
+35
+36
# File 'manifests/server/proxy_test.pp', line 23
@@ -148,6 +149,7 @@ class cd_haproxy::server::proxy_test (
acl_rule => ['too_fast fe_sess_rate ge 10',
'network_allowed src 0.0.0.0/0'],
backend_name => 'test01-backend',
+ be_server_name => ['web01', 'web02'],
}
}
|
diff --git a/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html b/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html
index 7bc1888..589e533 100644
--- a/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html
+++ b/doc/puppet_defined_types/cd_haproxy_3A_3Aserver_3A_3Aproxy.html
@@ -107,6 +107,24 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
Parameters:
+ -
+
+ haproxy_fqdn
+
+
+ (string)
+
+
+ (defaults to: undef)
+
+
+ —
+
+
the fqdn of the haproxy server in question.
+
+
+
+
-
frontend_name
@@ -138,22 +156,9 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
—
-
the order where the concet should appear in the file.
+
the order where the concat should appear in the file.
-
-
- -
-
- haproxy_fqdn
-
-
- (Any)
-
-
- (defaults to: undef)
-
-
-
@@ -161,12 +166,17 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
frontend_mode
- (Any)
+ (string)
(defaults to: undef)
+ —
+
+
mode for the loadbalancer instance: http or tcp
+
+
-
@@ -174,12 +184,17 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
fe_use_backend
- (Any)
+ (string)
(defaults to: '')
+ —
+
+
which backend to use. if left empty, the default backend will be used.
+
+
-
@@ -187,12 +202,17 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
fe_bind_mode
- (Any)
+ (string)
(defaults to: '*:80')
+ —
+
+
which bind mode to use, i.e. to which interface and poort to bind.
+
+
-
@@ -200,12 +220,17 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
acl_rule
- (Any)
+ (string)
(defaults to: '')
+ —
+
+
an ACL rule to be inserted if required. Empty values will not be populated.
+
+
-
@@ -213,12 +238,18 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
acl_order
- (Any)
+ (string)
(defaults to: '020')
+ —
+
+
the order where the acl rule should be inserted, so it will be within the
+correct lb instance configuration.
+
+
-
@@ -226,12 +257,17 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
backend_name
- (Any)
+ (string)
(defaults to: undef)
+ —
+
+
the backend name to be used for the rule.
+
+
-
@@ -239,12 +275,49 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
backend_order
- (Any)
+ (string)
(defaults to: '030')
+ —
+
+
the order for the backend name, so it will be within the correct lb
+instance configuration.
+
+
+
+
+ -
+
+ fe_maxconn
+
+
+ (string)
+
+
+ (defaults to: undef)
+
+
+ —
+
+
the maximum connections for the lb instance.
+
+
+
+
+ -
+
+ be_server_name
+
+
+ (Any)
+
+
+ (defaults to: undef)
+
+
@@ -257,20 +330,6 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
-26
-27
-28
-29
-30
-31
-32
-33
-34
-35
-36
-37
-38
-39
40
41
42
@@ -297,10 +356,27 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.
63
64
65
-66
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
- # File 'manifests/server/proxy.pp', line 26
+ # File 'manifests/server/proxy.pp', line 40
define cd_haproxy::server::proxy (
@@ -314,6 +390,9 @@ $acl_rule = '',
$acl_order = '020',
$backend_name = undef,
$backend_order = '030',
+$fe_maxconn = undef,
+$be_server_name = undef,
+
) {
|