facts.yml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 host facts
  7. hosts: oo_all_hosts
  8. tasks:
  9. - name: load openshift_facts module
  10. import_role:
  11. name: openshift_facts
  12. # TODO: Should this role be refactored into health_checks??
  13. - name: Run openshift_sanitize_inventory to set variables
  14. import_role:
  15. name: openshift_sanitize_inventory
  16. - name: Detecting Operating System from ostree_booted
  17. stat:
  18. path: /run/ostree-booted
  19. register: ostree_booted
  20. # TODO(michaelgugino) remove this line once CI is updated.
  21. - name: set openshift_deployment_type if unset
  22. set_fact:
  23. openshift_deployment_type: "{{ deployment_type }}"
  24. when:
  25. - openshift_deployment_type is undefined
  26. - deployment_type is defined
  27. - name: initialize_facts set fact openshift_is_atomic and openshift_is_containerized
  28. set_fact:
  29. openshift_is_atomic: "{{ ostree_booted.stat.exists }}"
  30. openshift_is_containerized: "{{ ostree_booted.stat.exists or (containerized | default(false) | bool) }}"
  31. # TODO: Should this be moved into health checks??
  32. # Seems as though any check that happens with a corresponding fail should move into health_checks
  33. # Fail as early as possible if Atomic and old version of Docker
  34. - when:
  35. - openshift_is_atomic | bool
  36. block:
  37. # See https://access.redhat.com/articles/2317361
  38. # and https://github.com/ansible/ansible/issues/15892
  39. # NOTE: the "'s can not be removed at this level else the docker command will fail
  40. # NOTE: When ansible >2.2.1.x is used this can be updated per
  41. # https://github.com/openshift/openshift-ansible/pull/3475#discussion_r103525121
  42. - name: Determine Atomic Host Docker Version
  43. shell: 'CURLY="{"; docker version --format "$CURLY{json .Server.Version}}"'
  44. register: l_atomic_docker_version
  45. - name: assert atomic host docker version is 1.12 or later
  46. assert:
  47. that:
  48. - l_atomic_docker_version.stdout | replace('"', '') is version_compare('1.12','>=')
  49. msg: Installation on Atomic Host requires Docker 1.12 or later. Please upgrade and restart the Atomic Host.
  50. - name: Gather Cluster facts
  51. openshift_facts:
  52. role: common
  53. local_facts:
  54. deployment_type: "{{ openshift_deployment_type }}"
  55. deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}"
  56. hostname: "{{ openshift_hostname | default(None) }}"
  57. ip: "{{ openshift_ip | default(None) }}"
  58. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  59. public_ip: "{{ openshift_public_ip | default(None) }}"
  60. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  61. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  62. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  63. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  64. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  65. - name: Set fact of no_proxy_internal_hostnames
  66. openshift_facts:
  67. role: common
  68. local_facts:
  69. no_proxy_internal_hostnames: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_nodes_to_config']
  70. | union(groups['oo_masters_to_config'])
  71. | union(groups['oo_etcd_to_config'] | default([])))
  72. | lib_utils_oo_collect('openshift.common.hostname') | default([]) | join (',')
  73. }}"
  74. when:
  75. - openshift_http_proxy is defined or openshift_https_proxy is defined
  76. - openshift_generate_no_proxy_hosts | default(True) | bool
  77. - name: Initialize openshift.node.sdn_mtu
  78. openshift_facts:
  79. role: node
  80. local_facts:
  81. sdn_mtu: "{{ openshift_node_sdn_mtu | default(None) }}"
  82. - name: Initialize special first-master variables
  83. hosts: oo_first_master
  84. roles:
  85. - role: openshift_facts
  86. tasks:
  87. - set_fact:
  88. # We need to setup openshift_client_binary here for special uses of delegate_to in
  89. # later roles and plays.
  90. first_master_client_binary: "{{ openshift_client_binary }}"