docker_image_availability.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. """Check that required Docker images are available."""
  2. from pipes import quote
  3. from ansible.module_utils import six
  4. from openshift_checks import OpenShiftCheck
  5. from openshift_checks.mixins import DockerHostMixin
  6. NODE_IMAGE_SUFFIXES = ["haproxy-router", "docker-registry", "deployer", "pod"]
  7. DEPLOYMENT_IMAGE_INFO = {
  8. "origin": {
  9. "namespace": "openshift",
  10. "name": "origin",
  11. "registry_console_image": "cockpit/kubernetes",
  12. },
  13. "openshift-enterprise": {
  14. "namespace": "openshift3",
  15. "name": "ose",
  16. "registry_console_image": "registry.access.redhat.com/openshift3/registry-console",
  17. },
  18. }
  19. class DockerImageAvailability(DockerHostMixin, OpenShiftCheck):
  20. """Check that required Docker images are available.
  21. Determine docker images that an install would require and check that they
  22. are either present in the host's docker index, or available for the host to pull
  23. with known registries as defined in our inventory file (or defaults).
  24. """
  25. name = "docker_image_availability"
  26. tags = ["preflight"]
  27. # we use python-docker-py to check local docker for images, and skopeo
  28. # to look for images available remotely without waiting to pull them.
  29. dependencies = ["python-docker-py", "skopeo"]
  30. # command for checking if remote registries have an image, without docker pull
  31. skopeo_command = "timeout 10 skopeo inspect --tls-verify={tls} {creds} docker://{registry}/{image}"
  32. skopeo_example_command = "skopeo inspect [--tls-verify=false] [--creds=<user>:<pass>] docker://<registry>/<image>"
  33. def __init__(self, *args, **kwargs):
  34. super(DockerImageAvailability, self).__init__(*args, **kwargs)
  35. self.registries = dict(
  36. # set of registries that need to be checked insecurely (note: not accounting for CIDR entries)
  37. insecure=set(self.ensure_list("openshift_docker_insecure_registries")),
  38. # set of registries that should never be queried even if given in the image
  39. blocked=set(self.ensure_list("openshift_docker_blocked_registries")),
  40. )
  41. # ordered list of registries (according to inventory vars) that docker will try for unscoped images
  42. regs = self.ensure_list("openshift_docker_additional_registries")
  43. # currently one of these registries is added whether the user wants it or not.
  44. deployment_type = self.get_var("openshift_deployment_type")
  45. if deployment_type == "origin" and "docker.io" not in regs:
  46. regs.append("docker.io")
  47. elif deployment_type == 'openshift-enterprise' and "registry.access.redhat.com" not in regs:
  48. regs.append("registry.access.redhat.com")
  49. self.registries["configured"] = regs
  50. # for the oreg_url registry there may be credentials specified
  51. components = self.get_var("oreg_url", default="").split('/')
  52. self.registries["oreg"] = "" if len(components) < 3 else components[0]
  53. self.skopeo_command_creds = ""
  54. oreg_auth_user = self.get_var('oreg_auth_user', default='')
  55. oreg_auth_password = self.get_var('oreg_auth_password', default='')
  56. if oreg_auth_user != '' and oreg_auth_password != '':
  57. self.skopeo_command_creds = "--creds={}:{}".format(quote(oreg_auth_user), quote(oreg_auth_password))
  58. # record whether we could reach a registry or not (and remember results)
  59. self.reachable_registries = {}
  60. def is_active(self):
  61. """Skip hosts with unsupported deployment types."""
  62. deployment_type = self.get_var("openshift_deployment_type")
  63. has_valid_deployment_type = deployment_type in DEPLOYMENT_IMAGE_INFO
  64. return super(DockerImageAvailability, self).is_active() and has_valid_deployment_type
  65. def run(self):
  66. msg, failed = self.ensure_dependencies()
  67. if failed:
  68. return {
  69. "failed": True,
  70. "msg": "Some dependencies are required in order to check Docker image availability.\n" + msg
  71. }
  72. required_images = self.required_images()
  73. missing_images = set(required_images) - set(self.local_images(required_images))
  74. # exit early if all images were found locally
  75. if not missing_images:
  76. return {}
  77. available_images = self.available_images(missing_images)
  78. unavailable_images = set(missing_images) - set(available_images)
  79. if unavailable_images:
  80. unreachable = [reg for reg, reachable in self.reachable_registries.items() if not reachable]
  81. unreachable_msg = "Failed connecting to: {}\n".format(", ".join(unreachable))
  82. blocked_msg = "Blocked registries: {}\n".format(", ".join(self.registries["blocked"]))
  83. msg = (
  84. "One or more required container images are not available:\n {missing}\n"
  85. "Checked with: {cmd}\n"
  86. "Default registries searched: {registries}\n"
  87. "{blocked}"
  88. "{unreachable}"
  89. ).format(
  90. missing=",\n ".join(sorted(unavailable_images)),
  91. cmd=self.skopeo_example_command,
  92. registries=", ".join(self.registries["configured"]),
  93. blocked=blocked_msg if self.registries["blocked"] else "",
  94. unreachable=unreachable_msg if unreachable else "",
  95. )
  96. return dict(failed=True, msg=msg)
  97. return {}
  98. def required_images(self):
  99. """
  100. Determine which images we expect to need for this host.
  101. Returns: a set of required images like 'openshift/origin:v3.6'
  102. The thorny issue of determining the image names from the variables is under consideration
  103. via https://github.com/openshift/openshift-ansible/issues/4415
  104. For now we operate as follows:
  105. * For containerized components (master, node, ...) we look at the deployment type and
  106. use openshift/origin or openshift3/ose as the base for those component images. The
  107. version is openshift_image_tag as determined by the openshift_version role.
  108. * For OpenShift-managed infrastructure (router, registry...) we use oreg_url if
  109. it is defined; otherwise we again use the base that depends on the deployment type.
  110. Registry is not included in constructed images. It may be in oreg_url or etcd image.
  111. """
  112. required = set()
  113. deployment_type = self.get_var("openshift_deployment_type")
  114. host_groups = self.get_var("group_names")
  115. # containerized etcd may not have openshift_image_tag, see bz 1466622
  116. image_tag = self.get_var("openshift_image_tag", default="latest")
  117. image_info = DEPLOYMENT_IMAGE_INFO[deployment_type]
  118. # template for images that run on top of OpenShift
  119. image_url = "{}/{}-{}:{}".format(image_info["namespace"], image_info["name"], "${component}", "${version}")
  120. image_url = self.get_var("oreg_url", default="") or image_url
  121. if 'oo_nodes_to_config' in host_groups:
  122. for suffix in NODE_IMAGE_SUFFIXES:
  123. required.add(image_url.replace("${component}", suffix).replace("${version}", image_tag))
  124. # The registry-console is for some reason not prefixed with ose- like the other components.
  125. # Nor is it versioned the same, so just look for latest.
  126. # Also a completely different name is used for Origin.
  127. required.add(image_info["registry_console_image"])
  128. # images for containerized components
  129. if self.get_var("openshift", "common", "is_containerized"):
  130. components = set()
  131. if 'oo_nodes_to_config' in host_groups:
  132. components.update(["node", "openvswitch"])
  133. if 'oo_masters_to_config' in host_groups: # name is "origin" or "ose"
  134. components.add(image_info["name"])
  135. for component in components:
  136. required.add("{}/{}:{}".format(image_info["namespace"], component, image_tag))
  137. if 'oo_etcd_to_config' in host_groups: # special case, note it is the same for origin/enterprise
  138. required.add("registry.access.redhat.com/rhel7/etcd") # and no image tag
  139. return required
  140. def local_images(self, images):
  141. """Filter a list of images and return those available locally."""
  142. found_images = []
  143. for image in images:
  144. # docker could have the image name as-is or prefixed with any registry
  145. imglist = [image] + [reg + "/" + image for reg in self.registries["configured"]]
  146. if self.is_image_local(imglist):
  147. found_images.append(image)
  148. return found_images
  149. def is_image_local(self, image):
  150. """Check if image is already in local docker index."""
  151. result = self.execute_module("docker_image_facts", {"name": image})
  152. return bool(result.get("images")) and not result.get("failed")
  153. def ensure_list(self, registry_param):
  154. """Return the task var as a list."""
  155. # https://bugzilla.redhat.com/show_bug.cgi?id=1497274
  156. # If the result was a string type, place it into a list. We must do this
  157. # as using list() on a string will split the string into its characters.
  158. # Otherwise cast to a list as was done previously.
  159. registry = self.get_var(registry_param, default=[])
  160. if not isinstance(registry, six.string_types):
  161. return list(registry)
  162. return self.normalize(registry)
  163. def available_images(self, images):
  164. """Search remotely for images. Returns: list of images found."""
  165. return [
  166. image for image in images
  167. if self.is_available_skopeo_image(image)
  168. ]
  169. def is_available_skopeo_image(self, image):
  170. """Use Skopeo to determine if required image exists in known registry(s)."""
  171. registries = self.registries["configured"]
  172. # If image already includes a registry, only use that.
  173. # NOTE: This logic would incorrectly identify images that do not use a namespace, e.g.
  174. # registry.access.redhat.com/rhel7 as if the registry were a namespace.
  175. # It's not clear that there's any way to distinguish them, but fortunately
  176. # the current set of images all look like [registry/]namespace/name[:version].
  177. if image.count("/") > 1:
  178. registry, image = image.split("/", 1)
  179. registries = [registry]
  180. for registry in registries:
  181. if registry in self.registries["blocked"]:
  182. continue # blocked will never be consulted
  183. if registry not in self.reachable_registries:
  184. self.reachable_registries[registry] = self.connect_to_registry(registry)
  185. if not self.reachable_registries[registry]:
  186. continue # do not keep trying unreachable registries
  187. args = dict(registry=registry, image=image)
  188. args["tls"] = "false" if registry in self.registries["insecure"] else "true"
  189. args["creds"] = self.skopeo_command_creds if registry == self.registries["oreg"] else ""
  190. result = self.execute_module_with_retries("command", {"_raw_params": self.skopeo_command.format(**args)})
  191. if result.get("rc", 0) == 0 and not result.get("failed"):
  192. return True
  193. if result.get("rc") == 124: # RC 124 == timed out; mark unreachable
  194. self.reachable_registries[registry] = False
  195. return False
  196. def connect_to_registry(self, registry):
  197. """Use ansible wait_for module to test connectivity from host to registry. Returns bool."""
  198. # test a simple TCP connection
  199. host, _, port = registry.partition(":")
  200. port = port or 443
  201. args = dict(host=host, port=port, state="started", timeout=30)
  202. result = self.execute_module("wait_for", args)
  203. return result.get("rc", 0) == 0 and not result.get("failed")