installer_checkpoint.py 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. """Ansible callback plugin to print a summary completion status of installation
  2. phases.
  3. """
  4. from ansible.plugins.callback import CallbackBase
  5. from ansible import constants as C
  6. DOCUMENTATION = '''
  7. '''
  8. EXAMPLES = '''
  9. ---------------------------------------------
  10. Example display of a successful playbook run:
  11. PLAY RECAP *********************************************************************
  12. master01.example.com : ok=158 changed=16 unreachable=0 failed=0
  13. node01.example.com : ok=469 changed=74 unreachable=0 failed=0
  14. node02.example.com : ok=157 changed=17 unreachable=0 failed=0
  15. localhost : ok=24 changed=0 unreachable=0 failed=0
  16. INSTALLER STATUS ***************************************************************
  17. Initialization : Complete
  18. etcd Install : Complete
  19. NFS Install : Not Started
  20. Load balancer Install : Not Started
  21. Master Install : Complete
  22. Master Additional Install : Complete
  23. Node Install : Complete
  24. GlusterFS Install : Not Started
  25. Hosted Install : Complete
  26. Metrics Install : Not Started
  27. Logging Install : Not Started
  28. Service Catalog Install : Not Started
  29. -----------------------------------------------------
  30. Example display if a failure occurs during execution:
  31. INSTALLER STATUS ***************************************************************
  32. Initialization : Complete
  33. etcd Install : Complete
  34. NFS Install : Not Started
  35. Load balancer Install : Not Started
  36. Master Install : In Progress
  37. This phase can be restarted by running: playbooks/byo/openshift-master/config.yml
  38. Master Additional Install : Not Started
  39. Node Install : Not Started
  40. GlusterFS Install : Not Started
  41. Hosted Install : Not Started
  42. Metrics Install : Not Started
  43. Logging Install : Not Started
  44. Service Catalog Install : Not Started
  45. '''
  46. class CallbackModule(CallbackBase):
  47. """This callback summarizes installation phase status."""
  48. CALLBACK_VERSION = 2.0
  49. CALLBACK_TYPE = 'aggregate'
  50. CALLBACK_NAME = 'installer_checkpoint'
  51. CALLBACK_NEEDS_WHITELIST = False
  52. def __init__(self):
  53. super(CallbackModule, self).__init__()
  54. def v2_playbook_on_stats(self, stats):
  55. # Set the order of the installer phases
  56. installer_phases = [
  57. 'installer_phase_initialize',
  58. 'installer_phase_health',
  59. 'installer_phase_etcd',
  60. 'installer_phase_nfs',
  61. 'installer_phase_loadbalancer',
  62. 'installer_phase_master',
  63. 'installer_phase_master_additional',
  64. 'installer_phase_node',
  65. 'installer_phase_glusterfs',
  66. 'installer_phase_hosted',
  67. 'installer_phase_metrics',
  68. 'installer_phase_logging',
  69. 'installer_phase_servicecatalog',
  70. 'installer_phase_management',
  71. ]
  72. # Define the attributes of the installer phases
  73. phase_attributes = {
  74. 'installer_phase_initialize': {
  75. 'title': 'Initialization',
  76. 'playbook': ''
  77. },
  78. 'installer_phase_health': {
  79. 'title': 'Health Check',
  80. 'playbook': 'playbooks/byo/openshift-checks/pre-install.yml'
  81. },
  82. 'installer_phase_etcd': {
  83. 'title': 'etcd Install',
  84. 'playbook': 'playbooks/byo/openshift-etcd/config.yml'
  85. },
  86. 'installer_phase_nfs': {
  87. 'title': 'NFS Install',
  88. 'playbook': 'playbooks/byo/openshift-nfs/config.yml'
  89. },
  90. 'installer_phase_loadbalancer': {
  91. 'title': 'Load balancer Install',
  92. 'playbook': 'playbooks/byo/openshift-loadbalancer/config.yml'
  93. },
  94. 'installer_phase_master': {
  95. 'title': 'Master Install',
  96. 'playbook': 'playbooks/byo/openshift-master/config.yml'
  97. },
  98. 'installer_phase_master_additional': {
  99. 'title': 'Master Additional Install',
  100. 'playbook': 'playbooks/byo/openshift-master/additional_config.yml'
  101. },
  102. 'installer_phase_node': {
  103. 'title': 'Node Install',
  104. 'playbook': 'playbooks/byo/openshift-node/config.yml'
  105. },
  106. 'installer_phase_glusterfs': {
  107. 'title': 'GlusterFS Install',
  108. 'playbook': 'playbooks/byo/openshift-glusterfs/config.yml'
  109. },
  110. 'installer_phase_hosted': {
  111. 'title': 'Hosted Install',
  112. 'playbook': 'playbooks/byo/openshift-cluster/openshift-hosted.yml'
  113. },
  114. 'installer_phase_metrics': {
  115. 'title': 'Metrics Install',
  116. 'playbook': 'playbooks/byo/openshift-cluster/openshift-metrics.yml'
  117. },
  118. 'installer_phase_logging': {
  119. 'title': 'Logging Install',
  120. 'playbook': 'playbooks/byo/openshift-cluster/openshift-logging.yml'
  121. },
  122. 'installer_phase_servicecatalog': {
  123. 'title': 'Service Catalog Install',
  124. 'playbook': 'playbooks/byo/openshift-cluster/service-catalog.yml'
  125. },
  126. 'installer_phase_management': {
  127. 'title': 'Management Install',
  128. 'playbook': 'playbooks/common/openshift-cluster/openshift_management.yml'
  129. },
  130. }
  131. # Find the longest phase title
  132. max_column = 0
  133. for phase in phase_attributes:
  134. max_column = max(max_column, len(phase_attributes[phase]['title']))
  135. if '_run' in stats.custom:
  136. self._display.banner('INSTALLER STATUS')
  137. for phase in installer_phases:
  138. phase_title = phase_attributes[phase]['title']
  139. padding = max_column - len(phase_title) + 2
  140. if phase in stats.custom['_run']:
  141. phase_status = stats.custom['_run'][phase]
  142. self._display.display(
  143. '{}{}: {}'.format(phase_title, ' ' * padding, phase_status),
  144. color=self.phase_color(phase_status))
  145. if phase_status == 'In Progress' and phase != 'installer_phase_initialize':
  146. self._display.display(
  147. '\tThis phase can be restarted by running: {}'.format(
  148. phase_attributes[phase]['playbook']))
  149. else:
  150. # Phase was not found in custom stats
  151. self._display.display(
  152. '{}{}: {}'.format(phase_title, ' ' * padding, 'Not Started'),
  153. color=C.COLOR_SKIP)
  154. self._display.display("", screen_only=True)
  155. def phase_color(self, status):
  156. """ Return color code for installer phase"""
  157. valid_status = [
  158. 'In Progress',
  159. 'Complete',
  160. ]
  161. if status not in valid_status:
  162. self._display.warning('Invalid phase status defined: {}'.format(status))
  163. if status == 'Complete':
  164. phase_color = C.COLOR_OK
  165. elif status == 'In Progress':
  166. phase_color = C.COLOR_ERROR
  167. else:
  168. phase_color = C.COLOR_WARN
  169. return phase_color