I followed the README guide to install multus-cni:
cat ./deployments/multus-daemonset.yml | kubectl apply -f -
and i think multus-cni is successfully installed by check multus-pod status:
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 43m default-scheduler Successfully assigned kube-system/kube-multus-ds-kvrh8 to master
Normal Pulled 43m kubelet Container image "ghcr.io/k8snetworkplumbingwg/multus-cni:snapshot" already present on machine
Normal Created 43m kubelet Created container install-multus-binary
Normal Started 43m kubelet Started container install-multus-binary
Normal Pulled 43m kubelet Container image "ghcr.io/k8snetworkplumbingwg/multus-cni:snapshot" already present on machine
Normal Created 43m kubelet Created container kube-multus
Normal Started 43m kubelet Started container kube-multus
Then i try to install a samplepod, but i get this error:
error adding container to network "multus-cni-network": CmdAdd (shim): failed to send CNI request: Post "http://dummy/cni": dial unix /run/multus/multus.sock: connect: connection refused
Hello,
I followed the README guide to install multus-cni:
cat ./deployments/multus-daemonset.yml | kubectl apply -f -
and i think multus-cni is successfully installed by check multus-pod status:
Then i try to install a samplepod, but i get this error: error adding container to network "multus-cni-network": CmdAdd (shim): failed to send CNI request: Post "http://dummy/cni": dial unix /run/multus/multus.sock: connect: connection refused
Could anyone know what's the problem? Thank you