ohi 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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.args = None
  29. self.parse_cli_args()
  30. self.parse_config_file()
  31. self.aws = awsutil.AwsUtil(self.host_type_aliases)
  32. def run(self):
  33. '''
  34. Call into awsutil and retrieve the desired hosts and environments
  35. '''
  36. if self.args.list_host_types:
  37. self.aws.print_host_types()
  38. return 0
  39. if self.args.v3:
  40. version = '3'
  41. elif self.args.all_versions:
  42. version = 'all'
  43. else:
  44. version = '2'
  45. hosts = self.aws.get_host_list(clusters=self.args.cluster,
  46. host_type=self.args.host_type,
  47. sub_host_type=self.args.sub_host_type,
  48. envs=self.args.env,
  49. version=version,
  50. cached=self.args.cache_only)
  51. if hosts is None:
  52. # We weren't able to determine what they wanted to do
  53. raise ArgumentError("Invalid combination of arguments")
  54. if self.args.ip:
  55. hosts = self.aws.convert_to_ip(hosts)
  56. for host in sorted(hosts, key=utils.normalize_dnsname):
  57. if self.args.user:
  58. print "%s@%s" % (self.args.user, host)
  59. else:
  60. print host
  61. return 0
  62. def parse_config_file(self):
  63. '''
  64. Parse the config file for ohi
  65. '''
  66. if os.path.isfile(self.config_path):
  67. config = ConfigParser.ConfigParser()
  68. config.read(self.config_path)
  69. self.host_type_aliases = {}
  70. if config.has_section(CONFIG_HOST_TYPE_ALIAS_SECTION):
  71. for alias in config.options(CONFIG_HOST_TYPE_ALIAS_SECTION):
  72. value = config.get(CONFIG_HOST_TYPE_ALIAS_SECTION, alias).split(',')
  73. self.host_type_aliases[alias] = value
  74. def parse_cli_args(self):
  75. """Setup the command line parser with the options we want
  76. """
  77. parser = argparse.ArgumentParser(description='OpenShift Host Inventory')
  78. parser.add_argument('--list-host-types', default=False, action='store_true', help='List all of the host types')
  79. parser.add_argument('--list', default=False, action='store_true', help='List all hosts')
  80. parser.add_argument('-c', '--cluster', action="append", help="Which clusterid to use")
  81. parser.add_argument('-e', '--env', action="append", help="Which environment to use")
  82. parser.add_argument('-t', '--host-type', action="store", help="Which host type to use")
  83. parser.add_argument('-s', '--sub-host-type', action="store", help="Which sub host type to use")
  84. parser.add_argument('-l', '--user', action='store', default=None, help='username')
  85. parser.add_argument('--cache-only', action='store_true', default=False,
  86. help='Retrieve the host inventory by cache only. Default is false.')
  87. parser.add_argument('--v2', action='store_true', default=True,
  88. help='Specify the openshift version. Default is 2')
  89. parser.add_argument('--v3', action='store_true', default=False,
  90. help='Specify the openshift version.')
  91. parser.add_argument('--ip', action='store_true', default=False,
  92. help='Return ip address only.')
  93. parser.add_argument('--all-versions', action='store_true', default=False,
  94. help='Specify the openshift version. Return all versions')
  95. self.args = parser.parse_args()
  96. def main():
  97. '''
  98. Ohi will do its work here
  99. '''
  100. if len(sys.argv) == 1:
  101. print "\nError: No options given. Use --help to see the available options\n"
  102. sys.exit(0)
  103. try:
  104. ohi = Ohi()
  105. exitcode = ohi.run()
  106. sys.exit(exitcode)
  107. except ArgumentError as err:
  108. print "\nError: %s\n" % err.message
  109. if __name__ == '__main__':
  110. main()