908a9f5dfe
This patch adds a passthrough.conf to the cinder rootwrap.d directory which supports passthrough config. This is useful for folks who want to add custom logging or other conf to their rootwrap. ExtraConfig snippet looks like this: { "cinder": { "rootwrap_config": [ { "section": "SECTIONNAME", "values": [ { "option": "OPTIONNAME", "value": "VALUENAME" } ] } ] } } Change-Id: Ifbc49a266c95e7032ec33e2b3cd48b9f551a3efe blueprint: passthrough-config |
||
---|---|---|
.. | ||
environment.d | ||
install.d | ||
os-apply-config/etc/cinder | ||
pre-install.d | ||
element-deps | ||
README.md | ||
source-repository-cinder |
Install cinder service from git.
An appropriate target element (such as cinder-tgt or cinder-lio) must be included in images that use cinder.
Configuration
cinder: verbose: False - Print more verbose output (set logging level to INFO instead of default WARNING level). debug: False - Print debugging output (set logging level to DEBUG instead of default WARNING level). iscsi-helper: tgtadm - Specifies the iSCSI helper to use. Must match the target element included in the image.
Rootwrap Configuration
It is possible to add custom configuration to the rootwrap.conf used by cinder by supplying an ExtraConfig snippet of the following form:
{
"cinder": {
"rootwrap_config": [
{"section": "SECTIONNAME",
"values": [
{
"option": "OPTIONNAME",
"value": "VALUENAME"
}
]
}
]
}
}