openshift_container_binary_sync.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # pylint: disable=missing-docstring,invalid-name
  4. import random
  5. import tempfile
  6. import shutil
  7. import os.path
  8. # pylint: disable=redefined-builtin,wildcard-import,unused-wildcard-import
  9. from ansible.module_utils.basic import * # noqa: F403
  10. DOCUMENTATION = '''
  11. ---
  12. module: openshift_container_binary_sync
  13. short_description: Copies OpenShift binaries out of the given image tag to host system.
  14. '''
  15. class BinarySyncError(Exception):
  16. def __init__(self, msg):
  17. super(BinarySyncError, self).__init__(msg)
  18. self.msg = msg
  19. # pylint: disable=too-few-public-methods
  20. class BinarySyncer(object):
  21. """
  22. Syncs the openshift, oc, oadm, and kubectl binaries/symlinks out of
  23. a container onto the host system.
  24. """
  25. def __init__(self, module, image, tag):
  26. self.module = module
  27. self.changed = False
  28. self.output = []
  29. self.bin_dir = '/usr/local/bin'
  30. self.image = image
  31. self.tag = tag
  32. self.temp_dir = None # TBD
  33. def sync(self):
  34. container_name = "openshift-cli-%s" % random.randint(1, 100000)
  35. rc, stdout, stderr = self.module.run_command(['docker', 'create', '--name',
  36. container_name, '%s:%s' % (self.image, self.tag)])
  37. if rc:
  38. raise BinarySyncError("Error creating temporary docker container. stdout=%s, stderr=%s" %
  39. (stdout, stderr))
  40. self.output.append(stdout)
  41. try:
  42. self.temp_dir = tempfile.mkdtemp()
  43. self.output.append("Using temp dir: %s" % self.temp_dir)
  44. rc, stdout, stderr = self.module.run_command(['docker', 'cp', "%s:/usr/bin/openshift" % container_name,
  45. self.temp_dir])
  46. if rc:
  47. raise BinarySyncError("Error copying file from docker container: stdout=%s, stderr=%s" %
  48. (stdout, stderr))
  49. rc, stdout, stderr = self.module.run_command(['docker', 'cp', "%s:/usr/bin/oc" % container_name,
  50. self.temp_dir])
  51. if rc:
  52. raise BinarySyncError("Error copying file from docker container: stdout=%s, stderr=%s" %
  53. (stdout, stderr))
  54. self._sync_binary('openshift')
  55. # In older versions, oc was a symlink to openshift:
  56. if os.path.islink(os.path.join(self.temp_dir, 'oc')):
  57. self._sync_symlink('oc', 'openshift')
  58. else:
  59. self._sync_binary('oc')
  60. # Ensure correct symlinks created:
  61. self._sync_symlink('kubectl', 'openshift')
  62. self._sync_symlink('oadm', 'openshift')
  63. finally:
  64. shutil.rmtree(self.temp_dir)
  65. self.module.run_command(['docker', 'rm', container_name])
  66. def _sync_symlink(self, binary_name, link_to):
  67. """ Ensure the given binary name exists and links to the expected binary. """
  68. # The symlink we are creating:
  69. link_path = os.path.join(self.bin_dir, binary_name)
  70. # The expected file we should be linking to:
  71. link_dest = os.path.join(self.bin_dir, link_to)
  72. if not os.path.exists(link_path) or \
  73. not os.path.islink(link_path) or \
  74. os.path.realpath(link_path) != os.path.realpath(link_dest):
  75. if os.path.exists(link_path):
  76. os.remove(link_path)
  77. os.symlink(link_to, os.path.join(self.bin_dir, binary_name))
  78. self.output.append("Symlinked %s to %s." % (link_path, link_dest))
  79. self.changed = True
  80. def _sync_binary(self, binary_name):
  81. src_path = os.path.join(self.temp_dir, binary_name)
  82. dest_path = os.path.join(self.bin_dir, binary_name)
  83. incoming_checksum = self.module.run_command(['sha256sum', src_path])[1]
  84. if not os.path.exists(dest_path) or self.module.run_command(['sha256sum', dest_path])[1] != incoming_checksum:
  85. shutil.move(src_path, dest_path)
  86. self.output.append("Moved %s to %s." % (src_path, dest_path))
  87. self.changed = True
  88. def main():
  89. module = AnsibleModule( # noqa: F405
  90. argument_spec=dict(
  91. image=dict(required=True),
  92. tag=dict(required=True),
  93. ),
  94. supports_check_mode=True
  95. )
  96. image = module.params['image']
  97. tag = module.params['tag']
  98. binary_syncer = BinarySyncer(module, image, tag)
  99. try:
  100. binary_syncer.sync()
  101. except BinarySyncError as ex:
  102. module.fail_json(msg=ex.msg)
  103. return module.exit_json(changed=binary_syncer.changed,
  104. output=binary_syncer.output)
  105. if __name__ == '__main__':
  106. main()