configure_bootstrap.yml 567 B

123456789101112131415161718
  1. ---
  2. - name: node bootstrap config
  3. hosts: oo_nodes_to_bootstrap:!oo_exclude_bootstrapped_nodes
  4. tasks:
  5. - import_role:
  6. name: openshift_node
  7. tasks_from: bootstrap
  8. - import_role:
  9. name: openshift_node_group
  10. tasks_from: bootstrap
  11. - name: Have the nodes automatically pull their configuration
  12. import_role:
  13. name: openshift_node_group
  14. tasks_from: bootstrap_config
  15. vars:
  16. r_node_dynamic_config_name: "{{ openshift_node_group_name | default('node-config-compute') }}"
  17. - set_fact:
  18. openshift_is_bootstrapped: True