8665a0d97b
Prior to routed networks we only had one subnet per network. With routed networks each network can have multiple subnets. The NetCidrMapValue should contain a list storing the cidr of each subnet for each network. Ceph: list_join is used to make a comma separated list of cidrs for public_network, monitor_address_block, cluster_network and radosgw_address_block. Partial: blueprint tripleo-routed-networks-templates Depends-On: Ia8e219b30d4f8b199b882e95fe2834252a92c15a Depends-On: I1ace0a02e6aa2610559fee0d8576e6f1bc98d699 Change-Id: I68e064d23ec5d43f59146d974cae604d2c5fdb52
30 lines
900 B
YAML
30 lines
900 B
YAML
---
|
|
upgrade:
|
|
- |
|
|
Tags are now used on the ``ctlplane`` network to store the list of cidrs
|
|
associated with the subnets on the ``ctlplane`` network. Users of
|
|
Deployed Server (pre-provisioned servers) need to update the port map
|
|
(``DeployedServerPortMap``) to include the required data. For example::
|
|
|
|
parameter_defaults:
|
|
DeployedServerPortMap:
|
|
controller0-ctlplane:
|
|
fixed_ips:
|
|
- ip_address: 192.168.24.9
|
|
subnets:
|
|
- cidr: 192.168.24.0/24
|
|
network:
|
|
tags:
|
|
- 192.168.24.0/24
|
|
- 192.168.25.0/24
|
|
compute0-ctlplane:
|
|
fixed_ips:
|
|
- ip_address: 192.168.25.8
|
|
subnets:
|
|
- cidr: 192.168.25.0/24
|
|
network:
|
|
tags:
|
|
- 192.168.24.0/24
|
|
- 192.168.25.0/24
|
|
|