Skip to content

Commit

Permalink
docs/user-guide: installer customizations supported in bib
Browse files Browse the repository at this point in the history
They really are supported, actually.
  • Loading branch information
achilleas-k authored and ondrejbudai committed Aug 7, 2024
1 parent f0d20b2 commit e514091
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions docs/user-guide/01-blueprint-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1300,10 +1300,10 @@ On premises, we don't support multi-arch builds. The architecture of the image i
</TabItem>
</Tabs>

### Installer šŸ”µ šŸŸ¤ {#installer}
### Installer šŸ”µ šŸŸ¤ šŸŸ£ {#installer}

Anaconda installer (ISO) image types support the following extra customizations.
<Tabs values={tabValues} >
<Tabs values={tabValuesWithBootc} >
<TabItem value="on-premises" >
```toml
[customizations.installer]
Expand All @@ -1324,8 +1324,10 @@ sudo-nopasswd = ["user", "%wheel"]
```
</TabItem>
<TabItem value="bootc" >
```
ā„¹ļø - Currently not supported
```toml
[customizations.installer]
unattended = true
sudo-nopasswd = ["user", "%wheel"]
```
</TabItem>
</Tabs>
Expand Down Expand Up @@ -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.
<Tabs values={tabValues} >
<Tabs values={tabValuesWithBootc} >
<TabItem value="on-premises" >
```toml
[customizations.installer.kickstart]
Expand All @@ -1394,8 +1396,15 @@ network --bootproto=dhcp --device=link --activate --onboot=on
```
</TabItem>
<TabItem value="bootc" >
```
ā„¹ļø - 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
"""
```
</TabItem>
</Tabs>
Expand Down

0 comments on commit e514091

Please sign in to comment.