From 1c9ada93e859fb306cf8d1cf5545b4aef9fd6ba0 Mon Sep 17 00:00:00 2001 From: Dan Bungert Date: Tue, 18 Jul 2023 15:11:15 -0600 Subject: [PATCH] doc: reference update for guided zfs --- documentation/autoinstall-reference.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/documentation/autoinstall-reference.md b/documentation/autoinstall-reference.md index 20164bf7..bb8449a8 100644 --- a/documentation/autoinstall-reference.md +++ b/documentation/autoinstall-reference.md @@ -288,7 +288,7 @@ Storage configuration is a complex topic and the description of the desired conf #### Supported layouts -The two supported layouts at the time of writing are "lvm" and "direct". +The three supported layouts at the time of writing are "lvm", "direct", and "zfs". ```yaml storage: layout: @@ -296,6 +296,9 @@ storage: storage: layout: name: direct +storage: + layout: + name: zfs ``` By default these will install to the largest disk in a system, but you can supply a match spec (see below) to indicate which disk to use: @@ -308,7 +311,7 @@ storage: serial: CT* storage: layout: - name: disk + name: direct match: ssd: true ```