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.

14 lines
362 B

  1. ---
  2. - name: reset_calico_cni
  3. command: /bin/true
  4. notify:
  5. - delete 10-calico.conflist
  6. - delete calico-node containers
  7. - name: delete 10-calico.conflist
  8. file:
  9. path: /etc/calico/10-calico.conflist
  10. state: absent
  11. - name: delete calico-node containers
  12. shell: "docker ps -af name=k8s_POD_calico-node* -q | xargs --no-run-if-empty docker rm -f"