forked from openebs/openebs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(travis, blockdevice): add support to create cStor pools on block…
… device (openebs#2610) * feat(travis, blockdevice): add support to create cStor pools on block device Signed-off-by: mittachaitu <sai.chaithanya@mayadata.io>
- Loading branch information
sai chaithanya
authored and
Amit Kumar Das
committed
Jun 2, 2019
1 parent
116e6cc
commit 4209222
Showing
3 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: openebs.io/v1alpha1 | ||
kind: BlockDeviceClaim | ||
metadata: | ||
name: sparse-blockdeviceclaim | ||
namespace: openebs | ||
spec: | ||
## driveType is a type of the disk attached to the node | ||
## example values: sparse, HDD, SSD | ||
driveType: "sparse" | ||
## blockDeviceName should be specified with block device name | ||
## if driveType is sparse | ||
blockDeviceName: "sparse-1234" | ||
## hostName is the name of the node where block device is available | ||
## value should be provided if driveType is other than sparse | ||
hostName: "" | ||
requirements: | ||
requests: | ||
capacity: 10Gi |