config.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  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_hosts: "{{ (groups['tag_host-type-etcd']|default([])) | intersect((groups['tag_env-' ~ cluster_id]|default([]))) }}"
  19. g_lb_hosts: "{{ (groups['tag_host-type-lb']|default([])) | intersect((groups['tag_env-' ~ cluster_id]|default([]))) }}"
  20. g_master_hosts: "{{ (groups['tag_host-type-master']|default([])) | intersect((groups['tag_env-' ~ cluster_id]|default([]))) }}"
  21. g_nfs_hosts: "{{ (groups['tag_host-type-nfs']|default([])) | intersect((groups['tag_env-' ~ cluster_id]|default([]))) }}"
  22. g_node_hosts: "{{ (groups['tag_host-type-node']|default([])) | intersect((groups['tag_env-' ~ cluster_id]|default([]))) }}"
  23. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  24. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  25. g_nodeonmaster: true
  26. openshift_cluster_id: "{{ cluster_id }}"
  27. openshift_debug_level: 2
  28. openshift_deployment_type: "{{ deployment_type }}"
  29. openshift_hostname: "{{ gce_private_ip }}"
  30. openshift_use_openshift_sdn: "{{ hostvars.localhost.use_sdn }}"
  31. os_sdn_network_plugin_name: "{{ hostvars.localhost.sdn_plugin }}"