ohi 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #!/usr/bin/env python
  2. # vim: expandtab:tabstop=4:shiftwidth=4
  3. import argparse
  4. import traceback
  5. import sys
  6. import os
  7. import re
  8. import tempfile
  9. import time
  10. import subprocess
  11. import ConfigParser
  12. from openshift_ansible import awsutil
  13. from openshift_ansible import utils
  14. from openshift_ansible.awsutil import ArgumentError
  15. CONFIG_MAIN_SECTION = 'main'
  16. CONFIG_HOST_TYPE_ALIAS_SECTION = 'host_type_aliases'
  17. class Ohi(object):
  18. def __init__(self):
  19. self.host_type_aliases = {}
  20. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  21. # Default the config path to /etc
  22. self.config_path = os.path.join(os.path.sep, 'etc', \
  23. 'openshift_ansible', \
  24. 'openshift_ansible.conf')
  25. self.parse_cli_args()
  26. self.parse_config_file()
  27. self.aws = awsutil.AwsUtil(self.host_type_aliases)
  28. def run(self):
  29. if self.args.list_host_types:
  30. self.aws.print_host_types()
  31. return 0
  32. hosts = None
  33. if self.args.host_type is not None and \
  34. self.args.env is not None:
  35. # Both env and host-type specified
  36. hosts = self.aws.get_host_list(host_type=self.args.host_type, \
  37. envs=self.args.env)
  38. if self.args.host_type is None and \
  39. self.args.env is not None:
  40. # Only env specified
  41. hosts = self.aws.get_host_list(envs=self.args.env)
  42. if self.args.host_type is not None and \
  43. self.args.env is None:
  44. # Only host-type specified
  45. hosts = self.aws.get_host_list(host_type=self.args.host_type)
  46. if hosts is None:
  47. # We weren't able to determine what they wanted to do
  48. raise ArgumentError("Invalid combination of arguments")
  49. for host in sorted(hosts, key=utils.normalize_dnsname):
  50. if self.args.user:
  51. print "%s@%s" % (self.args.user, host)
  52. else:
  53. print host
  54. return 0
  55. def parse_config_file(self):
  56. if os.path.isfile(self.config_path):
  57. config = ConfigParser.ConfigParser()
  58. config.read(self.config_path)
  59. self.host_type_aliases = {}
  60. if config.has_section(CONFIG_HOST_TYPE_ALIAS_SECTION):
  61. for alias in config.options(CONFIG_HOST_TYPE_ALIAS_SECTION):
  62. value = config.get(CONFIG_HOST_TYPE_ALIAS_SECTION, alias).split(',')
  63. self.host_type_aliases[alias] = value
  64. def parse_cli_args(self):
  65. """Setup the command line parser with the options we want
  66. """
  67. parser = argparse.ArgumentParser(description='OpenShift Host Inventory')
  68. parser.add_argument('--list-host-types', default=False, action='store_true',
  69. help='List all of the host types')
  70. parser.add_argument('-e', '--env', action="store",
  71. help="Which environment to use")
  72. parser.add_argument('-t', '--host-type', action="store",
  73. help="Which host type to use")
  74. parser.add_argument('-l', '--user', action='store', default=None,
  75. help='username')
  76. self.args = parser.parse_args()
  77. if __name__ == '__main__':
  78. if len(sys.argv) == 1:
  79. print "\nError: No options given. Use --help to see the available options\n"
  80. sys.exit(0)
  81. try:
  82. ohi = Ohi()
  83. exitcode = ohi.run()
  84. sys.exit(exitcode)
  85. except ArgumentError as e:
  86. print "\nError: %s\n" % e.message