From 6486099b7934ddba9e5fc8e8ea886fefd9203142 Mon Sep 17 00:00:00 2001 From: Jiri Stransky Date: Mon, 27 Jul 2015 14:58:26 +0200 Subject: Fix HAProxy config for Nova EC2 API EC2 API returns 400 for unauthenticated requests, making HAProxy believe that the service is down. We'll use TCP check instead of HTTP check for EC2 API. Change-Id: Ide7f9390603c9893b95cacd51d468461255dcf07 --- manifests/loadbalancer.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp index 4596b50..99dd342 100644 --- a/manifests/loadbalancer.pp +++ b/manifests/loadbalancer.pp @@ -738,7 +738,7 @@ class tripleo::loadbalancer ( haproxy::listen { 'nova_ec2': bind => $nova_ec2_bind_opts, options => { - 'option' => [ 'httpchk GET /' ], + 'option' => [ ], }, collect_exported => false, } -- cgit 1.2.3-korg