zfs-localpv/pkg/driver
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
..
agent.go feat(block): adding block volume support for ZFSPV (#102) 2020-05-05 12:28:46 +05:30
controller.go feat(zfspv): adding poolname info to the PV volumeattributes (#80) 2020-04-14 08:46:35 +05:30
driver.go feat(zfs-localpv): initial commit 2019-09-18 08:44:08 +05:30
grpc.go feat(zfs-localpv): initial commit 2019-09-18 08:44:08 +05:30
identity.go feat(zfs-localpv): initial commit 2019-09-18 08:44:08 +05:30
scheduler.go feat(topology): adding support for custom topology keys (#94) 2020-04-30 14:13:29 +05:30