docker_image_availability.py 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. """Check that required Docker images are available."""
  2. from openshift_checks import OpenShiftCheck
  3. from openshift_checks.mixins import DockerHostMixin
  4. NODE_IMAGE_SUFFIXES = ["haproxy-router", "docker-registry", "deployer", "pod"]
  5. DEPLOYMENT_IMAGE_INFO = {
  6. "origin": {
  7. "namespace": "openshift",
  8. "name": "origin",
  9. "registry_console_image": "cockpit/kubernetes",
  10. },
  11. "openshift-enterprise": {
  12. "namespace": "openshift3",
  13. "name": "ose",
  14. "registry_console_image": "registry.access.redhat.com/openshift3/registry-console",
  15. },
  16. }
  17. class DockerImageAvailability(DockerHostMixin, OpenShiftCheck):
  18. """Check that required Docker images are available.
  19. Determine docker images that an install would require and check that they
  20. are either present in the host's docker index, or available for the host to pull
  21. with known registries as defined in our inventory file (or defaults).
  22. """
  23. name = "docker_image_availability"
  24. tags = ["preflight"]
  25. # we use python-docker-py to check local docker for images, and skopeo
  26. # to look for images available remotely without waiting to pull them.
  27. dependencies = ["python-docker-py", "skopeo"]
  28. skopeo_img_check_command = "timeout 10 skopeo inspect --tls-verify=false docker://{registry}/{image}"
  29. def __init__(self, *args, **kwargs):
  30. super(DockerImageAvailability, self).__init__(*args, **kwargs)
  31. # record whether we could reach a registry or not (and remember results)
  32. self.reachable_registries = {}
  33. def is_active(self):
  34. """Skip hosts with unsupported deployment types."""
  35. deployment_type = self.get_var("openshift_deployment_type")
  36. has_valid_deployment_type = deployment_type in DEPLOYMENT_IMAGE_INFO
  37. return super(DockerImageAvailability, self).is_active() and has_valid_deployment_type
  38. def run(self):
  39. msg, failed = self.ensure_dependencies()
  40. if failed:
  41. return {
  42. "failed": True,
  43. "msg": "Some dependencies are required in order to check Docker image availability.\n" + msg
  44. }
  45. required_images = self.required_images()
  46. missing_images = set(required_images) - set(self.local_images(required_images))
  47. # exit early if all images were found locally
  48. if not missing_images:
  49. return {}
  50. registries = self.known_docker_registries()
  51. if not registries:
  52. return {"failed": True, "msg": "Unable to retrieve any docker registries."}
  53. available_images = self.available_images(missing_images, registries)
  54. unavailable_images = set(missing_images) - set(available_images)
  55. if unavailable_images:
  56. registries = [
  57. reg if self.reachable_registries.get(reg, True) else reg + " (unreachable)"
  58. for reg in registries
  59. ]
  60. msg = (
  61. "One or more required Docker images are not available:\n {}\n"
  62. "Configured registries: {}\n"
  63. "Checked by: {}"
  64. ).format(
  65. ",\n ".join(sorted(unavailable_images)),
  66. ", ".join(registries),
  67. self.skopeo_img_check_command
  68. )
  69. return dict(failed=True, msg=msg)
  70. return {}
  71. def required_images(self):
  72. """
  73. Determine which images we expect to need for this host.
  74. Returns: a set of required images like 'openshift/origin:v3.6'
  75. The thorny issue of determining the image names from the variables is under consideration
  76. via https://github.com/openshift/openshift-ansible/issues/4415
  77. For now we operate as follows:
  78. * For containerized components (master, node, ...) we look at the deployment type and
  79. use openshift/origin or openshift3/ose as the base for those component images. The
  80. version is openshift_image_tag as determined by the openshift_version role.
  81. * For OpenShift-managed infrastructure (router, registry...) we use oreg_url if
  82. it is defined; otherwise we again use the base that depends on the deployment type.
  83. Registry is not included in constructed images. It may be in oreg_url or etcd image.
  84. """
  85. required = set()
  86. deployment_type = self.get_var("openshift_deployment_type")
  87. host_groups = self.get_var("group_names")
  88. # containerized etcd may not have openshift_image_tag, see bz 1466622
  89. image_tag = self.get_var("openshift_image_tag", default="latest")
  90. image_info = DEPLOYMENT_IMAGE_INFO[deployment_type]
  91. if not image_info:
  92. return required
  93. # template for images that run on top of OpenShift
  94. image_url = "{}/{}-{}:{}".format(image_info["namespace"], image_info["name"], "${component}", "${version}")
  95. image_url = self.get_var("oreg_url", default="") or image_url
  96. if 'nodes' in host_groups:
  97. for suffix in NODE_IMAGE_SUFFIXES:
  98. required.add(image_url.replace("${component}", suffix).replace("${version}", image_tag))
  99. # The registry-console is for some reason not prefixed with ose- like the other components.
  100. # Nor is it versioned the same, so just look for latest.
  101. # Also a completely different name is used for Origin.
  102. required.add(image_info["registry_console_image"])
  103. # images for containerized components
  104. if self.get_var("openshift", "common", "is_containerized"):
  105. components = set()
  106. if 'nodes' in host_groups:
  107. components.update(["node", "openvswitch"])
  108. if 'masters' in host_groups: # name is "origin" or "ose"
  109. components.add(image_info["name"])
  110. for component in components:
  111. required.add("{}/{}:{}".format(image_info["namespace"], component, image_tag))
  112. if 'etcd' in host_groups: # special case, note it is the same for origin/enterprise
  113. required.add("registry.access.redhat.com/rhel7/etcd") # and no image tag
  114. return required
  115. def local_images(self, images):
  116. """Filter a list of images and return those available locally."""
  117. registries = self.known_docker_registries()
  118. found_images = []
  119. for image in images:
  120. # docker could have the image name as-is or prefixed with any registry
  121. imglist = [image] + [reg + "/" + image for reg in registries]
  122. if self.is_image_local(imglist):
  123. found_images.append(image)
  124. return found_images
  125. def is_image_local(self, image):
  126. """Check if image is already in local docker index."""
  127. result = self.execute_module("docker_image_facts", {"name": image})
  128. return bool(result.get("images")) and not result.get("failed")
  129. def known_docker_registries(self):
  130. """Build a list of docker registries available according to inventory vars."""
  131. regs = list(self.get_var("openshift.docker.additional_registries", default=[]))
  132. deployment_type = self.get_var("openshift_deployment_type")
  133. if deployment_type == "origin" and "docker.io" not in regs:
  134. regs.append("docker.io")
  135. elif "enterprise" in deployment_type and "registry.access.redhat.com" not in regs:
  136. regs.append("registry.access.redhat.com")
  137. return regs
  138. def available_images(self, images, default_registries):
  139. """Search remotely for images. Returns: list of images found."""
  140. return [
  141. image for image in images
  142. if self.is_available_skopeo_image(image, default_registries)
  143. ]
  144. def is_available_skopeo_image(self, image, default_registries):
  145. """Use Skopeo to determine if required image exists in known registry(s)."""
  146. registries = default_registries
  147. # If image already includes a registry, only use that.
  148. # NOTE: This logic would incorrectly identify images that do not use a namespace, e.g.
  149. # registry.access.redhat.com/rhel7 as if the registry were a namespace.
  150. # It's not clear that there's any way to distinguish them, but fortunately
  151. # the current set of images all look like [registry/]namespace/name[:version].
  152. if image.count("/") > 1:
  153. registry, image = image.split("/", 1)
  154. registries = [registry]
  155. for registry in registries:
  156. if registry not in self.reachable_registries:
  157. self.reachable_registries[registry] = self.connect_to_registry(registry)
  158. if not self.reachable_registries[registry]:
  159. continue
  160. args = {"_raw_params": self.skopeo_img_check_command.format(registry=registry, image=image)}
  161. result = self.execute_module_with_retries("command", args)
  162. if result.get("rc", 0) == 0 and not result.get("failed"):
  163. return True
  164. if result.get("rc") == 124: # RC 124 == timed out; mark unreachable
  165. self.reachable_registries[registry] = False
  166. return False
  167. def connect_to_registry(self, registry):
  168. """Use ansible wait_for module to test connectivity from host to registry. Returns bool."""
  169. # test a simple TCP connection
  170. host, _, port = registry.partition(":")
  171. port = port or 443
  172. args = dict(host=host, port=port, state="started", timeout=30)
  173. result = self.execute_module("wait_for", args)
  174. return result.get("rc", 0) == 0 and not result.get("failed")