config.yml 1.0 KB

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