-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jonathon Anderson <[email protected]>
- Loading branch information
1 parent
5596f8f
commit 0f39074
Showing
2 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Red Hat Enterprise Linux 9 | ||
|
||
Warewulf can be used to boot a RHEL node, | ||
but building such an image typically requires access to a Red Hat subscription. | ||
This subscription can be accessed from the host environment | ||
by mounting subscription files. | ||
|
||
|
||
``` | ||
podman build \ | ||
--volume=/etc/pki/entitlement:/run/secrets/entitlement:ro \ | ||
--volume=/etc/rhsm:/run/secrets/rhsm:ro \ | ||
--volume=/etc/yum.repos.d/redhat.repo:/run/secrets/redhat.repo:ro \ | ||
. --tag rhel:9 | ||
``` | ||
|
||
For more information, | ||
see https://access.redhat.com/solutions/5870841. |