diff --git a/tripleoclient/v1/tripleo_deploy.py b/tripleoclient/v1/tripleo_deploy.py index 6044cdeb4..8b979b8ce 100644 --- a/tripleoclient/v1/tripleo_deploy.py +++ b/tripleoclient/v1/tripleo_deploy.py @@ -456,15 +456,18 @@ class Deploy(command.Command): 'DeployedServerPortMap': { ('%s-ctlplane' % hostname): { 'fixed_ips': [{'ip_address': ip_addr}], - 'subnets': [{'cidr': str(ip_nw)}] + 'subnets': [{'cidr': str(ip_nw)}], + 'network': {'tags': [str(ip_nw)]} }, 'control_virtual_ip': { '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': { 'fixed_ips': [{'ip_address': public_vip_addr}], - 'subnets': [{'cidr': str(ip_nw)}] + 'subnets': [{'cidr': str(ip_nw)}], + 'network': {'tags': [str(ip_nw)]} } } }