On-Prem Basic ARM Scenario¶
onprem-basic-arm bootstraps productive-k3s-core onto ARM machines that already exist and are reachable over SSH.
This path is intentionally separate from the generic onprem-basic scenario so ARM users get a public entrypoint with explicit preparation steps and validation notes instead of inferring them from the broader on-prem documentation.
What it expects¶
- one declared ARM
servertarget - zero or more declared ARM
agenttargets - a reachable remote user
- a working SSH key on the control machine
- passwordless
sudo - a supported Ubuntu or Debian runtime
curlinstalled on the target machine- a
productive-k3s-corebundle source that can be copied to the remote host before bootstrap
Main commands¶
make -C scenarios/edge/onprem-basic-arm preflight
make -C scenarios/edge/onprem-basic-arm up
make -C scenarios/edge/onprem-basic-arm validate
make -C scenarios/edge/onprem-basic-arm status
make -C scenarios/edge/onprem-basic-arm clean
What make up does¶
- Refreshes generated metadata from the declared
serverandagenttargets. - Validates
SSH,sudo,systemd, and the supported runtime matrix. - Copies the
productive-k3s-corebundle to the target machines. - Runs the remote
productive-k3s-corehost preflight when the copied bundle exposesscripts/preflight-host.sh. - Runs
servermode onONPREM_SERVER_IP. - Captures the K3S node token.
- Runs
agentmode on every declared agent target. - Synchronizes Rancher and registry aliases across the nodes.
- Runs
stackmode on the server. - Validates nodes, shared services, ingress, and default storage.
Validated public case¶
The retained public ARM validation used:
- Raspberry Pi 5 Model B Rev
1.1 - Ubuntu
24.04Desktop onarm64 4CPU cores- about
7.7 GiBRAM
That host profile was sufficient to pass preflight, bootstrap k3s, Longhorn, Rancher, and the in-cluster registry, then complete scenario validation. It is still below the published full-stack RAM guidance, so users should expect tighter margins than on larger hosts.
Preparation guide¶
See ARM Support for the host preparation steps:
- enabling
openssh-server - adding your SSH public key
- configuring
sudo NOPASSWD - confirming
curl - checking outbound Internet access before the bootstrap downloads
k3s
Notes¶
Note
This scenario does not provision machines. It assumes the infrastructure already exists.
Note
Hostnames are allowed in ONPREM_SERVER_IP. The shared remote bootstrap layer now resolves them to an IPv4 address before writing Rancher and registry aliases into /etc/hosts.
Note
The runtime logic is the same shared remote bootstrap layer reused by onprem-basic and aws-single-node.