basic_facts.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. no_log: True
  18. - name: Detecting Operating System from ostree_booted
  19. stat:
  20. path: /run/ostree-booted
  21. register: ostree_booted
  22. # TODO(michaelgugino) remove this line once CI is updated.
  23. - name: set openshift_deployment_type if unset
  24. set_fact:
  25. openshift_deployment_type: "{{ deployment_type }}"
  26. when:
  27. - openshift_deployment_type is undefined
  28. - deployment_type is defined
  29. - name: initialize_facts set fact openshift_is_atomic and openshift_is_containerized
  30. set_fact:
  31. openshift_is_atomic: "{{ ostree_booted.stat.exists }}"
  32. openshift_is_containerized: "{{ ostree_booted.stat.exists or (containerized | default(false) | bool) }}"
  33. - name: Set use_crio to True if cri-o rpm is requested
  34. set_fact:
  35. openshift_use_crio: True
  36. when:
  37. - openshift_crio_use_rpm | default(False) | bool
  38. # TODO: Should this be moved into health checks??
  39. # Seems as though any check that happens with a corresponding fail should move into health_checks
  40. # Fail as early as possible if Atomic and old version of Docker
  41. - when:
  42. - openshift_is_atomic | bool
  43. block:
  44. # See https://access.redhat.com/articles/2317361
  45. # and https://github.com/ansible/ansible/issues/15892
  46. # NOTE: the "'s can not be removed at this level else the docker command will fail
  47. # NOTE: When ansible >2.2.1.x is used this can be updated per
  48. # https://github.com/openshift/openshift-ansible/pull/3475#discussion_r103525121
  49. - name: Determine Atomic Host Docker Version
  50. shell: 'CURLY="{"; docker version --format "$CURLY{json .Server.Version}}"'
  51. register: l_atomic_docker_version
  52. - name: assert atomic host docker version is 1.12 or later
  53. assert:
  54. that:
  55. - l_atomic_docker_version.stdout | replace('"', '') is version_compare('1.12','>=')
  56. msg: Installation on Atomic Host requires Docker 1.12 or later. Please upgrade and restart the Atomic Host.
  57. - name: Initialize special first-master variables
  58. hosts: oo_first_master
  59. roles:
  60. - role: openshift_facts
  61. tasks:
  62. - when: not (osm_default_node_selector is defined)
  63. block:
  64. - stat:
  65. path: "/etc/origin/master/master-config.yaml"
  66. register: master_config_path_check
  67. - slurp:
  68. src: "/etc/origin/master/master-config.yaml"
  69. register: openshift_master_config_encoded_contents
  70. when: master_config_path_check.stat.exists
  71. - set_fact:
  72. openshift_master_config_node_selector: "{{ l_existing_config_master_config.projectConfig.defaultNodeSelector }}"
  73. vars:
  74. l_existing_config_master_config: "{{ (openshift_master_config_encoded_contents.content | b64decode | from_yaml) }}"
  75. when:
  76. - master_config_path_check.stat.exists
  77. - l_existing_config_master_config.projectConfig is defined
  78. - l_existing_config_master_config.projectConfig.defaultNodeSelector is defined
  79. - l_existing_config_master_config.projectConfig.defaultNodeSelector != ''
  80. - set_fact:
  81. # We need to setup openshift_client_binary here for special uses of delegate_to in
  82. # later roles and plays.
  83. first_master_client_binary: "{{ openshift_client_binary }}"
  84. #Some roles may require this to be set for first master
  85. openshift_client_binary: "{{ openshift_client_binary }}"
  86. # we need to know if a default node selector has been manually set outside the installer
  87. l_osm_default_node_selector: '{{ osm_default_node_selector | default(openshift_master_config_node_selector) | default("node-role.kubernetes.io/compute=true") }}'
  88. - name: Disable web console if required
  89. hosts: oo_masters_to_config
  90. gather_facts: no
  91. tasks:
  92. - set_fact:
  93. openshift_web_console_install: False
  94. when: openshift_deployment_subtype == 'registry' or ( osm_disabled_features is defined and 'WebConsole' in osm_disabled_features )