diff --git a/roles/reset/tasks/main.yml b/roles/reset/tasks/main.yml index 77adf12051699dd25422aa1e9cb762916b4c8585..4ca32a51490552bd91828d607fc75552f6c31d33 100644 --- a/roles/reset/tasks/main.yml +++ b/roles/reset/tasks/main.yml @@ -150,6 +150,34 @@ - files - dns +- name: reset | check cni network device + stat: + path: /sys/class/net/cni0 + register: cni + when: kube_network_plugin == 'flannel' + tags: + - flannel + +- name: reset | remove the network device created by the flannel + command: ip link del cni0 + when: kube_network_plugin == 'flannel' and cni.stat.exists + tags: + - flannel + +- name: reset | check flannel network device + stat: + path: /sys/class/net/flannel.1 + register: flannel + when: kube_network_plugin == 'flannel' + tags: + - flannel + +- name: reset | remove the network device created by the flannel + command: ip link del flannel.1 + when: kube_network_plugin == 'flannel' and flannel.stat.exists + tags: + - flannel + - name: reset | Restart network service: name: >-