diff options
author | Jiri Stransky <jistr@redhat.com> | 2015-07-27 14:58:26 +0200 |
---|---|---|
committer | Jiri Stransky <jistr@redhat.com> | 2015-07-27 15:02:01 +0200 |
commit | 6486099b7934ddba9e5fc8e8ea886fefd9203142 (patch) | |
tree | 3047ade1fd5df549c9662deff7f14421bf8edd7c | |
parent | f626a227b25b2345afcc27217be7df9f1664317a (diff) |
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
-rw-r--r-- | manifests/loadbalancer.pp | 2 |
1 files changed, 1 insertions, 1 deletions
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, } |