You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
finternal/exec/stages/disks/filesystem: add virtiofs support
Add support for virtiofs in the v3_7_experimental spec. Since virtiofs
is not a block device, the device field is validated as a tag name
rather than a path, and UUID, wipeFilesystem, label, and mkfs options
are rejected at validation time.
Copy file name to clipboardExpand all lines: docs/configuration-v3_7_experimental.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,8 @@ The Ignition configuration is a JSON document conforming to the following specif
71
71
***_spares_** (integer): the number of spares (if applicable) in the array.
72
72
***_options_** (list of strings): any additional options to be passed to mdadm.
73
73
***_filesystems_** (list of objects): the list of filesystems to be configured. `device` and `format` need to be specified. Every filesystem must have a unique `device`.
74
-
***device** (string): the absolute path to the device. Devices are typically referenced by the `/dev/disk/by-*` symlinks.
75
-
***format** (string): the filesystem format (ext4, btrfs, xfs, vfat, swap, or none).
74
+
***device** (string): the absolute path to the device. Devices are typically referenced by the `/dev/disk/by-*` symlinks. For virtiofs, this is the tag name.
75
+
***format** (string): the filesystem format (ext4, btrfs, xfs, vfat, virtiofs, swap, or none).
76
76
***_path_** (string): the mount-point of the filesystem while Ignition is running relative to where the root filesystem will be mounted. This is not necessarily the same as where it should be mounted in the real root, but it is encouraged to make it the same.
77
77
***_wipeFilesystem_** (boolean): whether or not to wipe the device before filesystem creation, see [Ignition's documentation on filesystems](https://coreos.github.io/ignition/operator-notes/#filesystem-reuse-semantics) for more information. Defaults to false.
78
78
***_label_** (string): the label of the filesystem.
Copy file name to clipboardExpand all lines: docs/release-notes.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ nav_order: 9
11
11
### Features
12
12
13
13
- Support reading configs from `/run/ignition` and `/etc/ignition/` in addition to `/usr/lib/ignition/`, searched in descending priority order ([#2221](https://github.com/coreos/ignition/pull/2221))
0 commit comments