Files
rally-openstack/rally_openstack/common/cfg/opts.py
Takashi Kajinami 284d08d562 Remove monasca support
The monasca project is being retired due to lack of maintenance effort
even after the project was marked inactive.

PRAGMA: NO COVER
Change-Id: I6c2254e062f45e2554cbc18ec2f8f95cae73c83d
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 09:04:52 +00:00

55 lines
2.1 KiB
Python

# Copyright 2013: Mirantis Inc.
# All Rights Reserved.
#
# 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 rally_openstack.common.cfg import cinder
from rally_openstack.common.cfg import glance
from rally_openstack.common.cfg import heat
from rally_openstack.common.cfg import ironic
from rally_openstack.common.cfg import magnum
from rally_openstack.common.cfg import manila
from rally_openstack.common.cfg import mistral
from rally_openstack.common.cfg import neutron
from rally_openstack.common.cfg import nova
from rally_openstack.common.cfg import octavia
from rally_openstack.common.cfg import osclients
from rally_openstack.common.cfg import profiler
from rally_openstack.common.cfg import vm
from rally_openstack.common.cfg import watcher
from rally_openstack.common.cfg import tempest
from rally_openstack.common.cfg import keystone_roles
from rally_openstack.common.cfg import keystone_users
from rally_openstack.common.cfg import cleanup
from rally_openstack.task.ui.charts import osprofilerchart
def list_opts():
opts = {}
for l_opts in (cinder.OPTS, heat.OPTS, ironic.OPTS, magnum.OPTS,
manila.OPTS, mistral.OPTS,
nova.OPTS, osclients.OPTS, profiler.OPTS,
vm.OPTS, glance.OPTS, watcher.OPTS, tempest.OPTS,
keystone_roles.OPTS, keystone_users.OPTS, cleanup.OPTS,
neutron.OPTS, octavia.OPTS,
osprofilerchart.OPTS):
for category, opt in l_opts.items():
opts.setdefault(category, [])
opts[category].extend(opt)
return [(k, v) for k, v in opts.items()]