Skip to content

Commit

Permalink
ERL-481: nemos-images-reference-*: *: use ext4 for oci-storage
Browse files Browse the repository at this point in the history
The XFS filesystem is sometimes created with incompatible features.
Until we can control the featureset using an argument we need to use
ext4.

Signed-off-by: Isaac True <isaac.true@canonical.com>
  • Loading branch information
IsaacJT committed Nov 21, 2023
1 parent c0d7c2b commit 2f1d4b9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion nemos-images-reference-lunar/qemu-amd64/appliance.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
<size unit="G">3</size>
<partitions>
<partition name="home" size="10" mountpoint="/home" filesystem="ext4" />
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="xfs" />
<!-- oci-storage should be changed to xfs in the future -->
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="ext4" />
<partition name="oci-preloaded" size="512" mountpoint="/var/lib/containers/loaded" filesystem="squashfs" />
</partitions>
<luksformat>
Expand Down
3 changes: 2 additions & 1 deletion nemos-images-reference-lunar/qemu-arm64/appliance.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
<size unit="G">3</size>
<partitions>
<partition name="home" size="10" mountpoint="/home" filesystem="ext4" />
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="xfs" />
<!-- oci-storage should be changed to xfs in the future -->
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="ext4" />
<partition name="oci-preloaded" size="512" mountpoint="/var/lib/containers/loaded" filesystem="squashfs" />
</partitions>
<luksformat>
Expand Down
3 changes: 2 additions & 1 deletion nemos-images-reference-mantic/qemu-amd64/appliance.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
<size unit="G">3</size>
<partitions>
<partition name="home" size="10" mountpoint="/home" filesystem="ext4" />
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="xfs" />
<!-- oci-storage should be changed to xfs in the future -->
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="ext4" />
<partition name="oci-preloaded" size="512" mountpoint="/var/lib/containers/loaded" filesystem="squashfs" />
</partitions>
<luksformat>
Expand Down
3 changes: 2 additions & 1 deletion nemos-images-reference-mantic/qemu-arm64/appliance.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
<size unit="G">3</size>
<partitions>
<partition name="home" size="10" mountpoint="/home" filesystem="ext4" />
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="xfs" />
<!-- oci-storage should be changed to xfs in the future -->
<partition name="oci-storage" size="512" mountpoint="/var/lib/containers/storage" filesystem="ext4" />
<partition name="oci-preloaded" size="512" mountpoint="/var/lib/containers/loaded" filesystem="squashfs" />
</partitions>
<luksformat>
Expand Down

0 comments on commit 2f1d4b9

Please sign in to comment.