opssh 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #!/usr/bin/env python
  2. # vim: expandtab:tabstop=4:shiftwidth=4
  3. import argparse
  4. import awsutil
  5. import traceback
  6. import sys
  7. import os
  8. import re
  9. import tempfile
  10. import time
  11. import subprocess
  12. DEFAULT_PSSH_PAR=200
  13. PSSH = '/usr/bin/pssh'
  14. class Opssh(object):
  15. def __init__(self):
  16. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  17. self.aws = awsutil.AwsUtil()
  18. self.parse_cli_args()
  19. if self.args.list_host_types:
  20. self.aws.print_host_types()
  21. return
  22. if self.args.env and \
  23. self.args.host_type and \
  24. self.args.command:
  25. retval = self.run_pssh()
  26. if retval != 0:
  27. raise ValueError("pssh run failed")
  28. return
  29. # If it makes it here, we weren't able to determine what they wanted to do
  30. raise ValueError("Invalid combination of arguments")
  31. def run_pssh(self):
  32. """Actually run the pssh command based off of the supplied options
  33. """
  34. # Default set of options
  35. pssh_args = [PSSH, '-i', '-t', '0', '-p', str(self.args.par), '--user', self.args.user]
  36. if self.args.outdir:
  37. pssh_args.append("--outdir='%s'" % self.args.outdir)
  38. if self.args.errdir:
  39. pssh_args.append("--errdir='%s'" % self.args.errdir)
  40. hosts = self.aws.get_host_list(self.args.host_type, self.args.env)
  41. with tempfile.NamedTemporaryFile(prefix='opssh-', delete=True) as f:
  42. for h in hosts:
  43. f.write(h + os.linesep)
  44. f.flush()
  45. pssh_args.extend(["-h", "%s" % f.name])
  46. pssh_args.append("%s" % self.args.command)
  47. print
  48. print "Running: %s" % ' '.join(pssh_args)
  49. print
  50. return subprocess.call(pssh_args)
  51. return None
  52. def parse_cli_args(self):
  53. """Setup the command line parser with the options we want
  54. """
  55. parser = argparse.ArgumentParser(description='Openshift Online PSSH Tool.')
  56. parser.add_argument('--list-host-types', default=False, action='store_true',
  57. help='List all of the host types')
  58. parser.add_argument('-e', '--env', action="store",
  59. help="Which environment to use")
  60. parser.add_argument('-t', '--host-type', action="store",
  61. help="Which host type to use")
  62. parser.add_argument('-c', '--command', action='store',
  63. help='Command to run on remote host(s)')
  64. parser.add_argument('--user', action='store', default='root',
  65. help='username')
  66. parser.add_argument('-p', '--par', action='store', default=DEFAULT_PSSH_PAR,
  67. help=('max number of parallel threads (default %s)' % DEFAULT_PSSH_PAR))
  68. parser.add_argument('--outdir', action='store',
  69. help='output directory for stdout files')
  70. parser.add_argument('--errdir', action='store',
  71. help='output directory for stderr files')
  72. self.args = parser.parse_args()
  73. if __name__ == '__main__':
  74. if len(sys.argv) == 1:
  75. print "\nError: No options given. Use --help to see the available options\n"
  76. sys.exit(0)
  77. try:
  78. opssh = Opssh()
  79. except ValueError as e:
  80. print "\nError: %s\n" % e.message