Skip to content

Rocky9: Add section on routing rules #788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions doc/source/operations/rocky-linux-9.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,30 @@ Make the following changes to your Kayobe configuration:
This change does not need to be applied before migrating to Rocky Linux 9, but it should cause no harm to do so.
Note that this will not affect existing VMs, only newly created VMs.

Routing rules
-------------

Routing rules referencing tables by name may need adapting to be compatible with NetworkManager
e.g:

.. code-block:: yaml

undercloud_prov_rules:
- from {{ internal_net_name | net_cidr }} table ironic-api

will need to be updated to use numeric IDs:

.. code-block:: yaml

undercloud_prov_rules:
- from {{ internal_net_name | net_cidr }} table 1

The error from NetworkManager was:

.. code-block:: shell

[1697192659.9611] keyfile: ipv4.routing-rules: invalid value for "routing-rule1": invalid value for "table"

Prerequisites
=============

Expand Down