Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions modules/ROOT/pages/provisioning-hetzner.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Verify the download, following the instructions on that page.
+
[source, bash]
----
IMAGE_NAME="fedora-coreos-41.20250213.0-hetzner.x86_64.raw.xz"
IMAGE_NAME="<downloaded image>"
export HCLOUD_TOKEN="<your token>"
STREAM="stable" # or "testing", "next"
HETZNER_ARCH="x86" # or "arm"
Expand Down Expand Up @@ -79,8 +79,7 @@ SSH_KEY_NAME="fedora-coreos-hetzner"
hcloud ssh-key create --name "$SSH_KEY_NAME" --public-key "$SSH_PUBKEY"
----
+
. Launch a server. Your Ignition configuration can be passed to the VM as its user data, or you can skip passing user data if you just want SSH access.
This provides an easy way to test out FCOS without first creating an Ignition config.
. Launch a server. You can create a server in the web console from the snapshot we just created and skip passing an Ignition file if you just want SSH access. This provides an easy way to test out FCOS without first creating an Ignition config. To use an Ignition configuration, pass it to the VM as user data as below.
+
.Example launching FCOS on Hetzner using an Ignition configuration file and SSH key
[source, bash]
Expand All @@ -94,7 +93,7 @@ SSH_KEY_NAME="fedora-coreos-hetzner" # See: hcloud ssh-key list
DATACENTER="fsn1-dc14" # See: hcloud datacenter list
TYPE="cx22" # See: hcloud server-type list
NAME="fedora-coreos-test"
IGNITION_CONFIG="./config.ign"
IGNITION_CONFIG="./config.ign" # optional, see prerequisites.
hcloud server create \
--name "$NAME" \
--type "$TYPE" \
Expand Down