Code Review
/
apex-puppet-tripleo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
f626a22
)
Fix HAProxy config for Nova EC2 API
author
Jiri Stransky
<jistr@redhat.com>
Mon, 27 Jul 2015 12:58:26 +0000
(14:58 +0200)
committer
Jiri Stransky
<jistr@redhat.com>
Mon, 27 Jul 2015 13:02:01 +0000
(15:02 +0200)
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
patch
|
blob
|
history
diff --git
a/manifests/loadbalancer.pp
b/manifests/loadbalancer.pp
index
4596b50
..
99dd342
100644
(file)
--- 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,
}