deb-murano/muranoapi/contrib/tempest/config.py
Sergey Murashov 858b0f758d Add tempest integration tests
Change-Id: Ib326f785548ed657be2bbed475598a2ae13cfccf
2014-02-11 07:26:04 +00:00

38 lines
1.0 KiB
Python

import os
from oslo.config import cfg
murano_group = cfg.OptGroup(name='murano', title='murano')
MuranoGroup = [
cfg.StrOpt('murano_url',
default='http://127.0.0.1:8082',
help="murano url"),
cfg.StrOpt('metadata_url',
default='http://127.0.0.1:8084',
help="murano metadata repository url"),
cfg.StrOpt('agListnerIP',
default='10.0.0.155',
help="agListnerIP"),
cfg.StrOpt('clusterIP',
default='10.0.0.150',
help="clusterIP"),
cfg.BoolOpt('service_available',
default='True',
help='mistral available')
]
def register_config(config, config_group, config_opts):
config.register_group(config_group)
config.register_opts(config_opts, config_group)
path = os.path.join("%s/config.conf" % os.getcwd())
if os.path.exists(path):
cfg.CONF([], project='muranointegration', default_config_files=[path])
register_config(cfg.CONF, murano_group, MuranoGroup)
mistral = cfg.CONF.murano