openshift_container_binary_sync.py 4.8 KB

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