Created
October 12, 2021 04:54
-
-
Save ibuildthecloud/a768c8cc6b7c5ecfa64f31d8897d0fda to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!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