File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,30 @@ Make the following changes to your Kayobe configuration:
8686 This change does not need to be applied before migrating to Rocky Linux 9, but it should cause no harm to do so.
8787 Note that this will not affect existing VMs, only newly created VMs.
8888
89+ Routing rules
90+ -------------
91+
92+ Routing rules referencing tables by name may need adapting to be compatible with NetworkManager
93+ e.g:
94+
95+ .. code-block :: yaml
96+
97+ undercloud_prov_rules :
98+ - from {{ internal_net_name | net_cidr }} table ironic-api
99+
100+ will need to be updated to use numeric IDs:
101+
102+ .. code-block :: yaml
103+
104+ undercloud_prov_rules :
105+ - from {{ internal_net_name | net_cidr }} table 1
106+
107+ The error from NetworkManager was:
108+
109+ .. code-block :: shell
110+
111+ [1697192659.9611] keyfile: ipv4.routing-rules: invalid value for " routing-rule1" : invalid value for " table"
112+
89113 Prerequisites
90114=============
91115
You can’t perform that action at this time.
0 commit comments