From c6633cb694f4e800bc6fce67f08382e0611b099c Mon Sep 17 00:00:00 2001 From: CBeez23 <50852226+CBeez23@users.noreply.github.com> Date: Fri, 27 Mar 2026 18:51:44 -0500 Subject: [PATCH] Update using-image-builder.adoc Updated the image-builder command examples for the simplified installer image type. Without the --ignition-config flag, the tool currently triggers a nil pointer dereference error at line 1088. This change ensures the documentation matches the tool's internal requirements. --- .../modules/ROOT/pages/using-image-builder.adoc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/user-docs/modules/ROOT/pages/using-image-builder.adoc b/user-docs/modules/ROOT/pages/using-image-builder.adoc index f5a4d3d..4a6a2ab 100644 --- a/user-docs/modules/ROOT/pages/using-image-builder.adoc +++ b/user-docs/modules/ROOT/pages/using-image-builder.adoc @@ -141,11 +141,14 @@ The simplified installer provides zero-touch provisioning using FDO or Ignition: ---- $ sudo image-builder build iot-simplified-installer \ - --distro fedora-43 \ - --ostree-url http://localhost:8000 \ - --ostree-ref fedora/stable/x86_64/iot \ - --output-dir ./images ----- + --distro fedora-43 \ + --ostree-url http://localhost:8000 \ + --ostree-ref fedora/stable/x86_64/iot \ + --ignition-config ./config.ign # <--- Adding this prevents the Nil Pointer crash +---- +[IMPORTANT] +_.Mandatory Ignition Config File_ +The --ignition-config flag is required. You must have a valid .ign file in your current directory before running this command. See xref:booting-the-simplified-provisioner.adoc[Booting the Simplified Provisioner] for more details.