uninstall.yml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. # This deletes *ALL* Origin, Atomic Enterprise Platform and OpenShift
  2. # Enterprise content installed by ansible. This includes:
  3. #
  4. # configuration
  5. # containers
  6. # example templates and imagestreams
  7. # images
  8. # RPMs
  9. ---
  10. - hosts:
  11. - OSEv3:children
  12. sudo: yes
  13. tasks:
  14. - name: Detecting Operating System
  15. shell: ls /run/ostree-booted
  16. ignore_errors: yes
  17. failed_when: false
  18. register: ostree_output
  19. # Since we're not calling openshift_facts we'll do this for now
  20. - set_fact:
  21. is_atomic: "{{ ostree_output.rc == 0 }}"
  22. - set_fact:
  23. is_containerized: "{{ is_atomic or containerized | default(false) | bool }}"
  24. - name: Remove br0 interface
  25. shell: ovs-vsctl del-br br0
  26. changed_when: False
  27. failed_when: False
  28. - name: Stop services
  29. service: name={{ item }} state=stopped
  30. with_items:
  31. - atomic-enterprise-master
  32. - atomic-enterprise-node
  33. - atomic-openshift-master
  34. - atomic-openshift-master-api
  35. - atomic-openshift-master-controllers
  36. - atomic-openshift-node
  37. - etcd
  38. - haproxy
  39. - openshift-master
  40. - openshift-master-api
  41. - openshift-master-controllers
  42. - openshift-node
  43. - openvswitch
  44. - origin-master
  45. - origin-master-api
  46. - origin-master-controllers
  47. - origin-node
  48. - pcsd
  49. failed_when: false
  50. - name: Stop additional atomic services
  51. service: name={{ item }} state=stopped
  52. when: is_containerized | bool
  53. with_items:
  54. - etcd_container
  55. failed_when: false
  56. - name: Remove packages
  57. action: "{{ ansible_pkg_mgr }} name={{ item }} state=absent"
  58. when: not is_atomic | bool
  59. with_items:
  60. - atomic-enterprise
  61. - atomic-enterprise-master
  62. - atomic-enterprise-node
  63. - atomic-enterprise-sdn-ovs
  64. - atomic-openshift
  65. - atomic-openshift-clients
  66. - atomic-openshift-master
  67. - atomic-openshift-node
  68. - atomic-openshift-sdn-ovs
  69. - cockpit-bridge
  70. - cockpit-docker
  71. - cockpit-shell
  72. - cockpit-ws
  73. - corosync
  74. - etcd
  75. - haproxy
  76. - kubernetes-client
  77. - openshift
  78. - openshift-master
  79. - openshift-node
  80. - openshift-sdn
  81. - openshift-sdn-ovs
  82. - openvswitch
  83. - origin
  84. - origin-clients
  85. - origin-master
  86. - origin-node
  87. - origin-sdn-ovs
  88. - pacemaker
  89. - pcs
  90. - tuned-profiles-atomic-enterprise-node
  91. - tuned-profiles-atomic-openshift-node
  92. - tuned-profiles-openshift-node
  93. - tuned-profiles-origin-node
  94. - name: Remove linux interfaces
  95. shell: ip link del "{{ item }}"
  96. changed_when: False
  97. failed_when: False
  98. with_items:
  99. - lbr0
  100. - vlinuxbr
  101. - vovsbr
  102. - shell: systemctl reset-failed
  103. changed_when: False
  104. - shell: systemctl daemon-reload
  105. changed_when: False
  106. - shell: find /var/lib/origin/openshift.local.volumes -type d -exec umount {} \; 2>/dev/null || true
  107. changed_when: False
  108. - shell: find /var/lib/atomic-enterprise/openshift.local.volumes -type d -exec umount {} \; 2>/dev/null || true
  109. changed_when: False
  110. - shell: find /var/lib/openshift/openshift.local.volumes -type d -exec umount {} \; 2>/dev/null || true
  111. changed_when: False
  112. - shell: docker rm -f "{{ item }}"-master "{{ item }}"-node
  113. changed_when: False
  114. failed_when: False
  115. with_items:
  116. - openshift-enterprise
  117. - atomic-enterprise
  118. - origin
  119. - shell: docker ps -a | grep Exited | egrep "{{ item }}" | awk '{print $1}'
  120. changed_when: False
  121. failed_when: False
  122. register: exited_containers_to_delete
  123. with_items:
  124. - aep3.*/aep
  125. - aep3.*/node
  126. - aep3.*/openvswitch
  127. - openshift3/ose
  128. - openshift3/node
  129. - openshift3/openvswitch
  130. - openshift/origin
  131. - shell: "docker rm {{ item.stdout_lines | join(' ') }}"
  132. changed_when: False
  133. failed_when: False
  134. with_items: "{{ exited_containers_to_delete.results }}"
  135. - shell: docker images | egrep {{ item }} | awk '{ print $3 }'
  136. changed_when: False
  137. failed_when: False
  138. register: images_to_delete
  139. with_items:
  140. - registry\.access\..*redhat\.com/openshift3
  141. - registry\.access\..*redhat\.com/aep3
  142. - registry\.qe\.openshift\.com/.*
  143. - registry\.access\..*redhat\.com/rhel7/etcd
  144. - docker.io/openshift
  145. - shell: "docker rmi -f {{ item.stdout_lines | join(' ') }}"
  146. changed_when: False
  147. failed_when: False
  148. with_items: "{{ images_to_delete.results }}"
  149. - name: Remove sdn drop files
  150. file:
  151. path: /run/openshift-sdn
  152. state: absent
  153. - name: restart docker
  154. service:
  155. name: docker
  156. state: restarted
  157. - name: Remove remaining files
  158. file: path={{ item }} state=absent
  159. with_items:
  160. - "~{{ ansible_ssh_user }}/.kube"
  161. - /etc/ansible/facts.d/openshift.fact
  162. - /etc/atomic-enterprise
  163. - /etc/corosync
  164. - /etc/etcd
  165. - /etc/openshift
  166. - /etc/openshift-sdn
  167. - /etc/origin
  168. - /etc/systemd/system/atomic-openshift-master.service
  169. - /etc/systemd/system/atomic-openshift-master-api.service
  170. - /etc/systemd/system/atomic-openshift-master-controllers.service
  171. - /etc/systemd/system/atomic-openshift-node.service
  172. - /etc/systemd/system/etcd_container.service
  173. - /etc/systemd/system/openvswitch.service
  174. - /etc/sysconfig/atomic-enterprise-master
  175. - /etc/sysconfig/atomic-enterprise-master-api
  176. - /etc/sysconfig/atomic-enterprise-master-controllers
  177. - /etc/sysconfig/atomic-enterprise-node
  178. - /etc/sysconfig/atomic-openshift-master
  179. - /etc/sysconfig/atomic-openshift-master-api
  180. - /etc/sysconfig/atomic-openshift-master-controllers
  181. - /etc/sysconfig/atomic-openshift-node
  182. - /etc/sysconfig/openshift-master
  183. - /etc/sysconfig/openshift-node
  184. - /etc/sysconfig/openvswitch
  185. - /etc/sysconfig/origin-master
  186. - /etc/sysconfig/origin-master-api
  187. - /etc/sysconfig/origin-master-controllers
  188. - /etc/sysconfig/origin-node
  189. - /etc/systemd/system/atomic-openshift-node.service.wants
  190. - /root/.kube
  191. - /run/openshift-sdn
  192. - /usr/share/openshift/examples
  193. - /var/lib/atomic-enterprise
  194. - /var/lib/etcd
  195. - /var/lib/openshift
  196. - /var/lib/origin
  197. - /var/lib/pacemaker
  198. - /usr/lib/systemd/system/atomic-openshift-master-api.service
  199. - /usr/lib/systemd/system/atomic-openshift-master-controllers.service
  200. - /usr/lib/systemd/system/origin-master-api.service
  201. - /usr/lib/systemd/system/origin-master-controllers.service
  202. - /usr/local/bin/openshift
  203. - /usr/local/bin/oadm
  204. - /usr/local/bin/oc
  205. - /usr/local/bin/kubectl
  206. # Since we are potentially removing the systemd unit files for separated
  207. # master-api and master-controllers services, so we need to reload the
  208. # systemd configuration manager
  209. - name: Reload systemd manager configuration
  210. command: systemctl daemon-reload
  211. - hosts: nodes
  212. sudo: yes
  213. tasks:
  214. - name: restart docker
  215. service: name=docker state=restarted