python-cinderclient/releasenotes/notes/support---os-key-option-72ba2fd4880736ac.yaml
Cedric Brandily 80d3edc71e Support --os-key option
Currently we can specify a client certificate key using --os-key option
inherited from keystoneclient cli options but it has no effect because
keystoneclient Session expects as cert argument, one of the followings:
 * None (no client certificate),
 * a path to client certificate,
 * a tuple with client certificate/key paths.

The change updates cinderclient code to support the last case (ie:
os_cert and os_key are non-empty) in order to take into --os-key option
and OS_KEY environment variable.

Closes-Bug: #1564646
Change-Id: I258fd554ad2d6a5413ffe778acefa3a0b83e591f
2016-05-17 15:02:00 +02:00

6 lines
156 B
YAML

---
features:
- |
Support --os-key option and OS_KEY environment variable which allows to
provide client cert and its private key separately.