feature/networkmanager#914
Draft
meritissimo1 wants to merge 6 commits into
Draft
Conversation
added 6 commits
April 14, 2026 19:33
…-networkd Updated CentOS initialization tasks to start and enable NetworkManager instead of stopping it. The systemd-networkd service will no longer be used. Signed-off-by: Marcelo Moreira <mmoreira@redhat.com>
Created a new dedicated role using nmcli to handle network configurations on RedHat systems. This role is responsible for setting up the management bridge and the OVS cluster interface. Signed-off-by: Marcelo Moreira <mmoreira@redhat.com>
…family Refactored the network setup playbook to conditionally change systemd-networkd roles when running on RHEL. Integrated the new network_networkmanager role specifically for the RedHat OS family. Signed-off-by: Marcelo Moreira <mmoreira@redhat.com>
Signed-off-by: Marcelo Moreira <mmoreira@redhat.com>
…ken pipes Signed-off-by: Marcelo Moreira <mmoreira@redhat.com>
…network interfaces Signed-off-by: Marcelo Moreira <mmoreira@redhat.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi everyone! I'm opening this PR as a draft first just to run the CI and validate my changes.
Basically, these changes involve replacing the systemd-networkd package with NetworkManager only in Red Hat family distributions, as it is the standard for CentOS/RHEL. To make this work, I created a new dedicated role called network_networkmanager that uses nmcli to configure the management bridge and the OVS cluster interface.
I also tweaked the main network playbook so it automatically skips the Debian specific roles, like systemd-networkd and networkdwait, when running on RedHat, applying the new NetworkManager role instead.
I'll let the CI do its thing now to see how it goes :)
Cheers!