csi-digitalocean
csi-digitalocean copied to clipboard
A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage
### What did you do? (required. The issue will be **closed** when not provided.) Try to clone a volume snapshot (CSI PV Cloning, see https://kubernetes-csi.github.io/docs/volume-cloning.html ### What did you expect...
This may already be somewhere, or perhaps i am thinking about it wrong, but I cannot find anything. I recently had to migrate to another cluster, and i used https://github.com/digitalocean/csi-digitalocean/tree/master/examples/kubernetes/pod-single-existing-volume...
The CSI driver currently leverages several Linux tools to implement certain low-level features, like `mount` for mounting / unmounting or `blkid` to determine if a path / file system is...
Our Controller and Node plugin parts currently share the same underlying [Driver struct](https://github.com/digitalocean/csi-digitalocean/blob/a31f090a350ed24bce07fbd34ed34ae851625fc6/driver/driver.go#L56-L83). While this keeps things fairly straight forward, it also makes it harder to understand which pieces are...
When I create a VolumeSnapshot, the corresponding DO snapshot created by the CSI is given a name like `snapshot-8fb09ea8-d2af-465f-9a84-e121351aaf5b`, with the prefix `snapshot-` followed by a UUID. This makes it...
This PR will add support for LUKS encryption, as mentioned in #311. Code is mostly taken from cloudscale-ch/csi-cloudscale.
Hi! We're looking for an automated way to provision `PersistentVolumeClaim`s against locally mounted NVMe drives on DigitalOcean https://www.digitalocean.com/blog/introducing-storage-optimized-droplets-with-nvme-ssds/ We've tried `local` StorageClass https://kubernetes.io/docs/concepts/storage/storage-classes/#local, it does work however it is not...