config.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. connection: local
  5. become: no
  6. vars_files:
  7. - vars.yml
  8. - cluster_hosts.yml
  9. tasks:
  10. - set_fact:
  11. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  12. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  13. g_etcd_hosts: "{{ etcd_hosts }}"
  14. g_master_hosts: "{{ master_hosts }}"
  15. g_node_hosts: "{{ node_hosts }}"
  16. g_lb_hosts: "{{ lb_hosts }}"
  17. g_nfs_hosts: "{{ nfs_hosts }}"
  18. - include: ../../common/openshift-cluster/config.yml
  19. vars:
  20. g_etcd_hosts: "{{ hostvars.localhost.g_etcd_hosts }}"
  21. g_master_hosts: "{{ hostvars.localhost.g_master_hosts }}"
  22. g_node_hosts: "{{ hostvars.localhost.g_node_hosts }}"
  23. g_lb_hosts: "{{ hostvars.localhost.g_lb_hosts }}"
  24. g_nfs_hosts: "{{ hostvars.localhost.g_nfs_hosts }}"
  25. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  26. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  27. g_nodeonmaster: true
  28. openshift_cluster_id: "{{ cluster_id }}"
  29. openshift_debug_level: 2
  30. openshift_deployment_type: "{{ deployment_type }}"
  31. openshift_hostname: "{{ ec2_private_ip_address }}"
  32. openshift_public_hostname: "{{ ec2_ip_address }}"