diff --git a/README.md b/README.md index 31bd0b48d6a0a30175ddb27c107a6006d58e36e5..09c43a7e3f8b729daf0a7cd2d64f0e79ef553d72 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ Note: Upstart/SysV init based OS types are not supported. - [flanneld](https://github.com/coreos/flannel) v0.12.0 - [kube-ovn](https://github.com/alauda/kube-ovn) v1.2.1 - [kube-router](https://github.com/cloudnativelabs/kube-router) v1.0.0 - - [multus](https://github.com/intel/multus-cni) v3.4.2 + - [multus](https://github.com/intel/multus-cni) v3.6.0 - [weave](https://github.com/weaveworks/weave) v2.6.5 - Application - [cephfs-provisioner](https://github.com/kubernetes-incubator/external-storage) v2.1.0-k8s1.11 diff --git a/roles/download/defaults/main.yml b/roles/download/defaults/main.yml index f908093a5ce2ee45f21c5bb74f24c0799d0934f0..f91e13b99681d4c1ce2327540a8af147d2e63e7d 100644 --- a/roles/download/defaults/main.yml +++ b/roles/download/defaults/main.yml @@ -82,7 +82,7 @@ contiv_version: 1.2.1 cilium_version: "v1.8.1" kube_ovn_version: "v1.2.1" kube_router_version: "v1.0.0" -multus_version: "v3.4.2" +multus_version: "v3.6" # Get kubernetes major version (i.e. 1.17.4 => 1.17) kube_major_version: "{{ kube_version | regex_replace('^v([0-9])+\\.([0-9]+)\\.[0-9]+', 'v\\1.\\2') }}" diff --git a/roles/network_plugin/multus/defaults/main.yml b/roles/network_plugin/multus/defaults/main.yml index 768efbf8d228b60d029975d1634afae3ea5a8298..cbeb4cb323e2bf3f88be6a7c6385cf6f31db4d6f 100644 --- a/roles/network_plugin/multus/defaults/main.yml +++ b/roles/network_plugin/multus/defaults/main.yml @@ -1,7 +1,7 @@ --- multus_conf_file: "auto" multus_cni_conf_dir_host: "/etc/cni/net.d" -multus_cni_bin_dir_host: "{{ '/usr/libexec/cni' if container_manager == 'crio' else '/opt/cni/bin' }}" +multus_cni_bin_dir_host: "/opt/cni/bin" multus_cni_run_dir_host: "/run" multus_cni_conf_dir: "{{ ('/host', multus_cni_conf_dir_host) | join }}" multus_cni_bin_dir: "{{ ('/host', multus_cni_bin_dir_host) | join }}"