clean_image.yml 861 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. - name: Reboot instance
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. tasks:
  7. # After installing certain packages rebooting the instance is a must before all
  8. # changes (e.g. new Selinux rules) get properly applied and propagated.
  9. # Must be done before the cloud-init is cleaned.
  10. # Otherwise, the cloud-init will be run again.
  11. - name: Reboot instance
  12. import_role:
  13. name: openshift_aws
  14. tasks_from: reboot_instance.yml
  15. when: openshift_node_reboot_instance_before_cleanup | default(false)
  16. - name: Configure nodes
  17. hosts: oo_nodes_to_config
  18. tasks:
  19. - name: Remove any ansible facts created during AMI creation
  20. file:
  21. path: "/etc/ansible/facts.d/{{ item }}"
  22. state: absent
  23. with_items:
  24. - openshift.fact
  25. - name: Clean cloud-init path
  26. file:
  27. state: absent
  28. path: "/var/lib/cloud/"