Skip to content

Commit

Permalink
Merge pull request #720 from salarmgh/feature/autologin
Browse files Browse the repository at this point in the history
Add kernel args variable
  • Loading branch information
sdemos authored Nov 1, 2018
2 parents 78f7e8d + 74f13a2 commit 0994b86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/terraform/bootkube-install/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ module "cluster" {
cached_install = "${var.cached_install}"
install_disk = "${var.install_disk}"
container_linux_oem = "${var.container_linux_oem}"
kernel_args = "${var.kernel_args}"
}
6 changes: 6 additions & 0 deletions examples/terraform/bootkube-install/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,9 @@ variable "container_linux_oem" {
default = ""
description = "Specify an OEM image id to use as base for the installation (e.g. ami, vmware_raw, xen) or leave blank for the default image"
}

variable "kernel_args" {
description = "Additional kernel arguments to provide at PXE boot."
type = "list"
default = []
}

0 comments on commit 0994b86

Please sign in to comment.