From d85cd3f3650d5f85a67170c27dac9f022a480d32 Mon Sep 17 00:00:00 2001 From: Giulio Fidente Date: Mon, 16 Jul 2018 18:00:54 +0200 Subject: [PATCH] Enable HAProxy mode http for Swift and Ceph RGW Previously we missed to enable http mode for the Swift and Ceph RGW listeners in HAProxy. Change-Id: I4d7a8299d57e9c5f6effea19f0b630f4a092ff7e --- manifests/haproxy.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/haproxy.pp b/manifests/haproxy.pp index 118814dcb..af4ebc0a9 100644 --- a/manifests/haproxy.pp +++ b/manifests/haproxy.pp @@ -1212,6 +1212,7 @@ class tripleo::haproxy ( service_port => $ports[swift_proxy_port], ip_addresses => hiera('swift_proxy_node_ips', $controller_hosts_real), server_names => hiera('swift_proxy_node_names', $controller_hosts_names_real), + mode => 'http', listen_options => merge($default_listen_options, $swift_proxy_server_listen_options), public_ssl_port => $ports[swift_proxy_ssl_port], service_network => $swift_proxy_server_network, @@ -1501,6 +1502,7 @@ class tripleo::haproxy ( service_port => $ports[ceph_rgw_port], ip_addresses => hiera('ceph_rgw_node_ips', $controller_hosts_real), server_names => hiera('ceph_rgw_node_names', $controller_hosts_names_real), + mode => 'http', public_ssl_port => $ports[ceph_rgw_ssl_port], service_network => $ceph_rgw_network, listen_options => merge($default_listen_options, { 'option' => [ 'httpchk HEAD /' ] }),