k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
359 B
9 lines
359 B
---
|
|
- name: reset | check contiv vxlan_sys network device
|
|
stat:
|
|
path: "/sys/class/net/vxlan_sys_{{ contiv_vxlan_port | default('4789') }}"
|
|
register: contiv_vxlan_sys
|
|
|
|
- name: reset | remove the vxlan_sys network device created by contiv
|
|
command: "ip link del vxlan_sys_{{ contiv_vxlan_port | default('4789') }}"
|
|
when: contiv_vxlan_sys.stat.exists
|