delete_contiv.yml 752 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. - name: delete contiv
  3. hosts: all
  4. gather_facts: False
  5. tasks:
  6. - systemd:
  7. name: "{{ item }}"
  8. state: stopped
  9. with_items:
  10. - contiv-etcd
  11. - netmaster
  12. - netplugin
  13. - openvswitch
  14. ignore_errors: True
  15. - file:
  16. path: "{{ item }}"
  17. state: absent
  18. with_items:
  19. - /opt/cni
  20. - /opt/contiv
  21. - /etc/systemd/system/netmaster.service
  22. - /etc/systemd/system/netplugin.service
  23. - /etc/systemd/system/contiv-etcd.service
  24. - /etc/systemd/system/contiv-etcd.service.d
  25. - /var/lib/contiv-etcd
  26. - /etc/default/netmaster
  27. - /etc/default/netplugin
  28. - /etc/openvswitch/conf.db
  29. - command: systemctl daemon-reload