openshift_quick_installer.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. # pylint: disable=invalid-name,protected-access,import-error,line-too-long
  2. # This program is free software: you can redistribute it and/or modify
  3. # it under the terms of the GNU General Public License as published by
  4. # the Free Software Foundation, either version 3 of the License, or
  5. # (at your option) any later version.
  6. #
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License
  13. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. """This file is a stdout callback plugin for the OpenShift Quick
  15. Installer. The purpose of this callback plugin is to reduce the amount
  16. of produced output for customers and enable simpler progress checking.
  17. What's different:
  18. * Playbook progress is expressed as: Play <current_play>/<total_plays> (Play Name)
  19. Ex: Play 3/30 (Initialize Megafrobber)
  20. * The Tasks and Handlers in each play (and included roles) are printed
  21. as a series of .'s following the play progress line.
  22. * Many of these methods include copy and paste code from the upstream
  23. default.py callback. We do that to give us control over the stdout
  24. output while allowing Ansible to handle the file logging
  25. normally. The biggest changes here are that we are manually setting
  26. `log_only` to True in the Display.display method and we redefine the
  27. Display.banner method locally so we can set log_only on that call as
  28. well.
  29. """
  30. from __future__ import (absolute_import, print_function)
  31. import imp
  32. import os
  33. import sys
  34. from ansible import constants as C
  35. from ansible.utils.color import colorize, hostcolor
  36. ANSIBLE_PATH = imp.find_module('ansible')[1]
  37. DEFAULT_PATH = os.path.join(ANSIBLE_PATH, 'plugins/callback/default.py')
  38. DEFAULT_MODULE = imp.load_source(
  39. 'ansible.plugins.callback.default',
  40. DEFAULT_PATH
  41. )
  42. try:
  43. from ansible.plugins.callback import CallbackBase
  44. BASECLASS = CallbackBase
  45. except ImportError: # < ansible 2.1
  46. BASECLASS = DEFAULT_MODULE.CallbackModule
  47. reload(sys)
  48. sys.setdefaultencoding('utf-8')
  49. class CallbackModule(DEFAULT_MODULE.CallbackModule):
  50. """
  51. Ansible callback plugin
  52. """
  53. CALLBACK_VERSION = 2.2
  54. CALLBACK_TYPE = 'stdout'
  55. CALLBACK_NAME = 'openshift_quick_installer'
  56. CALLBACK_NEEDS_WHITELIST = False
  57. plays_count = 0
  58. plays_total_ran = 0
  59. def banner(self, msg, color=None):
  60. '''Prints a header-looking line with stars taking up to 80 columns
  61. of width (3 columns, minimum)
  62. Overrides the upstream banner method so that display is called
  63. with log_only=True
  64. '''
  65. msg = msg.strip()
  66. star_len = (79 - len(msg))
  67. if star_len < 0:
  68. star_len = 3
  69. stars = "*" * star_len
  70. self._display.display("\n%s %s" % (msg, stars), color=color, log_only=True)
  71. def v2_playbook_on_start(self, playbook):
  72. """This is basically the start of it all"""
  73. self.plays_count = len(playbook.get_plays())
  74. self.plays_total_ran = 0
  75. if self._display.verbosity > 1:
  76. from os.path import basename
  77. self.banner("PLAYBOOK: %s" % basename(playbook._file_name))
  78. def v2_playbook_on_play_start(self, play):
  79. """Each play calls this once before running any tasks
  80. We could print the number of tasks here as well by using
  81. `play.get_tasks()` but that is not accurate when a play includes a
  82. role. Only the tasks directly assigned to a play are exposed in the
  83. `play` object.
  84. """
  85. self.plays_total_ran += 1
  86. print("")
  87. print("Play %s/%s (%s)" % (self.plays_total_ran, self.plays_count, play.get_name()))
  88. name = play.get_name().strip()
  89. if not name:
  90. msg = "PLAY"
  91. else:
  92. msg = "PLAY [%s]" % name
  93. self.banner(msg)
  94. # pylint: disable=unused-argument,no-self-use
  95. def v2_playbook_on_task_start(self, task, is_conditional):
  96. """This prints out the task header. For example:
  97. TASK [openshift_facts : Ensure PyYaml is installed] ***...
  98. Rather than print out all that for every task, we print a dot
  99. character to indicate a task has been started.
  100. """
  101. sys.stdout.write('.')
  102. args = ''
  103. # args can be specified as no_log in several places: in the task or in
  104. # the argument spec. We can check whether the task is no_log but the
  105. # argument spec can't be because that is only run on the target
  106. # machine and we haven't run it thereyet at this time.
  107. #
  108. # So we give people a config option to affect display of the args so
  109. # that they can secure this if they feel that their stdout is insecure
  110. # (shoulder surfing, logging stdout straight to a file, etc).
  111. if not task.no_log and C.DISPLAY_ARGS_TO_STDOUT:
  112. args = ', '.join(('%s=%s' % a for a in task.args.items()))
  113. args = ' %s' % args
  114. self.banner("TASK [%s%s]" % (task.get_name().strip(), args))
  115. if self._display.verbosity >= 2:
  116. path = task.get_path()
  117. if path:
  118. self._display.display("task path: %s" % path, color=C.COLOR_DEBUG, log_only=True)
  119. # pylint: disable=unused-argument,no-self-use
  120. def v2_playbook_on_handler_task_start(self, task):
  121. """Print out task header for handlers
  122. Rather than print out a header for every handler, we print a dot
  123. character to indicate a handler task has been started.
  124. """
  125. sys.stdout.write('.')
  126. self.banner("RUNNING HANDLER [%s]" % task.get_name().strip())
  127. # pylint: disable=unused-argument,no-self-use
  128. def v2_playbook_on_cleanup_task_start(self, task):
  129. """Print out a task header for cleanup tasks
  130. Rather than print out a header for every handler, we print a dot
  131. character to indicate a handler task has been started.
  132. """
  133. sys.stdout.write('.')
  134. self.banner("CLEANUP TASK [%s]" % task.get_name().strip())
  135. def v2_playbook_on_include(self, included_file):
  136. """Print out paths to statically included files"""
  137. msg = 'included: %s for %s' % (included_file._filename, ", ".join([h.name for h in included_file._hosts]))
  138. self._display.display(msg, color=C.COLOR_SKIP, log_only=True)
  139. def v2_runner_on_ok(self, result):
  140. """This prints out task results in a fancy format
  141. The only thing we change here is adding `log_only=True` to the
  142. .display() call
  143. """
  144. delegated_vars = result._result.get('_ansible_delegated_vars', None)
  145. self._clean_results(result._result, result._task.action)
  146. if result._task.action in ('include', 'include_role'):
  147. return
  148. elif result._result.get('changed', False):
  149. if delegated_vars:
  150. msg = "changed: [%s -> %s]" % (result._host.get_name(), delegated_vars['ansible_host'])
  151. else:
  152. msg = "changed: [%s]" % result._host.get_name()
  153. color = C.COLOR_CHANGED
  154. else:
  155. if delegated_vars:
  156. msg = "ok: [%s -> %s]" % (result._host.get_name(), delegated_vars['ansible_host'])
  157. else:
  158. msg = "ok: [%s]" % result._host.get_name()
  159. color = C.COLOR_OK
  160. if result._task.loop and 'results' in result._result:
  161. self._process_items(result)
  162. else:
  163. if (self._display.verbosity > 0 or '_ansible_verbose_always' in result._result) and '_ansible_verbose_override' not in result._result:
  164. msg += " => %s" % (self._dump_results(result._result),)
  165. self._display.display(msg, color=color, log_only=True)
  166. self._handle_warnings(result._result)
  167. def v2_runner_item_on_ok(self, result):
  168. """Print out task results for items you're iterating over"""
  169. delegated_vars = result._result.get('_ansible_delegated_vars', None)
  170. if result._task.action in ('include', 'include_role'):
  171. return
  172. elif result._result.get('changed', False):
  173. msg = 'changed'
  174. color = C.COLOR_CHANGED
  175. else:
  176. msg = 'ok'
  177. color = C.COLOR_OK
  178. if delegated_vars:
  179. msg += ": [%s -> %s]" % (result._host.get_name(), delegated_vars['ansible_host'])
  180. else:
  181. msg += ": [%s]" % result._host.get_name()
  182. msg += " => (item=%s)" % (self._get_item(result._result),)
  183. if (self._display.verbosity > 0 or '_ansible_verbose_always' in result._result) and '_ansible_verbose_override' not in result._result:
  184. msg += " => %s" % self._dump_results(result._result)
  185. self._display.display(msg, color=color, log_only=True)
  186. def v2_runner_item_on_skipped(self, result):
  187. """Print out task results when an item is skipped"""
  188. if C.DISPLAY_SKIPPED_HOSTS:
  189. msg = "skipping: [%s] => (item=%s) " % (result._host.get_name(), self._get_item(result._result))
  190. if (self._display.verbosity > 0 or '_ansible_verbose_always' in result._result) and '_ansible_verbose_override' not in result._result:
  191. msg += " => %s" % self._dump_results(result._result)
  192. self._display.display(msg, color=C.COLOR_SKIP, log_only=True)
  193. def v2_runner_on_skipped(self, result):
  194. """Print out task results when a task (or something else?) is skipped"""
  195. if C.DISPLAY_SKIPPED_HOSTS:
  196. if result._task.loop and 'results' in result._result:
  197. self._process_items(result)
  198. else:
  199. msg = "skipping: [%s]" % result._host.get_name()
  200. if (self._display.verbosity > 0 or '_ansible_verbose_always' in result._result) and '_ansible_verbose_override' not in result._result:
  201. msg += " => %s" % self._dump_results(result._result)
  202. self._display.display(msg, color=C.COLOR_SKIP, log_only=True)
  203. def v2_playbook_on_notify(self, res, handler):
  204. """What happens when a task result is 'changed' and the task has a
  205. 'notify' list attached.
  206. """
  207. self._display.display("skipping: no hosts matched", color=C.COLOR_SKIP, log_only=True)
  208. def v2_playbook_on_stats(self, stats):
  209. """Print the final playbook run stats"""
  210. self._display.display("", screen_only=True)
  211. self.banner("PLAY RECAP")
  212. hosts = sorted(stats.processed.keys())
  213. for h in hosts:
  214. t = stats.summarize(h)
  215. self._display.display(
  216. u"%s : %s %s %s %s" % (
  217. hostcolor(h, t),
  218. colorize(u'ok', t['ok'], C.COLOR_OK),
  219. colorize(u'changed', t['changed'], C.COLOR_CHANGED),
  220. colorize(u'unreachable', t['unreachable'], C.COLOR_UNREACHABLE),
  221. colorize(u'failed', t['failures'], C.COLOR_ERROR)),
  222. screen_only=True
  223. )
  224. self._display.display(
  225. u"%s : %s %s %s %s" % (
  226. hostcolor(h, t, False),
  227. colorize(u'ok', t['ok'], None),
  228. colorize(u'changed', t['changed'], None),
  229. colorize(u'unreachable', t['unreachable'], None),
  230. colorize(u'failed', t['failures'], None)),
  231. log_only=True
  232. )
  233. self._display.display("", screen_only=True)
  234. self._display.display("", screen_only=True)
  235. # Some plays are conditional and won't run (such as load
  236. # balancers) if they aren't required. Let the user know about
  237. # this to avoid potential confusion.
  238. if self.plays_total_ran != self.plays_count:
  239. print("Installation Complete: Note: Play count is an estimate and some were skipped because your install does not require them")
  240. self._display.display("", screen_only=True)