docker_image_availability.py 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. """Check that required Docker images are available."""
  2. from openshift_checks import OpenShiftCheck, get_var
  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. @classmethod
  29. def is_active(cls, task_vars):
  30. """Skip hosts with unsupported deployment types."""
  31. deployment_type = get_var(task_vars, "openshift_deployment_type")
  32. has_valid_deployment_type = deployment_type in DEPLOYMENT_IMAGE_INFO
  33. return super(DockerImageAvailability, cls).is_active(task_vars) and has_valid_deployment_type
  34. def run(self, tmp, task_vars):
  35. msg, failed, changed = self.ensure_dependencies(task_vars)
  36. if failed:
  37. return {
  38. "failed": True,
  39. "changed": changed,
  40. "msg": "Some dependencies are required in order to check Docker image availability.\n" + msg
  41. }
  42. required_images = self.required_images(task_vars)
  43. missing_images = set(required_images) - set(self.local_images(required_images, task_vars))
  44. # exit early if all images were found locally
  45. if not missing_images:
  46. return {"changed": changed}
  47. registries = self.known_docker_registries(task_vars)
  48. if not registries:
  49. return {"failed": True, "msg": "Unable to retrieve any docker registries.", "changed": changed}
  50. available_images = self.available_images(missing_images, registries, task_vars)
  51. unavailable_images = set(missing_images) - set(available_images)
  52. if unavailable_images:
  53. return {
  54. "failed": True,
  55. "msg": (
  56. "One or more required Docker images are not available:\n {}\n"
  57. "Configured registries: {}"
  58. ).format(",\n ".join(sorted(unavailable_images)), ", ".join(registries)),
  59. "changed": changed,
  60. }
  61. return {"changed": changed}
  62. @staticmethod
  63. def required_images(task_vars):
  64. """
  65. Determine which images we expect to need for this host.
  66. Returns: a set of required images like 'openshift/origin:v3.6'
  67. The thorny issue of determining the image names from the variables is under consideration
  68. via https://github.com/openshift/openshift-ansible/issues/4415
  69. For now we operate as follows:
  70. * For containerized components (master, node, ...) we look at the deployment type and
  71. use openshift/origin or openshift3/ose as the base for those component images. The
  72. version is openshift_image_tag as determined by the openshift_version role.
  73. * For OpenShift-managed infrastructure (router, registry...) we use oreg_url if
  74. it is defined; otherwise we again use the base that depends on the deployment type.
  75. Registry is not included in constructed images. It may be in oreg_url or etcd image.
  76. """
  77. required = set()
  78. deployment_type = get_var(task_vars, "openshift_deployment_type")
  79. host_groups = get_var(task_vars, "group_names")
  80. # containerized etcd may not have openshift_image_tag, see bz 1466622
  81. image_tag = get_var(task_vars, "openshift_image_tag", default="latest")
  82. image_info = DEPLOYMENT_IMAGE_INFO[deployment_type]
  83. if not image_info:
  84. return required
  85. # template for images that run on top of OpenShift
  86. image_url = "{}/{}-{}:{}".format(image_info["namespace"], image_info["name"], "${component}", "${version}")
  87. image_url = get_var(task_vars, "oreg_url", default="") or image_url
  88. if 'nodes' in host_groups:
  89. for suffix in NODE_IMAGE_SUFFIXES:
  90. required.add(image_url.replace("${component}", suffix).replace("${version}", image_tag))
  91. # The registry-console is for some reason not prefixed with ose- like the other components.
  92. # Nor is it versioned the same, so just look for latest.
  93. # Also a completely different name is used for Origin.
  94. required.add(image_info["registry_console_image"])
  95. # images for containerized components
  96. if get_var(task_vars, "openshift", "common", "is_containerized"):
  97. components = set()
  98. if 'nodes' in host_groups:
  99. components.update(["node", "openvswitch"])
  100. if 'masters' in host_groups: # name is "origin" or "ose"
  101. components.add(image_info["name"])
  102. for component in components:
  103. required.add("{}/{}:{}".format(image_info["namespace"], component, image_tag))
  104. if 'etcd' in host_groups: # special case, note it is the same for origin/enterprise
  105. required.add("registry.access.redhat.com/rhel7/etcd") # and no image tag
  106. return required
  107. def local_images(self, images, task_vars):
  108. """Filter a list of images and return those available locally."""
  109. return [
  110. image for image in images
  111. if self.is_image_local(image, task_vars)
  112. ]
  113. def is_image_local(self, image, task_vars):
  114. """Check if image is already in local docker index."""
  115. result = self.execute_module("docker_image_facts", {"name": image}, task_vars=task_vars)
  116. if result.get("failed", False):
  117. return False
  118. return bool(result.get("images", []))
  119. @staticmethod
  120. def known_docker_registries(task_vars):
  121. """Build a list of docker registries available according to inventory vars."""
  122. docker_facts = get_var(task_vars, "openshift", "docker")
  123. regs = set(docker_facts["additional_registries"])
  124. deployment_type = get_var(task_vars, "openshift_deployment_type")
  125. if deployment_type == "origin":
  126. regs.update(["docker.io"])
  127. elif "enterprise" in deployment_type:
  128. regs.update(["registry.access.redhat.com"])
  129. return list(regs)
  130. def available_images(self, images, default_registries, task_vars):
  131. """Search remotely for images. Returns: list of images found."""
  132. return [
  133. image for image in images
  134. if self.is_available_skopeo_image(image, default_registries, task_vars)
  135. ]
  136. def is_available_skopeo_image(self, image, default_registries, task_vars):
  137. """Use Skopeo to determine if required image exists in known registry(s)."""
  138. registries = default_registries
  139. # if image already includes a registry, only use that
  140. if image.count("/") > 1:
  141. registry, image = image.split("/", 1)
  142. registries = [registry]
  143. for registry in registries:
  144. args = {"_raw_params": "skopeo inspect --tls-verify=false docker://{}/{}".format(registry, image)}
  145. result = self.execute_module("command", args, task_vars=task_vars)
  146. if result.get("rc", 0) == 0 and not result.get("failed"):
  147. return True
  148. return False