Skip to content

Commit

Permalink
feat(btrfs): adding support to have btrfs filesystem for ZFS-LocalPV
Browse files Browse the repository at this point in the history
Now, applications can use the btrfs file system by mentioning "btrfs"
as fstype in the storageclass :-

apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: openebs-zfspv
parameters:
  fstype: "btrfs"
  poolname: "zfspv-pool"
provisioner: zfs.csi.openebs.io

Signed-off-by: Pawan <pawan@mayadata.io>
  • Loading branch information
pawanpraka1 committed Jul 1, 2020
1 parent ac9d6d5 commit 09d8c77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildscripts/zfs-driver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:19.10
FROM ubuntu:20.04
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
RUN apt-get update; exit 0
RUN apt-get -y install rsyslog libssl-dev xfsprogs ca-certificates
RUN apt-get -y install btrfs-progs

ARG ARCH
ARG DBUILD_DATE
Expand Down
1 change: 1 addition & 0 deletions changelogs/unreleased/170-pawanpraka1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
adding support to have btrfs filesystem for ZFS-LocalPV

0 comments on commit 09d8c77

Please sign in to comment.