ohi 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. #!/usr/bin/env python
  2. '''
  3. Ohi = Openshift Host Inventory
  4. This script provides an easy way to look at your host inventory.
  5. This depends on multi_inventory being setup correctly.
  6. '''
  7. # vim: expandtab:tabstop=4:shiftwidth=4
  8. import argparse
  9. import sys
  10. import os
  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. '''
  19. Class for managing openshift host inventory
  20. '''
  21. def __init__(self):
  22. self.host_type_aliases = {}
  23. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  24. # Default the config path to /etc
  25. self.config_path = os.path.join(os.path.sep, 'etc', \
  26. 'openshift_ansible', \
  27. 'openshift_ansible.conf')
  28. self.parse_cli_args()
  29. self.parse_config_file()
  30. self.aws = awsutil.AwsUtil(self.host_type_aliases)
  31. def run(self):
  32. '''
  33. Call into awsutil and retrieve the desired hosts and environments
  34. '''
  35. if self.args.list_host_types:
  36. self.aws.print_host_types()
  37. return 0
  38. hosts = None
  39. if self.args.host_type is not None and \
  40. self.args.env is not None:
  41. # Both env and host-type specified
  42. hosts = self.aws.get_host_list(host_type=self.args.host_type,
  43. envs=self.args.env,
  44. version=self.args.openshift_version,
  45. cached=self.args.cache_only)
  46. if self.args.host_type is None and \
  47. self.args.env is not None:
  48. # Only env specified
  49. hosts = self.aws.get_host_list(envs=self.args.env,
  50. version=self.args.openshift_version,
  51. cached=self.args.cache_only)
  52. if self.args.host_type is not None and \
  53. self.args.env is None:
  54. # Only host-type specified
  55. hosts = self.aws.get_host_list(host_type=self.args.host_type,
  56. version=self.args.openshift_version,
  57. cached=self.args.cache_only)
  58. if hosts is None:
  59. # We weren't able to determine what they wanted to do
  60. raise ArgumentError("Invalid combination of arguments")
  61. for host in sorted(hosts, key=utils.normalize_dnsname):
  62. if self.args.user:
  63. print "%s@%s" % (self.args.user, host)
  64. else:
  65. print host
  66. return 0
  67. def parse_config_file(self):
  68. '''
  69. Parse the config file for ohi
  70. '''
  71. if os.path.isfile(self.config_path):
  72. config = ConfigParser.ConfigParser()
  73. config.read(self.config_path)
  74. self.host_type_aliases = {}
  75. if config.has_section(CONFIG_HOST_TYPE_ALIAS_SECTION):
  76. for alias in config.options(CONFIG_HOST_TYPE_ALIAS_SECTION):
  77. value = config.get(CONFIG_HOST_TYPE_ALIAS_SECTION, alias).split(',')
  78. self.host_type_aliases[alias] = value
  79. def parse_cli_args(self):
  80. """Setup the command line parser with the options we want
  81. """
  82. parser = argparse.ArgumentParser(description='OpenShift Host Inventory')
  83. parser.add_argument('--list-host-types', default=False, action='store_true', help='List all of the host types')
  84. parser.add_argument('-e', '--env', action="store", help="Which environment to use")
  85. parser.add_argument('-t', '--host-type', action="store", help="Which host type to use")
  86. parser.add_argument('-l', '--user', action='store', default=None, help='username')
  87. parser.add_argument('-c', '--cache-only', action='store_true', default=False,
  88. help='Retrieve the host inventory by cache only. Default is false.')
  89. parser.add_argument('-o', '--openshift-version', action='store', default='2',
  90. help='Specify the openshift version. Default is 2')
  91. self.args = parser.parse_args()
  92. def main():
  93. '''
  94. Ohi will do its work here
  95. '''
  96. if len(sys.argv) == 1:
  97. print "\nError: No options given. Use --help to see the available options\n"
  98. sys.exit(0)
  99. try:
  100. ohi = Ohi()
  101. exitcode = ohi.run()
  102. sys.exit(exitcode)
  103. except ArgumentError as err:
  104. print "\nError: %s\n" % err.message
  105. if __name__ == '__main__':
  106. main()