python-tempestconf/releasenotes/notes/remove-configuration-values-from-cli-c5c8eb496e1ed3d7.yaml
Martin Kopec 3deb8061aa Add ability to remove any option from tempest.conf
A user will be able to specify which values should not be included in
tempest configuration file through --remove argument.
For ommiting value(s):
--remove section.key=value[,value2[...]]

For ommiting all values in section.key:
--remove section.key

Patch removes network.remove-extension option, because the patch is more
generic solution of the same issue.

Change-Id: I0375f2bbfa3bb7db4f9b81ea1518e86d725c30a3
2017-04-11 15:53:32 +00:00

16 lines
536 B
YAML

---
prelude: >
Add a new ability to remove any configuration values from tempest.conf
features:
- |
Add a new parameter --remove to specify which configuration values should
not be included in tempest configuration file.
Parameter format for removing values:
[--remove SECTION.KEY=VALUE[,VALUE]]
Parameter format for removing all values in key.section:
[--remove SECTION.KEY]
If a section or an option specified in CLI does not exist, tempestconf will
inform a user about that in logging output.