Skip to content

Commit

Permalink
Pin multus to v4.1.0
Browse files Browse the repository at this point in the history
To avoid being affected by potential dev breakage.

Signed-off-by: Jaime Caamaño Ruiz <[email protected]>
  • Loading branch information
jcaamano committed Sep 13, 2024
1 parent a4e2a00 commit 14afcbf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions contrib/kind-common
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,11 @@ install_kubevirt_ipam_controller() {
}

install_multus() {
echo "Installing multus-cni daemonset ..."
multus_manifest="https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/master/deployments/multus-daemonset.yml"
run_kubectl apply -f "$multus_manifest"
local version="v4.1.0"
echo "Installing multus-cni $version daemonset ..."
wget -qO- "https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/${version}/deployments/multus-daemonset.yml" |\
sed -e "s|multus-cni:snapshot|multus-cni:${version}|g" |\
run_kubectl apply -f -
}

install_mpolicy_crd() {
Expand Down

0 comments on commit 14afcbf

Please sign in to comment.