Browse Source

remove nodelocaldns iface on reset (#4460)

pull/4463/head
Erwan Miran 5 years ago
committed by Kubernetes Prow Robot
parent
commit
09bbdadcee
1 changed files with 11 additions and 0 deletions
  1. 11
      roles/reset/tasks/main.yml

11
roles/reset/tasks/main.yml

@ -153,6 +153,17 @@
- kube_proxy_mode == 'ipvs'
- kube_ipvs0.stat.exists
- name: reset | check nodelocaldns network device
stat:
path: /sys/class/net/nodelocaldns
register: nodelocaldns_device
- name: reset | Remove nodelocaldns
command: "ip link del nodelocaldns"
when:
- enable_nodelocaldns|default(false)|bool
- nodelocaldns_device.stat.exists
- name: reset | delete some files and directories
file:
path: "{{ item }}"

Loading…
Cancel
Save