vitrage/vitrage_tempest_tests/tests/__init__.py
marina.koushnir@nokia.com 0e2b012d69 get_topology validation & run_vitrage_tempest.sh
Change-Id: Ia54cbb4a86f563089f591b6a8ce374d133d48650
2016-02-23 15:35:45 +00:00

30 lines
994 B
Python

# Copyright 2016 - Nokia
#
# 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.
from oslo_config import cfg
OPTS = [
cfg.StrOpt('admin_user',
default='admin',
help='admin_user'),
cfg.StrOpt('admin_password',
default='password',
help='admin_password'),
cfg.StrOpt('admin_tenant_name',
default='admin',
help='admin_tenant_name'),
cfg.StrOpt('identity_uri',
help='identity_uri'),
]