Skip to content

Commit aa3e318

Browse files
authored
Merge pull request #612 from klgill/hackfest-feedback-networking
implemented hackfest feedback
2 parents a562a24 + fcfacf8 commit aa3e318

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

docs_user/modules/proc_using-new-subnet-ranges.adoc

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ addresses in `fixedIP` fields in `OpenstackDataplaneNodeSet` per-node section.
3535
Before proceeding, configure host routes on the adopted nodes for the
3636
control plane subnets.
3737

38-
To achieve this, you will need to re-run `tripleo deploy` with additional
39-
`routes` entries added to `network_config`. (This change should be applied
40-
for every adopted node configuration.) For example, you may add the following
41-
to `net_config.yaml`:
38+
To achieve this, you will need to re-run `openstack overcloud node provision` with additional `routes` entries added to `network_config`. (This change should be applied for every adopted node configuration.) For example, you may add the following to `net_config.yaml`:
4239

4340
```yaml
4441
network_config:
@@ -47,20 +44,22 @@ network_config:
4744
routes:
4845
- ip_netmask: 0.0.0.0/0
4946
next_hop: 192.168.1.1
50-
- ip_netmask: 172.31.0.0/24 # <- new ctlplane subnet
51-
next_hop: 192.168.1.100 # <- adopted node ctlplane IP address
47+
- ip_netmask: 172.31.0.0/24 <1>
48+
next_hop: 192.168.1.100 <2>
5249
```
50+
<1> The new control plane subnet.
51+
<2> The control plane IP address of the adopted data plane node.
5352

5453
Do the same for other networks that will need to use different subnets for the
5554
new and old parts of the deployment.
5655

57-
Once done, run `tripleo deploy` to apply the new configuration.
56+
Once done, run `openstack overcloud node provision` to apply the new configuration.
5857

5958
Note that network configuration changes are not applied by default to avoid
6059
risk of network disruption. You will have to enforce the changes by setting the
6160
`StandaloneNetworkConfigUpdate: true` in the {OpenStackPreviousInstaller} configuration files.
6261

63-
Once `tripleo deploy` is complete, you should see new link local routes to the
62+
Once `openstack overcloud node provision` is complete, you should see new link local routes to the
6463
new subnet on each node. For example,
6564

6665
```bash
@@ -74,9 +73,11 @@ The next step is to configure similar routes for the old subnet for control plan
7473
`NodeNetworkConfigurationPolicy` CRs for each network. For example,
7574

7675
```yaml
77-
- destination: 192.168.122.0/24
78-
next-hop-interface: ospbr
76+
- destination: 192.168.122.0/24 <1>
77+
next-hop-interface: ospbr <2>
7978
```
79+
<1> The isolated network's original subnet on the data plane.
80+
<2> The {OpenShiftShort} worker network interface that corresponds to the isolated network on the data plane.
8081

8182
Once applied, you should eventually see the following route added to your {rhocp_long} nodes.
8283

0 commit comments

Comments
 (0)