uninstall_docker.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # This deletes *ALL* Origin and OpenShift Container Platform content installed by
  2. # ansible. This includes:
  3. #
  4. # configuration
  5. # containers
  6. # example templates and imagestreams
  7. # images
  8. # RPMs
  9. ---
  10. - hosts: OSEv3:children
  11. become: yes
  12. tasks:
  13. - name: Detecting Operating System
  14. shell: ls /run/ostree-booted
  15. ignore_errors: yes
  16. failed_when: false
  17. register: ostree_output
  18. # Since we're not calling openshift_facts we'll do this for now
  19. - set_fact:
  20. openshift_is_atomic: "{{ ostree_output.rc == 0 }}"
  21. openshift_is_containerized: "{{ ostree_output.rc == 0 or containerized | default(false) | bool }}"
  22. - hosts: nodes:masters
  23. become: yes
  24. tasks:
  25. - name: Stop docker service
  26. service:
  27. name: docker
  28. state: stopped
  29. enabled: no
  30. failed_when: false
  31. register: l_docker_restart_docker_in_pb_result
  32. until: not (l_docker_restart_docker_in_pb_result is failed)
  33. retries: 3
  34. delay: 30
  35. - name: Reset docker-storage-setup
  36. shell: docker-storage-setup --reset
  37. failed_when: False
  38. - name: rm -rf docker config files
  39. shell: "rm {{ item }} -rf"
  40. failed_when: False
  41. with_items:
  42. - /etc/docker*
  43. - /etc/sysconfig/docker*
  44. - /etc/systemd/system/docker*