config.yml 658 B

1234567891011121314151617181920212223
  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: "{{ item }}"
  14. groups: oo_first_master
  15. with_items: groups.masters.0
  16. - include: ../../common/openshift-node/config.yml
  17. vars:
  18. openshift_first_master: "{{ groups.masters.0 }}"
  19. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  20. openshift_debug_level: 4
  21. openshift_deployment_type: "{{ deployment_type }}"