config.yml 925 B

123456789101112131415161718192021222324
  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. vars_files:
  7. - vars.yml
  8. tasks:
  9. - set_fact:
  10. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  11. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  12. - include: ../../common/openshift-cluster/config.yml
  13. vars:
  14. g_etcd_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-etcd' }}"
  15. g_masters_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-master' }}"
  16. g_nodes_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-node' }}"
  17. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  18. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  19. openshift_cluster_id: "{{ cluster_id }}"
  20. openshift_debug_level: 4
  21. openshift_deployment_type: "{{ deployment_type }}"
  22. openshift_hostname: "{{ gce_private_ip }}"