mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 06:20:11 +01:00
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>
This commit is contained in:
parent
49dc99726b
commit
dd059a2f43
10 changed files with 274 additions and 10 deletions
|
|
@ -179,3 +179,13 @@ func (b *Builder) Build() (*corev1.PersistentVolumeClaim, error) {
|
|||
}
|
||||
return b.pvc.object, nil
|
||||
}
|
||||
|
||||
// WithVolumeMode sets the VolumeMode field in PVC with provided arguments
|
||||
func (b *Builder) WithVolumeMode(volumemode *corev1.PersistentVolumeMode) *Builder {
|
||||
if volumemode == nil {
|
||||
b.errs = append(b.errs, errors.New("failed to build PVC object: missing volumemode"))
|
||||
return b
|
||||
}
|
||||
b.pvc.object.Spec.VolumeMode = volumemode
|
||||
return b
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue