Dynamically create cinder.conf.sample
As it stands, the opts.py file that is passed into
oslo-config-generator isn't being generated dynamically
and the old way of generating the cinder.conf.sample is
dependent on oslo-incubator which Cinder is trying to
move away from. oslo-config-generator works differently
than oslo-incubator so a number of changes had to be made
in order to make this switch.
This patch adds the config directory to Cinder and in it
are two files:
-generate_cinder_opts.py that will take the
results of a grep command to create the opts.py
file to be passed into oslo-config-generator.
-cinder.conf which is the new configuration for
oslo-config-generator. The file is inside the config
directory to be consistent with other projects.
Some changes were made to the generate_sample.sh file in
order to give the base directories and target directories
to the generate_cinder_opts.py program.
tox.ini was edited to remove the checkonly option because
all that needs to happen in check_uptodate.sh is a check to
ensure that the cinder.conf.sample is actually being
generated with no issues.
All options were removed from the check_uptodate.sh
because they were unnecessary given the new, more simple
way of generating the cinder.conf.sample.
setup.cfg was also edited in order to add information
oslo-config-generator needs to run.
Co-Authored By: Jay Bryant <jsbryant@us.ibm.com>
Co-Authored By: Jacob Gregor <jgregor@us.ibm.com>
Change-Id: I643dbe5675ae9280e204f691781e617266f570d5
Closes-Bug: 1473768
Closes-Bug: 1437904
Closes-Bug: 1381563
This commit is contained in:
committed by
Walter A. Boring IV (hemna)
parent
351a432f59
commit
111a056c0f
@@ -42,6 +42,12 @@ cinder.scheduler.weights =
|
||||
ChanceWeigher = cinder.scheduler.weights.chance:ChanceWeigher
|
||||
GoodnessWeigher = cinder.scheduler.weights.goodness:GoodnessWeigher
|
||||
VolumeNumberWeigher = cinder.scheduler.weights.volume_number:VolumeNumberWeigher
|
||||
oslo.config.opts =
|
||||
cinder = cinder.opts:list_opts
|
||||
keystonemiddleware = keystonemiddleware.auth_token:list_opts
|
||||
oslo_concurrency = oslo_concurrency.opts:list_opts
|
||||
oslo.messaging = oslo_messaging.opts:list_opts
|
||||
oslo.db.concurrency = oslo.db.concurrency:list_opts
|
||||
console_scripts =
|
||||
cinder-all = cinder.cmd.all:main
|
||||
cinder-api = cinder.cmd.api:main
|
||||
|
||||
Reference in New Issue
Block a user