Skip to content

Commit

Permalink
Merge pull request #44 from stackhpc/upstream/zed-2024-09-02
Browse files Browse the repository at this point in the history
Synchronise zed with upstream
  • Loading branch information
priteau committed Sep 5, 2024
2 parents 29b4470 + be3c66e commit 3239cc1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cinder/volume/drivers/dell_emc/powerflex/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,12 @@ def _initialize_connection(self, vol_or_snap, connector, vol_size):
connection_properties["scaleIO_volume_id"] = vol_or_snap.provider_id
connection_properties["config_group"] = self.configuration.config_group
connection_properties["failed_over"] = self._is_failed_over
connection_properties["verify_certificate"] = (
self._get_client().verify_certificate
)
connection_properties["certificate_path"] = (
self._get_client().certificate_path
)

if vol_size is not None:
extra_specs = self._get_volumetype_extraspecs(vol_or_snap)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
fixes:
- |
Dell PowerFlex driver `bug #1998136
<https://bugs.launchpad.net/cinder/+bug/1998136>`_:
When using self signed certificates, the option
sent to os-brick via the connection_properties was
not correctly handled. It has now been fixed by
adding the 'verify_certificate' and 'certificate_path'
to the driver when initializing the connection.

0 comments on commit 3239cc1

Please sign in to comment.