config.yml 938 B

123456789101112131415161718192021222324
  1. ---
  2. # TODO: need to figure out a plan for setting hostname, currently the default
  3. # is localhost, so no hostname value (or public_hostname) value is getting
  4. # assigned
  5. - hosts: localhost
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  10. - set_fact:
  11. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  12. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  13. - include: ../../common/openshift-cluster/config.yml
  14. vars:
  15. g_etcd_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-etcd' }}"
  16. g_masters_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-master' }}"
  17. g_nodes_group: "{{ 'tag_env-host-type-' ~ cluster_id ~ '-openshift-node' }}"
  18. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  19. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  20. openshift_cluster_id: "{{ cluster_id }}"
  21. openshift_debug_level: 4
  22. openshift_deployment_type: "{{ deployment_type }}"