From: Jiri Stransky Date: Mon, 27 Jul 2015 12:58:26 +0000 (+0200) Subject: Fix HAProxy config for Nova EC2 API X-Git-Tag: opnfv-6.0.0~844 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=6486099b7934ddba9e5fc8e8ea886fefd9203142;p=apex-puppet-tripleo.git 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 --- 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, }