Add initrd kernel argument needed by UEFI clients
* https://github.com/coreos/bugs/issues/1239
This commit is contained in:
parent
fd96067125
commit
07d257aa7b
|
@ -8,6 +8,7 @@ resource "matchbox_profile" "container-linux-install" {
|
||||||
]
|
]
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
|
"initrd=coreos_production_pxe_image.cpio.gz",
|
||||||
"coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}",
|
"coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}",
|
||||||
"coreos.first_boot=yes",
|
"coreos.first_boot=yes",
|
||||||
"console=tty0",
|
"console=tty0",
|
||||||
|
@ -44,6 +45,7 @@ resource "matchbox_profile" "cached-container-linux-install" {
|
||||||
]
|
]
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
|
"initrd=coreos_production_pxe_image.cpio.gz",
|
||||||
"coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}",
|
"coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}",
|
||||||
"coreos.first_boot=yes",
|
"coreos.first_boot=yes",
|
||||||
"console=tty0",
|
"console=tty0",
|
||||||
|
|
|
@ -8,6 +8,7 @@ resource "matchbox_profile" "bootkube-worker-pxe" {
|
||||||
]
|
]
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
|
"initrd=coreos_production_pxe_image.cpio.gz",
|
||||||
"coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}",
|
"coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}",
|
||||||
"coreos.first_boot=yes",
|
"coreos.first_boot=yes",
|
||||||
"console=tty0",
|
"console=tty0",
|
||||||
|
|
Loading…
Reference in New Issue