From 07d257aa7bcfba1ced569308ae64183def9efe81 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Thu, 16 Nov 2017 23:19:51 -0800 Subject: [PATCH] Add initrd kernel argument needed by UEFI clients * https://github.com/coreos/bugs/issues/1239 --- bare-metal/container-linux/kubernetes/profiles.tf | 2 ++ bare-metal/container-linux/pxe-worker/profiles.tf | 1 + 2 files changed, 3 insertions(+) diff --git a/bare-metal/container-linux/kubernetes/profiles.tf b/bare-metal/container-linux/kubernetes/profiles.tf index c9d188c7..e44944e9 100644 --- a/bare-metal/container-linux/kubernetes/profiles.tf +++ b/bare-metal/container-linux/kubernetes/profiles.tf @@ -8,6 +8,7 @@ resource "matchbox_profile" "container-linux-install" { ] args = [ + "initrd=coreos_production_pxe_image.cpio.gz", "coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "coreos.first_boot=yes", "console=tty0", @@ -44,6 +45,7 @@ resource "matchbox_profile" "cached-container-linux-install" { ] args = [ + "initrd=coreos_production_pxe_image.cpio.gz", "coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "coreos.first_boot=yes", "console=tty0", diff --git a/bare-metal/container-linux/pxe-worker/profiles.tf b/bare-metal/container-linux/pxe-worker/profiles.tf index fb436aa1..82e8c513 100644 --- a/bare-metal/container-linux/pxe-worker/profiles.tf +++ b/bare-metal/container-linux/pxe-worker/profiles.tf @@ -8,6 +8,7 @@ resource "matchbox_profile" "bootkube-worker-pxe" { ] args = [ + "initrd=coreos_production_pxe_image.cpio.gz", "coreos.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "coreos.first_boot=yes", "console=tty0",