Merge "Extend DeployedServerPortMap to include network props"
This commit is contained in:
commit
72526fe4d0
@ -456,15 +456,18 @@ class Deploy(command.Command):
|
|||||||
'DeployedServerPortMap': {
|
'DeployedServerPortMap': {
|
||||||
('%s-ctlplane' % hostname): {
|
('%s-ctlplane' % hostname): {
|
||||||
'fixed_ips': [{'ip_address': ip_addr}],
|
'fixed_ips': [{'ip_address': ip_addr}],
|
||||||
'subnets': [{'cidr': str(ip_nw)}]
|
'subnets': [{'cidr': str(ip_nw)}],
|
||||||
|
'network': {'tags': [str(ip_nw)]}
|
||||||
},
|
},
|
||||||
'control_virtual_ip': {
|
'control_virtual_ip': {
|
||||||
'fixed_ips': [{'ip_address': ctlplane_vip_addr}],
|
'fixed_ips': [{'ip_address': ctlplane_vip_addr}],
|
||||||
'subnets': [{'cidr': str(ip_nw)}]
|
'subnets': [{'cidr': str(ip_nw)}],
|
||||||
|
'network': {'tags': [str(ip_nw)]}
|
||||||
},
|
},
|
||||||
'public_virtual_ip': {
|
'public_virtual_ip': {
|
||||||
'fixed_ips': [{'ip_address': public_vip_addr}],
|
'fixed_ips': [{'ip_address': public_vip_addr}],
|
||||||
'subnets': [{'cidr': str(ip_nw)}]
|
'subnets': [{'cidr': str(ip_nw)}],
|
||||||
|
'network': {'tags': [str(ip_nw)]}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user