config.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  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. tasks:
  11. - set_fact:
  12. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  13. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  14. use_sdn: "{{ do_we_use_openshift_sdn }}"
  15. sdn_plugin: "{{ sdn_network_plugin }}"
  16. - include: ../../common/openshift-cluster/config.yml
  17. vars:
  18. g_etcd_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-etcd' }}"
  19. g_lb_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-lb' }}"
  20. g_masters_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-master' }}"
  21. g_nodes_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-node' }}"
  22. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  23. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  24. g_nodeonmaster: true
  25. openshift_cluster_id: "{{ cluster_id }}"
  26. openshift_debug_level: 2
  27. openshift_deployment_type: "{{ deployment_type }}"
  28. openshift_hostname: "{{ gce_private_ip }}"
  29. openshift_use_openshift_sdn: "{{ hostvars.localhost.use_sdn }}"
  30. os_sdn_network_plugin_name: "{{ hostvars.localhost.sdn_plugin }}"