Skip to content

Instantly share code, notes, and snippets.

@johnsimcall
Created August 23, 2021 16:33
Show Gist options
  • Save johnsimcall/f60d3ac5bae42255495fb412230b9e82 to your computer and use it in GitHub Desktop.
Save johnsimcall/f60d3ac5bae42255495fb412230b9e82 to your computer and use it in GitHub Desktop.
PXE boot for RHCOS
#set timeout=10
#set default=0
menuentry 'BOOTSTRAP' {
linux rhcos-4.8.2-x86_64-live-kernel-x86_64 coreos.live.rootfs_url=http://172.27.0.93:8080/rhcos-4.8.2-x86_64-live-rootfs.x86_64.img coreos.inst.install_dev=/dev/sda coreos.inst.ignition_url=http://172.27.0.93:8080/bootstrap.ign
initrd rhcos-4.8.2-x86_64-live-initramfs.x86_64.img
}
menuentry 'CONTROL PLANE' {
linux rhcos-4.8.2-x86_64-live-kernel-x86_64 coreos.live.rootfs_url=http://172.27.0.93:8080/rhcos-4.8.2-x86_64-live-rootfs.x86_64.img coreos.inst.install_dev=/dev/sda coreos.inst.ignition_url=http://172.27.0.93:8080/master.ign
initrd rhcos-4.8.2-x86_64-live-initramfs.x86_64.img
}
menuentry 'WORKER' {
linux rhcos-4.8.2-x86_64-live-kernel-x86_64 coreos.live.rootfs_url=http://172.27.0.93:8080/rhcos-4.8.2-x86_64-live-rootfs.x86_64.img coreos.inst.install_dev=/dev/sda coreos.inst.ignition_url=http://172.27.0.93:8080/worker.ign
initrd rhcos-4.8.2-x86_64-live-initramfs.x86_64.img
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment