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

Dockerfile: Fix XFS fs type regression #52

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@ ENV CSI_ENDPOINT=unix:///csi/csi.sock \
RUN apk add --no-cache \
cryptsetup \
e2fsprogs e2fsprogs-extra \
xfsprogs \
xfsprogs-extra \
lsblk \
blkid \
kmod \
$EXTRA_PACKAGES

RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/v3.14/main \
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@husam-lb what has triggered this issue ? and do you know why this is not an issue on the internal lb-csi ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mounting xfs formatted volume was failing
see LBM1-21995.

xfsprogs=5.12.0-r0 \
xfsprogs-extra=5.12.0-r0

COPY licenses /licenses
COPY lb-csi-plugin /

Expand Down