We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4247a3c commit 0ed76c9Copy full SHA for 0ed76c9
cluster/up.sh
@@ -30,5 +30,8 @@ for node in $(./cluster/kubectl.sh get nodes --no-headers | awk '{print $1}'); d
30
done
31
32
echo 'Deploying multus'
33
-./cluster/kubectl.sh apply -f https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/v4.0.1/deployments/multus-daemonset.yml
+MULTUS_VERSION=v4.0.1
34
+MULTUS_MANIFEST=https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/${MULTUS_VERSION}/deployments/multus-daemonset.yml
35
+# update the tag until https://github.com/k8snetworkplumbingwg/multus-cni/issues/1170 is fixed
36
+curl -L ${MULTUS_MANIFEST} | sed "s/:snapshot/:${MULTUS_VERSION}/g" | ./cluster/kubectl.sh apply -f -
37
./cluster/kubectl.sh -n kube-system rollout status daemonset kube-multus-ds --timeout 300s
0 commit comments