64c0f52751
Fixed issue with incorrect uploading packages in engine's functional tests setUpClass. Change-Id: I0748d9d96c1c692109f39318a64de2ca8a71a94e
61 lines
1.9 KiB
Python
61 lines
1.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.
|
|
|
|
import os
|
|
|
|
from oslo.config import cfg
|
|
|
|
|
|
murano_group = cfg.OptGroup(name='murano', title="murano")
|
|
|
|
MuranoGroup = [
|
|
cfg.StrOpt('auth_url',
|
|
default='http://127.0.0.1:5000/v2.0/',
|
|
help="keystone url"),
|
|
cfg.StrOpt('user',
|
|
default='admin',
|
|
help="keystone user"),
|
|
cfg.StrOpt('password',
|
|
default='pass',
|
|
help="password for keystone user"),
|
|
cfg.StrOpt('tenant',
|
|
default='admin',
|
|
help='keystone tenant'),
|
|
cfg.StrOpt('murano_url',
|
|
default='http://127.0.0.1:8082/v1/',
|
|
help="murano url"),
|
|
cfg.StrOpt('linux_image',
|
|
default='default_linux',
|
|
help="image for linux services"),
|
|
cfg.StrOpt('windows_image',
|
|
default='default_windows',
|
|
help="image for windows services")
|
|
]
|
|
|
|
|
|
def register_config(config, config_group, config_opts):
|
|
|
|
config.register_group(config_group)
|
|
config.register_opts(config_opts, config_group)
|
|
|
|
__location = os.path.realpath(os.path.join(os.getcwd(),
|
|
os.path.dirname(__file__)))
|
|
|
|
path = os.path.join(__location, "config.conf")
|
|
|
|
if os.path.exists(path):
|
|
cfg.CONF([], project='muranointegration', default_config_files=[path])
|
|
|
|
register_config(cfg.CONF, murano_group, MuranoGroup)
|