Skip to content

Instantly share code, notes, and snippets.

@ibuildthecloud
Created October 12, 2021 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ibuildthecloud/a768c8cc6b7c5ecfa64f31d8897d0fda to your computer and use it in GitHub Desktop.
Save ibuildthecloud/a768c8cc6b7c5ecfa64f31d8897d0fda to your computer and use it in GitHub Desktop.
#!ipxe
set arch amd64
set version v2.0.0-alpha01
set url https://github.com/rancher/os/releases/download/${version}
set kernel rancheros-${version}-${arch}-kernel
set initrd rancheros-${version}-${arch}-initrd
set rootfs rancheros-${version}-${arch}.squashfs
kernel ${url}/${kernel} initrd=${initrd} ip=dhcp rd.cos.disable console=tty1 root=live:${url}/${rootfs} rancheros.install.automatic=true rancheros.install.config_url=http://10.100.0.10/harvester/config-create.yaml
initrd ${url}/${initrd}
boot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment