config.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ---
  2. # TODO: fix firewall related bug with GCE and origin, since GCE is overriding
  3. # /etc/sysconfig/iptables
  4. - hosts: localhost
  5. gather_facts: no
  6. connection: local
  7. become: no
  8. vars_files:
  9. - vars.yml
  10. - cluster_hosts.yml
  11. tasks:
  12. - set_fact:
  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. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  19. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  20. use_sdn: "{{ do_we_use_openshift_sdn }}"
  21. sdn_plugin: "{{ sdn_network_plugin }}"
  22. - include: ../../common/openshift-cluster/config.yml
  23. vars:
  24. g_etcd_hosts: "{{ hostvars.localhost.g_etcd_hosts }}"
  25. g_master_hosts: "{{ hostvars.localhost.g_master_hosts }}"
  26. g_node_hosts: "{{ hostvars.localhost.g_node_hosts }}"
  27. g_lb_hosts: "{{ hostvars.localhost.g_lb_hosts }}"
  28. g_nfs_hosts: "{{ hostvars.localhost.g_nfs_hosts }}"
  29. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  30. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  31. g_nodeonmaster: true
  32. openshift_cluster_id: "{{ cluster_id }}"
  33. openshift_debug_level: 2
  34. openshift_deployment_type: "{{ deployment_type }}"
  35. openshift_hostname: "{{ gce_private_ip }}"
  36. openshift_use_openshift_sdn: "{{ hostvars.localhost.use_sdn }}"
  37. os_sdn_network_plugin_name: "{{ hostvars.localhost.sdn_plugin }}"