cluster_facts.yml 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ---
  2. - name: Initialize cluster facts
  3. # l_init_fact_hosts is passed in via play during control-plane-only
  4. # upgrades and scale-up plays; otherwise oo_all_hosts is used.
  5. hosts: "{{ l_init_fact_hosts | default('oo_all_hosts') }}"
  6. roles:
  7. - role: openshift_facts
  8. - role: lib_utils
  9. tasks:
  10. - name: get openshift_current_version
  11. # get_current_openshift_version is a custom module in lib_utils
  12. # this will set_fact openshift_current_version
  13. get_current_openshift_version:
  14. deployment_type: "{{ openshift_deployment_type }}"
  15. # oo_first_master group might not be present due to provisioning plays
  16. # for existing clusters, openshift_portal_net will be force-set by
  17. # basic_facts.yml from value in existing master configs.
  18. - name: set_fact openshift_portal_net if present on masters
  19. set_fact:
  20. openshift_portal_net: "{{ hostvars[groups.oo_first_master.0].openshift_portal_net }}"
  21. when:
  22. - "'oo_first_master' in groups"
  23. - "groups.oo_first_master | length > 0"
  24. - "'openshift_portal_net' in hostvars[groups.oo_first_master.0]"
  25. - name: Gather Cluster facts
  26. openshift_facts:
  27. role: common
  28. local_facts:
  29. hostname: "{{ openshift_hostname | default(None) }}"
  30. ip: "{{ openshift_ip | default(None) }}"
  31. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  32. public_ip: "{{ openshift_public_ip | default(None) }}"
  33. portal_net: "{{ openshift_portal_net }}"
  34. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  35. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  36. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  37. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  38. - name: Set fact of no_proxy_internal_hostnames
  39. openshift_facts:
  40. role: common
  41. local_facts:
  42. no_proxy_internal_hostnames: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_nodes_to_config']
  43. | union(groups['oo_masters_to_config'])
  44. | union(groups['oo_etcd_to_config'] | default([])))
  45. | lib_utils_oo_collect('openshift.common.hostname') | default([]) | join (',')
  46. }}"
  47. no_proxy_master_ips: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_masters_to_config']
  48. | default([]))
  49. | lib_utils_oo_collect('openshift.common.ip')
  50. | default([]) | join (',')
  51. }}"
  52. when:
  53. - openshift_http_proxy is defined or openshift_https_proxy is defined
  54. - openshift_generate_no_proxy_hosts | default(True) | bool
  55. - name: Initialize openshift.node.sdn_mtu
  56. openshift_facts:
  57. role: node
  58. local_facts:
  59. sdn_mtu: "{{ openshift_node_sdn_mtu | default(None) }}"
  60. - name: Initialize etcd host variables
  61. hosts: oo_masters_to_config
  62. roles:
  63. - role: openshift_facts
  64. - role: lib_utils
  65. tasks:
  66. # This needs to run after openshift_facts common role has run on etcd hosts.
  67. # lib_utils_oo_select_keys, lib_utils_oo_collect
  68. # are custom filter plugins in roles/lib_utils/filter_plugins/oo_filters.py
  69. - set_fact:
  70. openshift_no_proxy_etcd_host_ips: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_etcd_to_config'] | default([]))
  71. | lib_utils_oo_collect('openshift.common.ip') | default([]) | join(',')
  72. }}"
  73. openshift_master_etcd_port: "{{ etcd_client_port | default('2379') }}"
  74. openshift_master_etcd_hosts: "{{ hostvars
  75. | lib_utils_oo_select_keys(groups['oo_etcd_to_config']
  76. | default([]))
  77. | lib_utils_oo_collect('openshift.common.hostname')
  78. | default(none, true) }}"
  79. # This fact requires the facts set above, so needs to happen in it's own task.
  80. - set_fact:
  81. # lib_utils_oo_etcd_host_urls is a custom filter plugin in roles/lib_utils/filter_plugins/oo_filters.py
  82. openshift_master_etcd_urls: "{{ openshift_master_etcd_hosts | lib_utils_oo_etcd_host_urls(l_use_ssl, openshift_master_etcd_port) }}"
  83. vars:
  84. l_use_ssl: "{{ openshift_master_etcd_use_ssl | default(True) | bool}}"