c12s-kubespray/roles/network_plugin/calico/tasks/reset.yml

24 lines
625 B
YAML
Raw Normal View History

2018-12-04 19:37:45 +00:00
---
- name: reset | check dummy0 network device
stat:
path: /sys/class/net/dummy0
get_attributes: no
get_checksum: no
get_mime: no
2018-12-04 19:37:45 +00:00
register: dummy0
- name: reset | remove the network device created by calico
command: ip link del dummy0
when: dummy0.stat.exists
- name: reset | get remaining routes set by bird
2018-12-04 19:37:45 +00:00
command: ip route show proto bird
changed_when: false
2018-12-04 19:37:45 +00:00
register: bird_routes
- name: reset | remove remaining routes set by bird # noqa 301
2018-12-04 19:37:45 +00:00
command: "ip route del {{ bird_route }} proto bird"
with_items: "{{ bird_routes.stdout_lines }}"
loop_control:
loop_var: bird_route