Skip to content

Commit

Permalink
cluster: Unpin NetworkManager 1.34 (#997)
Browse files Browse the repository at this point in the history
The bug [1] that forced kubernetes-nmstate to pin to NM 1.34 has being
fixed, this change use the NM provided at kubevirtci.

[1] https://bugzilla.redhat.com/show_bug.cgi?id=2037411

Signed-off-by: Quique Llorente <[email protected]>
  • Loading branch information
qinqon authored Feb 28, 2022
1 parent 44670de commit 78b45c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster/up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ for node in $(./cluster/kubectl.sh get nodes --no-headers | awk '{print $1}'); d
done
done

echo 'Installing Open vSwitch and NetworkManager 1.34 on nodes'
echo 'Installing Open vSwitch and latest NetworkManager on nodes'
for node in $(./cluster/kubectl.sh get nodes --no-headers | awk '{print $1}'); do
./cluster/cli.sh ssh ${node} -- sudo dnf install -y centos-release-nfv-openvswitch
./cluster/cli.sh ssh ${node} -- sudo dnf install -y openvswitch2.16 libibverbs NetworkManager-1.34.0 NetworkManager-ovs-1.34.0
./cluster/cli.sh ssh ${node} -- sudo dnf install -y openvswitch2.16 libibverbs NetworkManager NetworkManager-ovs
./cluster/cli.sh ssh ${node} -- sudo systemctl daemon-reload
./cluster/cli.sh ssh ${node} -- sudo systemctl enable openvswitch
./cluster/cli.sh ssh ${node} -- sudo systemctl restart openvswitch
Expand Down

0 comments on commit 78b45c9

Please sign in to comment.