config.yml 939 B

1234567891011121314151617181920212223
  1. - hosts: localhost
  2. gather_facts: no
  3. become: no
  4. connection: local
  5. vars_files:
  6. - vars.yml
  7. tasks:
  8. - set_fact:
  9. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  10. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  11. - include: ../../common/openshift-cluster/config.yml
  12. vars:
  13. g_etcd_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-etcd' }}"
  14. g_lb_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-lb' }}"
  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: 2
  21. openshift_deployment_type: "{{ deployment_type }}"
  22. openshift_hostname: "{{ ansible_default_ipv4.address }}"