config.yml 585 B

123456789101112131415161718192021
  1. ---
  2. - name: Populate oo_nodes_to_config and oo_first_master host groups
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_nodes_to_config
  7. add_host:
  8. name: "{{ item }}"
  9. groups: oo_nodes_to_config
  10. with_items: groups.nodes
  11. - name: Evaluate oo_first_master
  12. add_host:
  13. name: "{{ groups.masters[0] }}"
  14. groups: oo_first_master
  15. - include: ../../common/openshift-node/config.yml
  16. vars:
  17. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  18. openshift_debug_level: 4
  19. openshift_deployment_type: "{{ deployment_type }}"