actions icon indicating copy to clipboard operation
actions copied to clipboard

Fixing the issue that mkfs.xfs was not added to the base image

Open VladyslavTkachenkoDesy opened this issue 1 year ago • 1 comments

Description

Added mkfs.xfs support to the base image

Why is this needed

To be able to create xfs partition https://github.com/tinkerbell/actions/issues/131

Fixes: # copy to the image the mkfs.xfs command with all libs

How Has This Been Tested?

  1. created partition with format of xfs
  2. set action as rootio and run the installation
  3. checked that new partition was created with format of xfs

How are existing users impacted? What migration steps/scripts do we need?

Fixes a bug

Checklist:

I have:

  • [ ] updated the documentation and/or roadmap (if required)
  • [ ] added unit or e2e tests
  • [ ] provided instructions on how to upgrade

VladyslavTkachenkoDesy avatar Jul 16 '24 12:07 VladyslavTkachenkoDesy

Hey @VladyslavTkachenkoDesy . Thanks for this contribution. Looks like you need to sign the DCO.

The XFS binaries here are different from the others included as they aren't statically built. Can these binaries be statically built like the others?

I also found that /sbin/fsck.xfs doesn't seem to be available.

❯ docker run -it --rm --entrypoint /sbin/fsck.xfs rootio               
exec /sbin/fsck.xfs: no such file or directory

jacobweinstock avatar Aug 22 '24 15:08 jacobweinstock