File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -30,5 +30,8 @@ for node in $(./cluster/kubectl.sh get nodes --no-headers | awk '{print $1}'); d
30
30
done
31
31
32
32
echo ' Deploying multus'
33
- ./cluster/kubectl.sh apply -f https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/v4.0.1/deployments/multus-daemonset.yml
33
+ 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 -
34
37
./cluster/kubectl.sh -n kube-system rollout status daemonset kube-multus-ds --timeout 300s
You can’t perform that action at this time.
0 commit comments