diff options
author | Dan Prince <dprince@redhat.com> | 2015-06-02 09:40:31 -0400 |
---|---|---|
committer | Dan Prince <dprince@redhat.com> | 2015-06-02 21:40:02 -0400 |
commit | f4dab984c0dc6d2f0a9f587222396987cff3ad9d (patch) | |
tree | d1bf2afb97a8eb4400dfa8a5f22e78097797a41b /manifests | |
parent | 36cdbecea314fcf4977383b14356637515232123 (diff) |
Drop nova_meta and glance_registry on public vip
This patch removes the public VIP for the nova metadata
and glance registry services.
Change-Id: I0878f7b3eeed6e16c5d30bdf76ebca56eb49d042
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/loadbalancer.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp index 7c3a442..a98ad3b 100644 --- a/manifests/loadbalancer.pp +++ b/manifests/loadbalancer.pp @@ -607,7 +607,7 @@ class tripleo::loadbalancer ( if $glance_registry { haproxy::listen { 'glance_registry': - ipaddress => [$controller_virtual_ip, $public_virtual_ip], + ipaddress => $controller_virtual_ip, ports => 9191, options => { 'option' => [ 'httpchk GET /' ], @@ -659,7 +659,7 @@ class tripleo::loadbalancer ( if $nova_metadata { haproxy::listen { 'nova_metadata': - ipaddress => [$controller_virtual_ip, $public_virtual_ip], + ipaddress => $controller_virtual_ip, ports => 8775, options => { 'option' => [ 'httpchk GET /' ], |