zfs-localpv/pkg/zfs
Pawan Prakash Sharma dd059a2f43
feat(block): adding block volume support for ZFSPV (#102)
This commit adds the support for creating a Raw Block Volume request using volumemode as block in PVC :-

```
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: block-claim
spec:
  volumeMode: Block
  storageClassName: zfspv-block
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 5Gi
```

The driver will create a zvol for this volume and bind mount the block device at the given path.

Signed-off-by: Pawan <pawan@mayadata.io>
2020-05-05 12:28:46 +05:30
..
mount.go feat(block): adding block volume support for ZFSPV (#102) 2020-05-05 12:28:46 +05:30
resize.go refactor(crd): move CR from openebs.io to zfs.openebs.io (#70) 2020-03-30 22:12:34 +05:30
volume.go fix(topokey): changing topology key to unique name 2020-04-30 14:48:51 +05:30
xfs_util.go fix(xfs): clearing the xfs log before generating UUID (#64) 2020-03-26 20:52:53 +05:30
zfs_util.go fix(zfspv): fixing data loss in case of pod deletion 2020-04-22 23:49:30 +05:30