aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/haproxy.pp
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2016-10-30 09:44:18 -0400
committerTim Rozet <trozet@redhat.com>2016-10-30 09:44:18 -0400
commit8ee57d6b61c5d3951c147d159e42e12a1c354cfc (patch)
tree3dad33319e918413515db80cbbf1b6c30cff64ef /manifests/haproxy.pp
parent6e1d4f3ee0d1e1d2c37169cfb76cb953dc5a2dfd (diff)
Fixes transparent binding to OpenDaylight in HA Proxy
ODL was missing transparent binding mode, which causes HA deployments to fail since HA Proxy will try to come up on every node (even without VIP). Closes-Bug: 1637833 Change-Id: I0bb7839cdcfeacb4ca1a9fc6f878e8b51330be92 Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'manifests/haproxy.pp')
-rw-r--r--manifests/haproxy.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/haproxy.pp b/manifests/haproxy.pp
index 02dddf1..39d606d 100644
--- a/manifests/haproxy.pp
+++ b/manifests/haproxy.pp
@@ -1195,8 +1195,8 @@ class tripleo::haproxy (
$opendaylight_api_vip = hiera('opendaylight_api_vip', $controller_virtual_ip)
$opendaylight_bind_opts = {
- "${opendaylight_api_vip}:8081" => [],
- "${public_virtual_ip}:8081" => [],
+ "${opendaylight_api_vip}:8081" => $haproxy_listen_bind_param,
+ "${public_virtual_ip}:8081" => $haproxy_listen_bind_param,
}
if $opendaylight {