Skip to content

0.58.0-rc3

Pre-release
Pre-release
Compare
Choose a tag to compare
@farhan5900 farhan5900 released this 13 Oct 21:34
· 12 commits to master since this release

Changes

Allowed values for External Volume Driver Name

This release will not allow any arbitrary values to be passed in the driver-name. The only accepted values are pxd for Portworx Driver and netapp for NetApp Driver.

Default External Volume Name

The naming scheme for the external volume differs for both supported drivers. Whereas, for the Portworx, the naming scheme is the same as defined in the previous release. But for the NetApp, since it does not support the hyphen - in the external volume name, so it would be replaced by the underscore _.

The SDK will now use the following scheme for external volume-name in case of the NetApp driver, where none is specified by the operator:
<svc-name> _ <pod-type> _ <pod-index>

  • <svc-name> : Sanitized service path with slashes / replaced to double underscore __
  • <pod-type> : Pod-type
  • <pod-index> : Pod-index

As an example, instances of pod type foo in service /path/to/service will be created with the following external volumes:

path__to__service_foo_1
path__to__service_foo_2