Add an internal index to network_data

When using the multiple nic-config templates in THT
and in tripleo-ansible the ordering of networks in
the network_data file matters.

Add and 'idx' key internally so that we can put a tag
on neutron network resources to keep track of the
ordering.

Change-Id: I6162ee854b08668274df32120e3ffc961b6cf807
Partial-Implements: blueprint network-data-v2-ports
This commit is contained in:
Harald Jensås 2021-01-28 01:59:08 +01:00
parent 86d0e65a29
commit ff52ddb391
1 changed files with 4 additions and 0 deletions

View File

@ -195,6 +195,10 @@ def process_custom_roles(swift, heat,
# Allow no networks defined in network_data
if network_data is None:
network_data = []
# Set internal network index key for each network, network resources
# are created with a tag tripleo_net_idx
for idx, net in enumerate(network_data):
network_data[idx].update({'idx': idx})
except swiftexceptions.ClientException:
# Until t-h-t contains network_data.yaml we tolerate a missing file
LOG.warning("No %s file found, ignoring",