config.yml 882 B

12345678910111213141516171819202122
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. vars_files:
  5. - vars.yml
  6. tasks:
  7. - set_fact:
  8. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  9. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  10. - include: ../../common/openshift-cluster/config.yml
  11. vars:
  12. g_etcd_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-etcd' }}"
  13. g_masters_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-master' }}"
  14. g_nodes_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-node' }}"
  15. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  16. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  17. openshift_cluster_id: "{{ cluster_id }}"
  18. openshift_debug_level: 4
  19. openshift_deployment_type: "{{ deployment_type }}"
  20. openshift_hostname: "{{ ec2_private_ip_address }}"
  21. openshift_public_hostname: "{{ ec2_ip_address }}"