Skip to content

Commit

Permalink
Add integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheng Pan committed Mar 24, 2019
1 parent 15de487 commit c3486d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/driver/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@ const (
FSTypeExt3 = "ext3"
// FSTypeExt4 represents the ext4 filesystem type
FSTypeExt4 = "ext4"
// FSTypeXfs represents te xfs filesystem type
FSTypeXfs = "xfs"

// default file system type to be used when it is not provided
defaultFsType = FSTypeExt4
)

var (
ValidFSTypes = []string{FSTypeExt2, FSTypeExt3, FSTypeExt4}
ValidFSTypes = []string{FSTypeExt2, FSTypeExt3, FSTypeExt4, FSTypeXfs}
)

var (
Expand Down

0 comments on commit c3486d8

Please sign in to comment.