Allow setting custom PXE boot kernel_args on bare-metal

This commit is contained in:
bzub
2017-10-02 11:47:44 -05:00
committed by Dalton Hubble
parent 7b5ffd0085
commit e765fb310d
4 changed files with 20 additions and 2 deletions

View File

@ -12,6 +12,7 @@ resource "matchbox_profile" "container-linux-install" {
"coreos.first_boot=yes",
"console=tty0",
"console=ttyS0",
"${var.kernel_args}",
]
container_linux_config = "${data.template_file.container-linux-install-config.rendered}"
@ -47,6 +48,7 @@ resource "matchbox_profile" "cached-container-linux-install" {
"coreos.first_boot=yes",
"console=tty0",
"console=ttyS0",
"${var.kernel_args}",
]
container_linux_config = "${data.template_file.cached-container-linux-install-config.rendered}"