basic_facts.yml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. ---
  2. - name: Ensure that all non-node hosts are accessible
  3. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nfs_to_config
  4. any_errors_fatal: true
  5. tasks:
  6. - name: Initialize basic host facts
  7. # l_init_fact_hosts is passed in via play during control-plane-only
  8. # upgrades and scale-up plays; otherwise oo_all_hosts is used.
  9. hosts: "{{ l_init_fact_hosts | default('oo_all_hosts') }}"
  10. roles:
  11. - role: openshift_facts
  12. tasks:
  13. # TODO: Should this role be refactored into health_checks??
  14. - name: Run openshift_sanitize_inventory to set variables
  15. import_role:
  16. name: openshift_sanitize_inventory
  17. - name: Detect OS Variant from /etc/os-release
  18. fail:
  19. msg: Atomic Host installations are no longer supported
  20. when: lookup('ini', 'VARIANT_ID type=properties file=/etc/os-release') == 'atomic.host'
  21. # TODO(michaelgugino) remove this line once CI is updated.
  22. - name: set openshift_deployment_type if unset
  23. set_fact:
  24. openshift_deployment_type: "{{ deployment_type }}"
  25. when:
  26. - openshift_deployment_type is undefined
  27. - deployment_type is defined
  28. - name: Retrieve existing master configs and validate
  29. hosts: oo_masters_to_config
  30. gather_facts: no
  31. any_errors_fatal: true
  32. roles:
  33. - openshift_facts
  34. tasks:
  35. - import_role:
  36. name: openshift_control_plane
  37. tasks_from: check_existing_config.yml
  38. - when:
  39. - l_existing_config_master_config is defined
  40. - l_existing_config_master_config.networkConfig is defined
  41. block:
  42. - set_fact:
  43. openshift_portal_net: "{{ l_existing_config_master_config.networkConfig.serviceNetworkCIDR }}"
  44. - set_fact:
  45. osm_cluster_network_cidr: "{{ l_existing_config_master_config.networkConfig.clusterNetworks[0].cidr }}"
  46. osm_host_subnet_length: "{{ l_existing_config_master_config.networkConfig.clusterNetworks[0].hostSubnetLength }}"
  47. when:
  48. - l_existing_config_master_config.networkConfig.clusterNetworks is defined
  49. # End block
  50. - name: Initialize special first-master variables
  51. hosts: oo_first_master
  52. roles:
  53. - role: openshift_facts
  54. tasks:
  55. - when: not (osm_default_node_selector is defined)
  56. block:
  57. - set_fact:
  58. # l_existing_config_master_config is set in openshift_control_plane/tasks/check_existing_config.yml
  59. openshift_master_config_node_selector: "{{ l_existing_config_master_config.projectConfig.defaultNodeSelector }}"
  60. when:
  61. - l_existing_config_master_config is defined
  62. - l_existing_config_master_config.projectConfig is defined
  63. - l_existing_config_master_config.projectConfig.defaultNodeSelector is defined
  64. - l_existing_config_master_config.projectConfig.defaultNodeSelector != ''
  65. - set_fact:
  66. # We need to setup openshift_client_binary here for special uses of delegate_to in
  67. # later roles and plays.
  68. first_master_client_binary: "{{ openshift_client_binary }}"
  69. #Some roles may require this to be set for first master
  70. openshift_client_binary: "{{ openshift_client_binary }}"
  71. # we need to know if a default node selector has been manually set outside the installer
  72. l_osm_default_node_selector: '{{ osm_default_node_selector | default(openshift_master_config_node_selector) | default("node-role.kubernetes.io/compute=true") }}'
  73. - name: Disable web console if required
  74. hosts: oo_masters_to_config
  75. gather_facts: no
  76. tasks:
  77. - set_fact:
  78. openshift_web_console_install: False
  79. when:
  80. - openshift_deployment_subtype is defined
  81. - openshift_deployment_subtype == 'registry' or ( osm_disabled_features is defined and 'WebConsole' in osm_disabled_features )