diff --git a/examples/terraform/bootkube-install/cluster.tf b/examples/terraform/bootkube-install/cluster.tf index fab35847..3e9b9171 100644 --- a/examples/terraform/bootkube-install/cluster.tf +++ b/examples/terraform/bootkube-install/cluster.tf @@ -1,6 +1,6 @@ // Kubernetes cluster module "cluster" { - source = "git::https://github.com/poseidon/typhoon//bare-metal/container-linux/kubernetes?ref=d774c51297a73d06d80de6bc4447a6eaebc49671" + source = "git::https://github.com/poseidon/typhoon//bare-metal/container-linux/kubernetes?ref=07d257aa7bcfba1ced569308ae64183def9efe81" # install matchbox_http_endpoint = "${var.matchbox_http_endpoint}" diff --git a/examples/terraform/modules/profiles/profiles.tf b/examples/terraform/modules/profiles/profiles.tf index 52b94d74..2fca252e 100644 --- a/examples/terraform/modules/profiles/profiles.tf +++ b/examples/terraform/modules/profiles/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", @@ -43,6 +44,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/examples/terraform/simple-install/profiles.tf b/examples/terraform/simple-install/profiles.tf index 76f7a0f9..1427c927 100644 --- a/examples/terraform/simple-install/profiles.tf +++ b/examples/terraform/simple-install/profiles.tf @@ -8,6 +8,7 @@ resource "matchbox_profile" "coreos-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",