Stratis Storage in Anaconda
This is a proposed Change for Fedora Linux.
This document represents a proposed Change. As part of the Changes process, proposals are publicly announced in order to receive community feedback. This proposal will only be implemented if approved by the Fedora Engineering Steering Committee.
Summary
This change aims to add support for installing Fedora on Stratis filesystems. This includes support in Kickstart for automated installation and manual partitioning in the Anaconda WebUI using Cockpit Storage.
Owner
- Name: Vojtech Trefny
- Email:
vtrefny AT redhat.com
Detailed Description
Stratis is a local storage management solution that simplifies filesystem feature orchestration by combining the block-layer and XFS filesystem into a unified CLI and D-Bus API control plane. Stratis has robust features such as, thin-provisioning, thin-safeguards, snapshots, cache tiers, and encryption.
This change will make Stratis a bootable, installer-supported solution for Fedora. While Stratis has been available in Fedora for several years, this change integrates native Kickstart support to allow users to configure Stratis as their default, end-to-end storage management implementation for both the primary root (/) filesystem and supplementary filesystems.
Feedback
Stratis has been available in Fedora since Fedora 28 with new versions being added over the years, but support for using Stratis for the root filesystem is not yet available which limits our ability to gather feedback. Weâve seen some interest in using Stratis on Fedora and there is a third-party tool that allows manual installation on Stratis, but without support in the installer, we cannot really judge the popularity or potential of a new storage technology like this.
Benefit to Fedora
Stratis provides modern storage features such as thin provisioning, snapshots, cache tiers, and encryption, through a single, unified management layer. Achieving a comparable feature set requires manually layering multiple technologies, each with its own tooling and configuration. Stratis simplifies this into a single tool.
While Stratis has been available in Fedora since Fedora 28, the lack of installer support has been a significant barrier to adoption: users could not use Stratis for their root filesystem without resorting to manual, unsupported workarounds. This change removes this barrier making Stratis a first-class installation option alongside Btrfs and LVM.
Scope
-
Proposal owners:
- Kickstart: New kickstart commands for creating Stratis pools and filesystems will be added. Similar to the existing
volgroupandlogvolcommands for creating LVM Volume Groups and Logical Volumes. - Anaconda: New automatic partitioning âtypeâ will be added for Stratis.
- Blivet: Blivet already supports Stratis, some small changes might be needed for the automatic partitioning support.
- Kickstart: New kickstart commands for creating Stratis pools and filesystems will be added. Similar to the existing
-
Other developers:
- The scope of this change is limited to the installer and its dependencies (Blivet and pykickstart). We are also coordinating with the Stratis project developers in case some changes or fixes are needed in Stratis itself.
-
Release engineering: #13395
-
Policies and guidelines: N/A (not needed for this Change)
-
Trademark approval: N/A (not needed for this Change)
-
Alignment with the Fedora Strategy:
Upgrade/compatibility impact
This change does not affect upgrades. Only new installations will be affected by this change.
Early Testing (Optional)
Do you require âQA Blueprintâ support? No
Early images for testing can be provided by the developers. Once Stratis is included on the installation images, manual installation using Cockpit or mountpoint assignment as described below, can be tested.
How To Test
WebUI
The WebUI itself doesnât allow for selecting the storage technology which will be used for automated or guided partitioning. Stratis layout can be created through the external Cockpit storage editor. The installer will automatically use Stratis devices created this way. Preexisting Stratis filesystems can be also used in the mount point assignment installation method. Generic documentation for storage configuration in Anaconda can be found here.
- On the Installation method page start Cockpit storage editor using the Launch storage editor option from the menu.
- Create partitions required for booting (
/bootand/boot/efiorbiosboot). - Create Stratis pool.
- Create Stratis filesystems for
/and/home(and other filesystems as needed). - Return to the installer.
- Newly created layout should be recognized and the Use configured storage option should be selected.
- Finish the installation.
Kickstart
Below are snippets of kickstart files with storage configuration. These are only examples and the exact syntax of the commands might change. Full example kickstart files for testing will be provided later.
Automatic partitioning
autopart --type=stratis
Automatic partitioning with Stratis. The exact storage layout will be determined by the installer based on the available disk space. This doesnât differ from automatic partitioning with LVM or Btrfs.
Manual partitioning
part bd.01 --size=18000 --ondisk=vda part bd.02 --size=18000 --ondisk=vdb stratispool mypool bd.01 bd.02 stratisfs / --size=10000 --name=root --pool=mypool stratisfs /home --size=1 --grow --name=home --pool=mypool
Example of manual Stratis configuration in kickstart. Two 18 GB partitions will be created on vda and vdb disks (/boot and other partitions needed for booting are not shown here). One new Stratis pool named mypool and two filesystems: 10 GB root for / and ~26 GB home for /home (remaining free space after creating the root filesystem) will be created.
User Experience
Users who are not using advanced storage configuration or are not interested in trying Stratis shouldnât notice any changes. Default behavior of the installer, storage type and layout will remain the same, as configured for the specific Fedora variant.
For users that want to use Stratis, this will be a major simplification of the process. Stratis will be included on the Fedora images and users will be able to use Stratis for their root filesystem without any additional manual steps needed. Kickstart support is aimed mostly at advanced users, but with the Cockpit support in the WebUI, Stratis can be configured and used the same way as any other non-default storage technology.
Note that there is no plan for including support for Stratis in the old GTK-based Anaconda interface.
Dependencies
Directly affected packages: blivet (python3-blivet), pykickstart (python3-kickstart), anaconda.
We donât expect any other packages to be affected by this change and we donât require assistance from other packagers.
stratisd, stratis-cli and stratisd-dracut packages will be added as new dependencies to Anaconda. Total installation size on Fedora Workstation Live image is 28 MiB. The resulting boot ISO image grows from about 1193 MiB to 1206 MiB with these packages included.
Contingency Plan
- Contingency mechanism: Reverting the changes in pykickstart and anaconda.
- Contingency deadline: beta freeze
- Blocks release? No
Documentation
The newly added kickstart commands will be documented in the pykickstart documentation. Documentation for Stratis can be found on the project website.
Previous articles about Stratis are also available on Fedora Magazine:
Release Notes
Last edited by @amoloney 2026-06-30T17:49:00Z
Last edited by @amoloney 2026-06-30T17:49:00Z

