ohi 3.6 KB

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