image_prep.yml 960 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: normalize groups
  3. import_playbook: ../../prerequisites.yml
  4. vars:
  5. skip_sanity_checks: True
  6. skip_validate_hostnames: True
  7. l_openshift_version_determine_hosts: "oo_nodes_to_config"
  8. l_openshift_version_set_hosts: "all:!all"
  9. - name: run node config setup
  10. import_playbook: disable_excluders.yml
  11. vars:
  12. l_node_group: oo_nodes_to_config
  13. - name: run node config
  14. import_playbook: configure_nodes.yml
  15. vars:
  16. l_node_group: oo_nodes_to_config
  17. - name: node bootstrap config
  18. hosts: oo_nodes_to_config
  19. tasks:
  20. - import_role:
  21. name: openshift_node
  22. tasks_from: bootstrap.yml
  23. - import_role:
  24. name: openshift_node_group
  25. tasks_from: bootstrap.yml
  26. - name: Re-enable excluders
  27. import_playbook: enable_excluders.yml
  28. vars:
  29. l_node_group: oo_nodes_to_config
  30. - name: Remove any undesired artifacts from build
  31. import_playbook: clean_image.yml
  32. vars:
  33. l_node_group: oo_nodes_to_config