oc_pvc.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. # pylint: skip-file
  2. # flake8: noqa
  3. # pylint: disable=too-many-instance-attributes
  4. class OCPVC(OpenShiftCLI):
  5. ''' Class to wrap the oc command line tools '''
  6. kind = 'pvc'
  7. # pylint allows 5
  8. # pylint: disable=too-many-arguments
  9. def __init__(self,
  10. config,
  11. verbose=False):
  12. ''' Constructor for OCVolume '''
  13. super(OCPVC, self).__init__(config.namespace, config.kubeconfig)
  14. self.config = config
  15. self.namespace = config.namespace
  16. self._pvc = None
  17. @property
  18. def pvc(self):
  19. ''' property function pvc'''
  20. if not self._pvc:
  21. self.get()
  22. return self._pvc
  23. @pvc.setter
  24. def pvc(self, data):
  25. ''' setter function for yedit var '''
  26. self._pvc = data
  27. def bound(self):
  28. '''return whether the pvc is bound'''
  29. if self.pvc.get_volume_name():
  30. return True
  31. return False
  32. def exists(self):
  33. ''' return whether a pvc exists '''
  34. if self.pvc:
  35. return True
  36. return False
  37. def get(self):
  38. '''return pvc information '''
  39. result = self._get(self.kind, self.config.name)
  40. if result['returncode'] == 0:
  41. self.pvc = PersistentVolumeClaim(content=result['results'][0])
  42. elif '\"%s\" not found' % self.config.name in result['stderr']:
  43. result['returncode'] = 0
  44. result['results'] = [{}]
  45. elif 'namespaces \"%s\" not found' % self.config.namespace in result['stderr']:
  46. result['returncode'] = 0
  47. result['results'] = [{}]
  48. return result
  49. def delete(self):
  50. '''delete the object'''
  51. return self._delete(self.kind, self.config.name)
  52. def create(self):
  53. '''create the object'''
  54. return self._create_from_content(self.config.name, self.config.data)
  55. def update(self):
  56. '''update the object'''
  57. # need to update the tls information and the service name
  58. return self._replace_content(self.kind, self.config.name, self.config.data)
  59. def needs_update(self):
  60. ''' verify an update is needed '''
  61. if self.pvc.get_volume_name() or self.pvc.is_bound():
  62. return False
  63. skip = []
  64. return not Utils.check_def_equal(self.config.data, self.pvc.yaml_dict, skip_keys=skip, debug=True)
  65. # pylint: disable=too-many-branches,too-many-return-statements
  66. @staticmethod
  67. def run_ansible(params, check_mode):
  68. '''run the oc_pvc module'''
  69. pconfig = PersistentVolumeClaimConfig(params['name'],
  70. params['namespace'],
  71. params['kubeconfig'],
  72. params['access_modes'],
  73. params['volume_capacity'],
  74. params['selector'],
  75. params['storage_class_name'],
  76. )
  77. oc_pvc = OCPVC(pconfig, verbose=params['debug'])
  78. state = params['state']
  79. api_rval = oc_pvc.get()
  80. if api_rval['returncode'] != 0:
  81. return {'failed': True, 'msg': api_rval}
  82. #####
  83. # Get
  84. #####
  85. if state == 'list':
  86. return {'changed': False, 'results': api_rval['results'], 'state': state}
  87. ########
  88. # Delete
  89. ########
  90. if state == 'absent':
  91. if oc_pvc.exists():
  92. if check_mode:
  93. return {'changed': False, 'msg': 'CHECK_MODE: Would have performed a delete.'}
  94. api_rval = oc_pvc.delete()
  95. if api_rval['returncode'] != 0:
  96. return {'failed': True, 'msg': api_rval}
  97. return {'changed': True, 'results': api_rval, 'state': state}
  98. return {'changed': False, 'state': state}
  99. if state == 'present':
  100. ########
  101. # Create
  102. ########
  103. if not oc_pvc.exists():
  104. if check_mode:
  105. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
  106. # Create it here
  107. api_rval = oc_pvc.create()
  108. if api_rval['returncode'] != 0:
  109. return {'failed': True, 'msg': api_rval}
  110. # return the created object
  111. api_rval = oc_pvc.get()
  112. if api_rval['returncode'] != 0:
  113. return {'failed': True, 'msg': api_rval}
  114. return {'changed': True, 'results': api_rval, 'state': state}
  115. ########
  116. # Update
  117. ########
  118. if oc_pvc.pvc.is_bound() or oc_pvc.pvc.get_volume_name():
  119. api_rval['msg'] = '##### - This volume is currently bound. Will not update - ####'
  120. return {'changed': False, 'results': api_rval, 'state': state}
  121. if oc_pvc.needs_update():
  122. api_rval = oc_pvc.update()
  123. if api_rval['returncode'] != 0:
  124. return {'failed': True, 'msg': api_rval}
  125. # return the created object
  126. api_rval = oc_pvc.get()
  127. if api_rval['returncode'] != 0:
  128. return {'failed': True, 'msg': api_rval}
  129. return {'changed': True, 'results': api_rval, 'state': state}
  130. return {'changed': False, 'results': api_rval, 'state': state}
  131. return {'failed': True, 'msg': 'Unknown state passed. {}'.format(state)}