mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-17 19:20:10 -03:30
Reset tasks specific to a network_plugin moved inside its role directory + Reset tasks specific to cilium
This commit is contained in:
9
roles/network_plugin/cilium/tasks/reset.yml
Normal file
9
roles/network_plugin/cilium/tasks/reset.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
- name: reset | check and remove devices if still present
|
||||
include_tasks: reset_iface.yml
|
||||
vars:
|
||||
iface: "{{ item }}"
|
||||
with_items:
|
||||
- cilium_host
|
||||
- cilium_net
|
||||
- cilium_vxlan
|
||||
9
roles/network_plugin/cilium/tasks/reset_iface.yml
Normal file
9
roles/network_plugin/cilium/tasks/reset_iface.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
- name: "reset | check if network device {{ iface }} is present"
|
||||
stat:
|
||||
path: "/sys/class/net/{{ iface }}"
|
||||
register: device_remains
|
||||
|
||||
- name: "reset | remove network device {{ iface }}"
|
||||
command: "ip link del {{ iface }}"
|
||||
when: device_remains.stat.exists
|
||||
18
roles/network_plugin/flannel/tasks/reset.yml
Normal file
18
roles/network_plugin/flannel/tasks/reset.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
- name: reset | check cni network device
|
||||
stat:
|
||||
path: /sys/class/net/cni0
|
||||
register: cni
|
||||
|
||||
- name: reset | remove the network device created by the flannel
|
||||
command: ip link del cni0
|
||||
when: cni.stat.exists
|
||||
|
||||
- name: reset | check flannel network device
|
||||
stat:
|
||||
path: /sys/class/net/flannel.1
|
||||
register: flannel
|
||||
|
||||
- name: reset | remove the network device created by the flannel
|
||||
command: ip link del flannel.1
|
||||
when: flannel.stat.exists
|
||||
Reference in New Issue
Block a user