docker_image_availability.py 13 KB

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