HAProxy config listen_port name fix
This commit is contained in:
parent
f18971c092
commit
8b2e7259ca
@ -72,7 +72,7 @@ resources:
|
||||
model: x/resources/haproxy_config/
|
||||
args:
|
||||
servers: {}
|
||||
port: 5000
|
||||
listen_port: 5000
|
||||
ports: {}
|
||||
ssh_user:
|
||||
ssh_key:
|
||||
@ -113,7 +113,7 @@ resources:
|
||||
model: x/resources/haproxy_config/
|
||||
args:
|
||||
servers: {}
|
||||
port: 8774
|
||||
listen_port: 8774
|
||||
ports: {}
|
||||
ssh_user:
|
||||
ssh_key:
|
||||
@ -185,13 +185,13 @@ connections:
|
||||
- emitter: haproxy_keystone_config
|
||||
receiver: haproxy-config
|
||||
mapping:
|
||||
port: listen_ports
|
||||
listen_port: listen_ports
|
||||
ports: configs_ports
|
||||
servers: configs
|
||||
- emitter: haproxy_nova_config
|
||||
receiver: haproxy-config
|
||||
mapping:
|
||||
port: listen_ports
|
||||
listen_port: listen_ports
|
||||
ports: configs_ports
|
||||
servers: configs
|
||||
|
||||
|
@ -89,8 +89,8 @@ class TestHAProxyDeployment(unittest.TestCase):
|
||||
self.assertDictEqual(
|
||||
haproxy_config.args['listen_ports'],
|
||||
{
|
||||
'haproxy_keystone_config': haproxy_keystone_config.args['port'],
|
||||
'haproxy_nova_config': haproxy_nova_config.args['port'],
|
||||
'haproxy_keystone_config': haproxy_keystone_config.args['listen_port'],
|
||||
'haproxy_nova_config': haproxy_nova_config.args['listen_port'],
|
||||
}
|
||||
)
|
||||
self.assertDictEqual(
|
||||
|
@ -2,7 +2,7 @@ id: haproxy_config
|
||||
handler: ansible
|
||||
version: 1.0.0
|
||||
input:
|
||||
port:
|
||||
listen_port:
|
||||
ports:
|
||||
servers:
|
||||
input-types:
|
||||
|
Loading…
Reference in New Issue
Block a user