Releases: linode/linode-blockstorage-csi-driver
Releases · linode/linode-blockstorage-csi-driver
v0.3.0
v0.2.0
v0.1.7
🚀 Added
- Volume expansion @sanjid133 (#29, #55)
v0.1.6
v0.1.5
v0.1.4
v0.1.3
v0.1.2
Update release manifests and release instructions.
Release manifests:
https://github.com/linode/linode-blockstorage-csi-driver/blob/master/pkg/linode-bs/deploy/releases/linode-blockstorage-csi-driver-v0.1.2.yaml
Image on Dockerhub:
linode/linode-blockstorage-csi-driver:v0.1.2
v0.1.1
v0.1.0 - March 2nd 2019
- per the CSI spec, fulfill volume requests with required_size under 10GB by extending them to 10GB (the Linode minimum), unless that is over the limit size
https://github.com/container-storage-interface/spec/blob/v1.0.0/spec.md#controller-service-rpc(Volume must be at least this big)// The capacity of the storage space in bytes. To specify an exact size, // `required_bytes` and `limit_bytes` SHALL be set to the same value. At // least one of the these fields MUST be specified. message CapacityRange { // Volume MUST be at least this big. This field is OPTIONAL. // A value of 0 is equal to an unspecified field value. // The value of this field MUST NOT be negative. int64 required_bytes = 1; // Volume MUST not be bigger than this. This field is OPTIONAL. // A value of 0 is equal to an unspecified field value. // The value of this field MUST NOT be negative. int64 limit_bytes = 2; }
- added a storage class of
linode-block-storage-retain
, with a default reclaim policy ofRetain
(to avoid deletion of the Block Storage Volume data)