Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(block): adding block volume support for ZFSPV #102

Merged
merged 2 commits into from
May 5, 2020

Commits on May 4, 2020

  1. feat(block): adding block volume support for ZFSPV

    We can create 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>
    pawanpraka1 committed May 4, 2020
    Configuration menu
    Copy the full SHA
    d501cc8 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2020

  1. review comment

    Signed-off-by: Pawan <pawan@mayadata.io>
    pawanpraka1 committed May 5, 2020
    Configuration menu
    Copy the full SHA
    353a548 View commit details
    Browse the repository at this point in the history