diff --git a/docs/user-guide/01-blueprint-reference.md b/docs/user-guide/01-blueprint-reference.md index 0ef92dd7a..0302aefe1 100644 --- a/docs/user-guide/01-blueprint-reference.md +++ b/docs/user-guide/01-blueprint-reference.md @@ -1300,10 +1300,10 @@ On premises, we don't support multi-arch builds. The architecture of the image i -### Installer đŸ”ĩ 🟤 {#installer} +### Installer đŸ”ĩ 🟤 đŸŸŖ {#installer} Anaconda installer (ISO) image types support the following extra customizations. - + ```toml [customizations.installer] @@ -1324,8 +1324,10 @@ sudo-nopasswd = ["user", "%wheel"] ``` -``` -ℹī¸ - Currently not supported +```toml +[customizations.installer] +unattended = true +sudo-nopasswd = ["user", "%wheel"] ``` @@ -1364,10 +1366,10 @@ restorecon -rvF /etc/sudoers.d %end ``` -#### Installer Kickstart đŸ”ĩ 🟤 {#installer-kickstart} +#### Installer Kickstart đŸ”ĩ 🟤 đŸŸŖ {#installer-kickstart} Alternatively, a custom kickstart can be included using the following customization. - + ```toml [customizations.installer.kickstart] @@ -1394,8 +1396,15 @@ network --bootproto=dhcp --device=link --activate --onboot=on ``` -``` -ℹī¸ - Currently not supported +```toml +[customizations.installer.kickstart] +contents = """ +text --non-interactive +zerombr +clearpart --all --initlabel --disklabel=gpt +autopart --noswap --type=lvm +network --bootproto=dhcp --device=link --activate --onboot=on +""" ```