config.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # TODO: need to figure out a plan for setting hostname, currently the default
  3. # is localhost, so no hostname value (or public_hostname) value is getting
  4. # assigned
  5. - hosts: localhost
  6. gather_facts: no
  7. become: no
  8. connection: local
  9. vars_files:
  10. - vars.yml
  11. - cluster_hosts.yml
  12. tasks:
  13. - set_fact:
  14. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  15. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  16. g_etcd_hosts: "{{ etcd_hosts }}"
  17. g_master_hosts: "{{ master_hosts }}"
  18. g_node_hosts: "{{ node_hosts }}"
  19. g_lb_hosts: "{{ lb_hosts }}"
  20. g_nfs_hosts: "{{ nfs_hosts }}"
  21. - include: ../../common/openshift-cluster/config.yml
  22. vars:
  23. g_etcd_hosts: "{{ hostvars.localhost.g_etcd_hosts }}"
  24. g_master_hosts: "{{ hostvars.localhost.g_master_hosts }}"
  25. g_node_hosts: "{{ hostvars.localhost.g_node_hosts }}"
  26. g_lb_hosts: "{{ hostvars.localhost.g_lb_hosts }}"
  27. g_nfs_hosts: "{{ hostvars.localhost.g_nfs_hosts }}"
  28. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  29. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  30. openshift_cluster_id: "{{ cluster_id }}"
  31. openshift_debug_level: 2
  32. openshift_deployment_type: "{{ deployment_type }}"