image_prep.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. - when:
  27. - openshift_node_include_control_plane | default(False)
  28. block:
  29. - import_role:
  30. name: etcd
  31. tasks_from: static.yml
  32. - import_role:
  33. name: openshift_control_plane
  34. tasks_from: static_shim.yml
  35. - import_role:
  36. name: openshift_control_plane
  37. tasks_from: static.yml
  38. vars:
  39. openshift_control_plane_apply_cluster_signing_config: False
  40. - name: Re-enable excluders
  41. import_playbook: enable_excluders.yml
  42. vars:
  43. l_node_group: oo_nodes_to_config
  44. - name: Remove any undesired artifacts from build
  45. import_playbook: clean_image.yml
  46. vars:
  47. l_node_group: oo_nodes_to_config