
This removes all of the Murano code that is deprecated in the 3.0.0 release. When rally pulls in Murano it also pulls python-muranoclient that depends on murano-pkg-check that is old code that was also shown to fail the new setuptools version [1] that removed support for dashes in setup.cfg that has been deprecated since 2021. [1] https://github.com/pypa/setuptools/issues/4910 Change-Id: Icb69c77f96fbf10be0def5be9e21c9af8f57761b
58 lines
2.3 KiB
Python
58 lines
2.3 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 monasca
|
|
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 sahara
|
|
from rally_openstack.common.cfg import senlin
|
|
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, monasca.OPTS,
|
|
nova.OPTS, osclients.OPTS, profiler.OPTS, sahara.OPTS,
|
|
vm.OPTS, glance.OPTS, watcher.OPTS, tempest.OPTS,
|
|
keystone_roles.OPTS, keystone_users.OPTS, cleanup.OPTS,
|
|
senlin.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()]
|