uncloud/scripts/uncloud

79 lines
2.6 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python3
import logging
2020-01-03 13:38:59 +00:00
import sys
2019-12-08 11:28:25 +00:00
import importlib
2020-01-03 13:38:59 +00:00
import argparse
2019-12-31 11:15:05 +00:00
from uncloud import UncloudException
2020-01-03 13:38:59 +00:00
# the components that use etcd
ETCD_COMPONENTS = ['api', 'scheduler', 'host', 'filescanner', 'imagescanner', 'metadata', 'configure']
ALL_COMPONENTS = ETCD_COMPONENTS.copy()
2020-01-10 11:42:07 +00:00
ALL_COMPONENTS.append('cli')
2019-12-08 11:28:25 +00:00
2019-12-21 09:36:55 +00:00
def exception_hook(exc_type, exc_value, exc_traceback):
logging.getLogger(__name__).error(
'Uncaught exception',
exc_info=(exc_type, exc_value, exc_traceback)
)
2019-12-22 08:47:16 +00:00
sys.excepthook = exception_hook
2019-12-21 09:36:55 +00:00
if __name__ == '__main__':
# Setting up root logger
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
2019-12-21 09:36:55 +00:00
arg_parser = argparse.ArgumentParser()
2020-01-03 13:38:59 +00:00
subparsers = arg_parser.add_subparsers(dest='command')
2020-01-03 13:38:59 +00:00
parent_parser = argparse.ArgumentParser(add_help=False)
2020-01-10 10:56:47 +00:00
parent_parser.add_argument('--debug', '-d',
action='store_true',
default=False,
2020-01-03 13:38:59 +00:00
help='More verbose logging')
2020-01-10 10:56:47 +00:00
parent_parser.add_argument('--conf-dir', '-c',
help='Configuration directory')
2019-12-31 14:35:49 +00:00
etcd_parser = argparse.ArgumentParser(add_help=False)
etcd_parser.add_argument('--etcd-host')
etcd_parser.add_argument('--etcd-port')
etcd_parser.add_argument('--etcd-ca-cert', help='CA that signed the etcd certificate')
etcd_parser.add_argument('--etcd-cert-cert', help='Path to client certificate')
etcd_parser.add_argument('--etcd-cert-key', help='Path to client certificate key')
for component in ALL_COMPONENTS:
2020-01-03 13:38:59 +00:00
mod = importlib.import_module('uncloud.{}.main'.format(component))
parser = getattr(mod, 'arg_parser')
if component in ETCD_COMPONENTS:
subparsers.add_parser(name=parser.prog, parents=[parser, parent_parser, etcd_parser])
else:
subparsers.add_parser(name=parser.prog, parents=[parser, parent_parser])
2019-12-21 09:36:55 +00:00
args = arg_parser.parse_args()
if not args.command:
arg_parser.print_help()
else:
arguments = vars(args)
name = arguments.pop('command')
mod = importlib.import_module('uncloud.{}.main'.format(name))
main = getattr(mod, 'main')
2020-01-10 10:43:53 +00:00
# If the component requires etcd3, we import it and catch the
# etcd3.exceptions.ConnectionFailedError
if name in ETCD_COMPONENTS:
import etcd3
2020-01-10 10:43:53 +00:00
2019-12-21 09:36:55 +00:00
try:
main(arguments)
2019-12-31 11:15:05 +00:00
except UncloudException as err:
logger.error(err)
sys.exit(1)
except Exception as err:
logger.exception(err)
sys.exit(1)