config.yml 590 B

12345678910111213141516171819
  1. ---
  2. - name: Populate oo_masters_to_config host group
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_masters_to_config
  7. add_host:
  8. name: "{{ item }}"
  9. groups: oo_masters_to_config
  10. ansible_ssh_user: root
  11. with_items: oo_host_group_exp | default([])
  12. - include: ../../common/openshift-master/config.yml
  13. vars:
  14. openshift_cluster_id: "{{ cluster_id }}"
  15. openshift_debug_level: 4
  16. openshift_deployment_type: "{{ deployment_type }}"
  17. openshift_hostname: "{{ ec2_private_ip_address }}"
  18. openshift_public_hostname: "{{ ec2_ip_address }}"