83a2cc64ae
Added CLI command to import Murano packages. Example murano-manage import-package murano-api/meta/packages/core Also updated base packages structure. Change-Id: I82c26ee6d8c675563174cefaa84b44ebdf1b14c4
95 lines
2.9 KiB
Python
95 lines
2.9 KiB
Python
# Copyright (c) 2014 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
CLI interface for murano management.
|
|
"""
|
|
|
|
import sys
|
|
|
|
from oslo.config import cfg
|
|
|
|
import muranoapi
|
|
from muranoapi.db.catalog import api as db_catalog_api
|
|
from muranoapi.db import session as db_session
|
|
from muranoapi.openstack.common import log as logging
|
|
from muranoapi.packages import application_package
|
|
|
|
|
|
CONF = cfg.CONF
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
# TODO(ruhe): proper error handling
|
|
def do_db_sync():
|
|
"""
|
|
Place a database under migration control and upgrade,
|
|
creating first if necessary.
|
|
"""
|
|
db_session.db_sync()
|
|
|
|
|
|
def _do_import_package(_dir):
|
|
LOG.info("Going to import Murano package from {0}".format(_dir))
|
|
pkg = application_package.load_from_dir(_dir)
|
|
result = db_catalog_api.package_upload(pkg.__dict__, None)
|
|
LOG.info("Finished import of package {0}".format(result.id))
|
|
|
|
|
|
# TODO(ruhe): proper error handling
|
|
def do_import_package():
|
|
"""
|
|
Import Murano packages from local directories.
|
|
"""
|
|
for _dir in CONF.command.directories:
|
|
_do_import_package(_dir)
|
|
|
|
|
|
def add_command_parsers(subparsers):
|
|
parser = subparsers.add_parser('db-sync')
|
|
parser.set_defaults(func=do_db_sync)
|
|
parser.add_argument('version', nargs='?')
|
|
parser.add_argument('current_version', nargs='?')
|
|
|
|
parser = subparsers.add_parser('import-package')
|
|
parser.set_defaults(func=do_import_package)
|
|
parser.add_argument('directories',
|
|
nargs='+',
|
|
help="list of directories with Murano packages "
|
|
"separated by space")
|
|
|
|
|
|
command_opt = cfg.SubCommandOpt('command',
|
|
title='Commands',
|
|
help='Show available commands.',
|
|
handler=add_command_parsers)
|
|
|
|
|
|
def main():
|
|
CONF.register_cli_opt(command_opt)
|
|
try:
|
|
default_config_files = cfg.find_config_files('murano-api', 'murano')
|
|
CONF(sys.argv[1:], project='murano-api', prog='murano-manage',
|
|
version=muranoapi.__version__,
|
|
default_config_files=default_config_files)
|
|
logging.setup("murano-api")
|
|
except RuntimeError as e:
|
|
LOG.error("murano-manage command failed: %s" % e)
|
|
sys.exit("ERROR: %s" % e)
|
|
|
|
try:
|
|
CONF.command.func()
|
|
except Exception as e:
|
|
sys.exit("ERROR: %s" % e)
|