diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl index c9df4e030..422917e8b 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl @@ -31,7 +31,7 @@ storage: inline: | #!/bin/bash -ex curl --retry 10 "${ignition_endpoint}?{{.request.raw_query}}&os=installed" -o ignition.json - ${os_flavor}-install \ + flatcar-install \ -d ${install_disk} \ -C ${os_channel} \ -V ${os_version} \ diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf index bcd73b22a..dcd4282a4 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf @@ -6,8 +6,7 @@ resource "matchbox_group" "install" { concat(var.controller_names, var.worker_names)[count.index] ) - profile = local.flavor == "flatcar" ? var.cached_install == true ? matchbox_profile.cached-flatcar-linux-install[count.index].name : matchbox_profile.flatcar-install[count.index].name : var.cached_install == true ? matchbox_profile.cached-container-linux-install[count.index].name : matchbox_profile.container-linux-install[count.index].name - + profile = var.cached_install == true ? matchbox_profile.cached-flatcar-linux-install[count.index].name : matchbox_profile.flatcar-install[count.index].name selector = { mac = concat(var.controller_macs, var.worker_macs)[count.index] } diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf index 1a7da2cd9..54c691776 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf @@ -1,86 +1,3 @@ -locals { - # coreos-stable -> coreos flavor, stable channel - # flatcar-stable -> flatcar flavor, stable channel - flavor = split("-", var.os_channel)[0] - - channel = split("-", var.os_channel)[1] -} - -// CoreOS Container Linux Install profile (from release.core-os.net) -resource "matchbox_profile" "container-linux-install" { - count = length(var.controller_names) + length(var.worker_names) - name = format( - "%s-container-linux-install-%s", - var.cluster_name, - concat(var.controller_names, var.worker_names)[count.index] - ) - - kernel = "${var.download_protocol}://${local.channel}.release.core-os.net/amd64-usr/${var.os_version}/coreos_production_pxe.vmlinuz" - - initrd = [ - "${var.download_protocol}://${local.channel}.release.core-os.net/amd64-usr/${var.os_version}/coreos_production_pxe_image.cpio.gz", - ] - - args = flatten([ - "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", - "console=ttyS0", - var.kernel_args, - ]) - - container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { - os_flavor = local.flavor - os_channel = local.channel - os_version = var.os_version - ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) - install_disk = var.install_disk - container_linux_oem = var.container_linux_oem - ssh_keys = jsonencode(var.ssh_keys) - # only cached-container-linux profile adds -b baseurl - baseurl_flag = "" - }) -} - -// CoreOS Container Linux Install profile (from matchbox /assets cache) -// Note: Admin must have downloaded os_version into matchbox assets/coreos. -resource "matchbox_profile" "cached-container-linux-install" { - count = length(var.controller_names) + length(var.worker_names) - name = format( - "%s-cached-container-linux-install-%s", - var.cluster_name, - concat(var.controller_names, var.worker_names)[count.index] - ) - - kernel = "/assets/coreos/${var.os_version}/coreos_production_pxe.vmlinuz" - - initrd = [ - "/assets/coreos/${var.os_version}/coreos_production_pxe_image.cpio.gz", - ] - - args = flatten([ - "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", - "console=ttyS0", - var.kernel_args, - ]) - - container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { - os_flavor = local.flavor - os_channel = local.channel - os_version = var.os_version - ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) - install_disk = var.install_disk - container_linux_oem = var.container_linux_oem - ssh_keys = jsonencode(var.ssh_keys) - # profile uses -b baseurl to install from matchbox cache - baseurl_flag = "-b ${var.matchbox_http_endpoint}/assets/${local.flavor}" - }) -} - // Flatcar Container Linux install profile (from release.flatcar-linux.net) resource "matchbox_profile" "flatcar-install" { count = length(var.controller_names) + length(var.worker_names) @@ -90,10 +7,10 @@ resource "matchbox_profile" "flatcar-install" { concat(var.controller_names, var.worker_names)[count.index] ) - kernel = "${var.download_protocol}://${local.channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe.vmlinuz" + kernel = "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe.vmlinuz" initrd = [ - "${var.download_protocol}://${local.channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe_image.cpio.gz", + "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe_image.cpio.gz", ] args = flatten([ @@ -106,8 +23,7 @@ resource "matchbox_profile" "flatcar-install" { ]) container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { - os_flavor = local.flavor - os_channel = local.channel + os_channel = var.os_channel os_version = var.os_version ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) install_disk = var.install_disk @@ -144,15 +60,14 @@ resource "matchbox_profile" "cached-flatcar-linux-install" { ]) container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { - os_flavor = local.flavor - os_channel = local.channel + os_channel = var.os_channel os_version = var.os_version ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) install_disk = var.install_disk container_linux_oem = var.container_linux_oem ssh_keys = jsonencode(var.ssh_keys) # profile uses -b baseurl to install from matchbox cache - baseurl_flag = "-b ${var.matchbox_http_endpoint}/assets/${local.flavor}" + baseurl_flag = "-b ${var.matchbox_http_endpoint}/assets/flatcar" }) } @@ -221,7 +136,7 @@ data "ct_config" "worker-ignitions" { locals { # TODO: Probably it is not needed anymore with terraform 0.12 # Hack to workaround https://github.com/hashicorp/terraform/issues/17251 - # Default CoreOS Container Linux config snippets map every node names to list("\n") so + # Default Flatcar Container Linux config snippets map every node names to list("\n") so # all lookups succeed total_length = length(var.controller_names) + length(var.worker_names) clc_defaults = zipmap( diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf index 68dfc781b..d35e74ed5 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf @@ -12,12 +12,14 @@ variable "matchbox_http_endpoint" { variable "os_channel" { type = string - description = "Channel for a CoreOS Container Linux derivative (coreos-stable, coreos-beta, coreos-alpha, flatcar-stable, flatcar-beta, flatcar-alpha)" + default = "stable" + description = "Flatcar Container Linux channel to install from (stable, beta, alpha, edge)" } variable "os_version" { type = string - description = "Version for a CoreOS Container Linux derivative to PXE and install (coreos-stable, coreos-beta, coreos-alpha, flatcar-stable, flatcar-beta, flatcar-alpha)" + default = "current" + description = "Flatcar Container Linux version to install (for example '2191.5.0' - see https://www.flatcar-linux.org/releases/)" } # machines diff --git a/docs/configuration-reference/platforms/baremetal.md b/docs/configuration-reference/platforms/baremetal.md index a818edab1..e181b9b95 100644 --- a/docs/configuration-reference/platforms/baremetal.md +++ b/docs/configuration-reference/platforms/baremetal.md @@ -149,7 +149,7 @@ os_version = var.custom_default_os_version | `worker_domains` | Ordered list of worker FQDNs. Example ["node2.example.com", "node3.example.com"] | - | list(string) | true | | `ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | | `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | -| `os_channel` | Flatcar Container Linux channel to install from ("flatcar-stable", "flatcar-beta", "flatcar-alpha", "flatcar-edge"). | "flatcar-stable" | string | false | +| `os_channel` | Flatcar Container Linux channel to install from ("stable", "beta", "alpha", "edge"). | "stable" | string | false | | `enable_tls_bootstrap` | Enable TLS bootstraping for Kubelet. | true | bool | false | | `encrypt_pod_traffic` | Enable in-cluster pod traffic encryption. If true `network_mtu` is reduced by 60 to make room for the encryption header. | false | bool | false | | `ignore_x509_cn_check` | Ignore check of common name in x509 certificates. If any application is built pre golang 1.15 then API server rejects x509 from such application, enable this to get around apiserver. | false | bool | false | diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 46479b07d..bb33743dc 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -5804,9 +5804,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "install.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1299, + uncompressedSize: 1294, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcd\x8e\xf2\x46\x10\xbc\xf3\x14\x9d\xfd\x50\x4e\xb1\x61\x91\x72\xb1\x84\xa2\xdd\x28\x52\x22\xe5\x14\xf2\x73\xd8\xac\xac\xc1\xd3\xc0\x84\x71\x8f\xb7\xbb\x07\xd6\x21\xbc\x7b\x34\x18\x1b\xd8\x1f\x7d\x37\xd3\x5d\x53\x53\xdd\x55\x4c\x96\x65\x23\x69\x45\xb1\xb6\xc5\x08\x20\x92\x53\x49\x1f\x00\x19\x90\xa9\xb1\x00\x47\xa2\xc6\x7b\xe4\x5c\x90\x77\xae\xc2\x53\x17\x00\xc9\x2c\x3d\x16\xa0\x1c\xfb\x52\x15\x48\x91\x54\x0a\xf8\xef\x5c\x01\x78\xfa\x83\x9c\x3e\x0f\x3f\x7f\xc3\x97\xe8\x18\x65\x4e\xa8\xfb\xc0\xdb\x2c\x90\x77\x84\xb9\x1a\x5e\xa3\x0e\xb0\x87\x95\x22\x7f\x05\xf3\xb4\xe8\xf4\x5c\xc8\x7f\x6f\x1b\x9c\x8b\xab\x1b\x8f\x43\xed\xa7\x57\xac\x16\x6a\x58\xe7\x93\xd0\xe8\x64\x98\xe6\x42\xf3\x4b\x57\xba\xd0\xfc\x65\x48\xd1\x3e\xb6\xf3\x3a\x7a\x75\x59\x14\xe4\xeb\xbb\xbf\xc0\xc3\x2e\x38\x0b\x51\x1c\xad\x41\x37\x08\xa2\x86\xac\x61\x0b\x8b\xc5\xcf\xd0\x04\x56\x90\x00\x8a\xcc\x66\x15\xb8\x06\xd3\x34\xbe\x85\xca\x10\x05\x3d\x41\x22\xa9\xf3\x67\xae\x26\x88\x66\x67\x55\x39\x3c\x46\x05\x63\x6b\x47\x02\xb5\x69\x4f\x60\x0d\x60\x71\x19\xd7\x60\x9d\x6c\x7b\x37\xa0\xe1\xb0\xf4\x58\x4b\xde\x4b\x4a\x0b\xeb\xbb\xdf\x81\xc8\xc6\xc2\xde\x79\x0f\x51\xb0\x93\x34\x9b\x81\xa1\xa4\x1a\x59\x26\x17\x71\x95\xa1\xe4\x1b\x61\xa5\xf9\x8d\xef\x89\x22\x97\x50\x6d\x87\x95\x5b\x0e\x8d\xa3\x73\x3c\xae\xa1\xf7\xd3\x2c\xa1\xb3\x74\x4f\x5e\x05\x5a\x0d\x88\x8f\x33\xd1\xb9\x77\xa2\x7e\xbe\x29\xfe\xea\x44\x91\x16\xca\x68\xea\xf9\xe7\x9d\xd9\x6c\x36\x1b\x89\x06\x36\x6b\x4c\x6a\x56\xce\xe3\x90\xda\xc6\xe8\xa6\x80\x0f\xcd\x3e\xe1\x4e\x61\x2f\x80\x43\xe8\xe7\xaa\x83\xc5\x02\xa6\xdf\x4f\xa7\x6f\x73\x3c\x48\x70\xa7\x04\xde\xce\xf0\xe5\x9b\xc9\xd2\xd1\x64\x69\x64\x03\x19\xbe\x5e\xcf\x1c\xd9\x43\x96\x31\x2a\xb7\x70\x3f\x85\xbb\xf1\xc1\xad\xc9\xa9\x0b\x54\x22\xd9\x26\x38\xd2\xe3\x0f\x87\x43\xce\xf8\x12\x51\x34\x67\xb3\x2f\x5f\x22\x72\x7b\x3c\x7e\x1b\x64\xde\xeb\xb6\x77\x90\x05\xe8\x8f\xe6\xff\x48\xa0\xab\x5b\xc6\x87\x20\xe5\xca\x9b\x5d\xe0\x63\x9f\x20\xf8\xfb\x66\x6b\x99\x85\xf1\xe1\xdc\x2a\x53\x7e\x8e\x6f\x01\x3f\x76\x34\xd5\xc6\x10\xa1\x7f\xd7\xfe\xb3\x6b\xef\x90\xc5\x05\x7a\xd7\x0e\x69\xb4\xb4\x2d\xe3\x08\xb9\xf4\x8e\xe2\x6b\x19\xb0\x3e\xde\xbd\x41\x8e\x0f\x4b\x23\x18\xd9\x27\xc1\xeb\x77\x3c\xee\xd3\x21\xa3\xc5\x9d\xb1\x35\x08\xaa\x5e\xfd\xab\x01\x3a\x1f\x2b\xf5\xc0\xb8\x4c\x5e\x36\x46\x64\xdf\x3d\x62\x29\xe2\xb7\x8f\x58\x15\xb8\x3f\x2c\xb2\x29\x4d\xd4\x4d\x60\xf7\x2f\xda\x72\x8b\xad\x14\x30\x3e\xa4\x72\xfa\x3e\x8e\xfe\x0f\x00\x00\xff\xff\xec\x24\x3c\x7b\x13\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x8f\xe2\x46\x10\xbd\xf3\x2b\x2a\x33\x28\xa7\xd8\x30\x48\xb9\x58\x42\xd1\x4c\x14\x29\x91\x72\x0a\x49\xf6\x30\x3b\xb2\x1a\x77\x01\xbd\xb4\xab\x3d\x55\xd5\x30\x5e\x96\xff\xbe\x6a\xc0\x06\xe6\x43\x7b\x33\x55\xaf\x5f\xbf\xaa\xf7\xe8\x2c\xcb\x06\xd2\x8a\x62\x6d\x8b\x01\x40\x24\xa7\x92\x3e\x00\x32\x20\x53\x63\x01\x8e\x44\x8d\xf7\xc8\xb9\x20\x6f\x5c\x85\x87\x2e\x00\x92\x99\x7b\x2c\x40\x39\x76\xa5\x2a\x90\x22\xa9\x14\xf0\xed\x54\x01\x78\xfc\x8f\x9c\x3e\xf5\x3f\xff\xc1\xe7\xe8\x18\x65\x4a\xa8\xdb\xc0\xeb\x2c\x90\x77\x84\xb9\x1a\x5e\xa2\xf6\xb0\xfb\x85\x22\xff\x00\xf3\x38\x3b\xea\x39\x93\xff\xdb\x36\x38\x15\x57\x37\x1e\xfb\xda\x1f\x2f\x58\xcd\xd4\xb0\x4e\x47\xa1\xd1\x51\x3f\xcd\x99\xe6\xaf\x63\xe9\x4c\xf3\xc9\x90\xa2\x7d\x68\xa7\x75\xf4\xea\xb2\x28\xc8\x97\x77\xdf\xc2\xfd\x26\x38\x0b\x51\x1c\x2d\x41\x57\x08\xa2\x86\xac\x61\x0b\xb3\xd9\x9f\xd0\x04\x56\x90\x00\x8a\xcc\x66\x11\xb8\x06\xd3\x34\xbe\x85\xca\x10\x05\x3d\x40\x22\xa9\xf3\x27\xae\x26\x88\x66\x27\x55\x39\x3c\x44\x05\x63\x6b\x47\x02\xb5\x69\x0f\x60\x0d\x60\x71\x1e\x97\x60\x9d\xac\x3b\x37\xa0\xe1\x30\xf7\x58\x4b\xde\x49\x4a\x0b\xeb\xba\xbf\x80\xc8\xca\xc2\xd6\x79\x0f\x51\xf0\x28\x69\x32\x01\x43\x49\x35\xb2\x8c\xce\xe2\x2a\x43\xc9\x37\xc2\x4a\xf3\x2b\xdf\x13\x45\x2e\xa1\x5a\xf7\x2b\xb7\x1c\x1a\x47\xa7\x78\x5c\x42\xef\xc6\x59\x42\x67\xe9\x9e\xbc\x0a\xb4\xe8\x11\xef\x67\xe2\xe8\xde\x81\xfa\xe9\xaa\xf8\xb7\x13\x45\x9a\x29\xa3\xa9\xa7\x1f\x77\x26\x93\xc9\x64\x20\x1a\xd8\x2c\x31\xa9\x59\x38\x8f\x7d\x6a\x1b\xa3\xab\x02\xde\x35\xfb\x80\x3b\x84\xbd\x00\x0e\xa1\x9b\xab\x0e\x16\x0b\x18\xff\x3a\x1e\xbf\xce\x71\x2f\xc1\x1d\x12\x78\x3d\xc3\xed\x4f\xa3\xb9\xa3\xd1\xdc\xc8\x0a\x32\x7c\xb9\x9c\x39\xb2\x87\x2c\x63\x54\x6e\xe1\x6e\x0c\x37\xc3\x9d\x5b\x92\x53\x17\xa8\x44\xb2\x4d\x70\xa4\xfb\xdf\x76\xbb\x9c\xf1\x39\xa2\x68\xce\x66\x5b\x3e\x47\xe4\x76\xbf\xff\x39\xc8\xb4\xd3\x6d\x6f\x20\x0b\xd0\x1d\xcd\xbf\x48\xa0\x8b\x5b\x16\xde\x68\x65\xb8\x0b\x0f\x7c\xbe\x5a\x58\x66\x61\xb8\x3b\xb5\xca\x14\x9d\xfd\x6b\xc0\xef\x30\xdc\x05\x29\xab\x95\x21\x42\xff\xa6\xfd\xff\xb1\xbd\x41\x16\x17\xe8\x4d\x3b\xa4\xa9\xd2\xa2\x8c\x23\xe4\xd2\x3b\x8a\x2f\x65\xc0\x7a\x7f\xf3\x0a\x39\xdc\xcd\x8d\x60\x64\x5f\x2e\xbc\x59\xbe\xe1\x71\x1f\xce\x17\x2d\x6e\x8c\xad\x41\x50\xf5\xe2\x0f\x0d\x70\xb4\xb0\x52\x0f\x8c\xf3\x64\x63\x63\x44\xb6\xc7\xf7\x2b\xa5\xfb\xfa\xfd\xaa\x02\x77\x87\x45\x56\xa5\x89\xba\x0a\xec\xbe\xa2\x2d\xd7\xd8\x4a\x01\xc3\x5d\x2a\xa7\xef\xfd\xe0\x7b\x00\x00\x00\xff\xff\xbc\x9d\x89\x88\x0e\x05\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/worker.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "worker.yaml.tmpl", @@ -5818,9 +5818,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf": &vfsgen۰CompressedFileInfo{ name: "groups.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1265, + uncompressedSize: 1078, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\xe1\x6a\xc2\x30\x14\x85\xff\xe7\x29\x0e\x01\xc1\x31\xdb\x07\x18\x14\x1f\x64\x0c\xb9\x8b\xa9\x96\xa5\xb9\x92\xa4\x4e\x18\xbe\xfb\x48\xec\x6a\xb5\x2a\xad\xfb\x57\x6e\x72\xce\xbd\xfd\xee\x89\xd3\x9e\x1b\xa7\x34\x64\x4d\x41\x6d\x3f\xf9\xb0\xda\x38\x6e\x76\x12\xb2\xb2\x3e\x90\x31\x12\x3f\x02\x50\xdc\xd8\x80\x02\x46\xdb\x4d\xd8\xce\xf7\xe4\x72\xc5\x36\x38\x36\x46\xbb\x95\xa5\x5a\xfb\x17\xbc\xf6\x8f\xbf\xd9\x7d\x75\x47\x42\x00\xf1\x0b\x05\x4a\x76\x35\x85\xb9\x00\xd0\xf5\xc8\x66\x5e\x2e\x52\x45\xb1\x55\x14\x6e\xfa\x2f\x30\xb0\x7d\x4f\x63\xe5\x95\x5d\xeb\xc3\x87\x00\x52\x9f\x9d\xe3\xb2\x32\xb1\x95\x61\x45\x26\x2f\x0d\xed\xd9\xa1\x28\x20\x4b\x43\x41\x91\x93\x58\x26\x2f\x45\x6a\xab\xd7\xab\x76\x88\x78\x23\xb8\x46\x63\x89\x8e\x45\xeb\xd5\xde\xcc\x5a\x7d\x66\x2a\xdb\x1c\xb2\x56\x77\x31\x44\x9e\xfe\xf2\x6d\xe8\xf0\x27\x7d\x24\x7a\x6a\xa6\x88\x89\x2a\xab\x9f\x9a\x6a\xb4\x38\x82\xf5\xda\x68\x15\x22\xca\x14\x09\xa0\x26\x85\xe2\xce\xca\x6a\x52\x97\x1b\x8b\x85\xc1\xc2\x8e\xe2\x28\xc4\x83\x0c\x9e\x0d\xc7\xc7\xf0\x4e\xd4\x66\xfe\x9c\xb2\xa4\x33\x8d\x0f\xad\xa8\x57\xbd\x72\x1b\x26\xac\x1f\xb0\x9b\x3c\x4f\x72\x3f\x89\xe1\x0d\x78\xd7\x9d\x01\xf6\x40\xd1\xbd\x19\xbd\x96\x23\x00\x9e\xe0\xdf\x85\x77\xf9\x48\xff\x03\xae\xef\x34\x11\xda\x49\x3a\x1d\x58\x2f\x58\xe3\x61\xfd\x06\x00\x00\xff\xff\x80\x70\xa7\x29\xf1\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x51\x6a\xf3\x30\x10\x84\xdf\x75\x8a\x41\x10\xc8\xcf\x1f\xe7\x00\x05\xd1\x83\x94\x12\x54\x45\x49\x4c\x65\x6d\x58\x49\xad\xa1\xe4\xee\xc5\x8a\xeb\xd8\xb1\x5d\x1c\xfa\x66\x24\xcd\x8c\xf7\x9b\x65\x1b\x28\xb1\xb1\x90\x95\x8e\xe6\xf4\x46\xf5\xee\xc8\x94\xce\x12\xb2\xf4\x21\x6a\xe7\x24\xbe\x04\x60\x28\xf9\x08\x05\x67\xfd\x31\x9e\xd6\x1f\x9a\xb7\x86\x7c\x64\x72\xce\xf2\xce\xeb\xca\x86\x7f\xf8\xdf\xbf\xfe\x24\x7e\xef\xae\x84\x00\x9a\x2f\x28\x1c\x88\x2b\x1d\xd7\x02\x40\x97\x51\xac\x82\xdc\xe4\x13\x43\xde\xe8\x38\xe9\xbf\xc1\xc8\xf6\x25\xff\xd6\xb6\xf4\x7b\x5b\xbf\x0a\x20\xe7\x9c\x99\x0e\xa5\x6b\xa2\xb2\x8b\x36\x27\xbb\xdf\xb5\x41\x50\x0a\x91\x93\xc5\x33\xba\x79\xdb\xf7\xed\xcb\xe2\xe0\x74\x34\x9a\x0b\x57\xfa\x54\x17\xad\x6e\x10\xb4\xcd\x93\x3c\x8d\x1d\x7e\xa4\xb3\x22\x01\x04\xeb\xac\x89\xc4\x50\x99\x2b\x50\x69\x03\x35\x33\x77\xa5\xcd\x70\xec\xe6\x60\x34\xf5\x45\x5c\x84\xf8\xa5\xc8\x9b\xe1\xf2\x2e\x67\xfa\x5a\x85\x5b\x55\x59\xe7\x52\x88\xad\xa8\x77\x7a\xe7\x36\xae\xa9\xdf\xd2\xb8\x88\x4e\x1e\x26\x10\xce\x33\x9c\x80\x77\x9f\x0c\x50\x00\x54\xb7\x78\x76\x2f\x17\x00\xbc\xc2\x9f\x85\x37\xdc\xf4\xbf\x80\xeb\x3b\x3d\x08\xed\x2a\x7d\x1c\x58\x6f\xb1\x96\xc3\xfa\x0e\x00\x00\xff\xff\xc6\x0e\xa7\x44\x36\x04\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -5832,9 +5832,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf": &vfsgen۰CompressedFileInfo{ name: "profiles.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 8592, + uncompressedSize: 5484, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5b\x6f\xdb\xc6\x12\x7e\xd7\xaf\x18\x30\xf6\x81\x84\x23\x91\x76\xce\x15\x06\x74\x0e\x8a\x04\x45\x8b\x5e\x52\x20\x2d\xfa\xe0\x1a\xc4\x6a\x39\x12\xb7\x5a\xee\x12\x3b\x4b\xd9\x8a\xa1\xff\x5e\xec\x85\xb4\x64\x53\xb6\xe2\x26\x6e\x9a\x3a\x2f\x91\x77\x2e\x3b\xf3\xcd\xcc\xc7\xa1\x24\x35\x67\x92\xe0\x7a\x00\xf0\x02\xb8\x36\xa8\x69\x42\x96\xcd\x24\xc2\xe4\x7f\xf1\x00\xe6\x92\xad\xb4\x19\x43\x14\xf0\x92\x29\x85\xd2\x9b\xcc\x25\xb3\x9c\x99\x2d\x9b\x78\xb2\xdf\x28\x08\x60\x0a\x54\x4b\x61\x87\xc9\x24\x19\xc3\x8a\x99\x54\x53\x1e\x95\x46\xe7\x27\x17\x83\x01\xb4\x36\xf7\xab\x9e\x5e\x0c\x36\x83\x41\x96\xc1\x2b\x6d\xf0\xcd\x5b\x78\xa5\x95\x65\x42\xa1\x81\x6f\x85\x6a\xae\xe0\x6b\x45\x96\x49\x09\xb5\xd1\x73\x21\x11\x86\x73\xa3\x2b\x30\x28\x91\x11\xa6\x2e\xc3\x89\xa6\x54\xa1\x1d\x0d\x0c\x92\x6e\x0c\x47\x48\x2a\x66\x79\x39\xd3\x57\x79\xb4\x4a\x20\xe1\xad\xdf\x89\x74\x7e\x27\x22\xf8\x4d\x3c\x76\x5c\x37\xca\xc2\x14\x24\xaa\x85\x2d\x87\x2e\x46\xa7\x6f\xb4\x94\x68\x72\xc5\x2a\xa4\x11\xfc\x7d\x5b\x7c\xa9\xcd\xb2\x13\x0d\x00\xdc\x07\x98\xc2\x5c\x9b\x8a\xd9\xe1\x00\x00\x20\x39\xa6\xc9\x9e\x5b\x27\xc7\x94\x8c\xbd\x92\xbf\x4a\x36\x64\xa3\xb3\x70\xca\xb5\xe2\xcc\xf6\xc6\x11\x10\xdc\xb9\xfe\xdc\x87\x9f\x0a\x55\xe0\xd5\xc5\x00\x60\xe4\xc0\x5f\xa2\x09\xd8\x27\x47\xd7\xce\xa2\xd0\x97\x4a\x6a\x56\x38\x48\xac\xe6\x5a\x6e\xce\xb2\xec\xe8\xda\x37\x50\x1a\xab\xb1\x49\x7b\x70\xcd\x58\x55\xfc\xfb\x9f\x93\x86\x4c\x16\x3c\x69\xca\x57\x68\x48\x68\xb5\xc9\x42\x87\x39\x9f\x45\xc3\xad\xd0\x2a\xaf\xaf\x30\x5d\x55\x2e\xdb\x77\x89\x8b\x43\x28\x61\x4d\x01\x53\x38\x0f\xa0\x3c\x79\x34\xb9\xa8\xd8\x02\x53\x5e\x0b\x9d\x2e\xde\x79\xd8\x7d\x77\x32\xb3\x20\x57\x31\xc9\xac\x45\x35\x8c\xe1\x85\x70\xa7\x87\x7a\x02\xd7\x58\x4e\xd5\xd5\x69\x2e\x16\x69\x63\xe4\x34\x04\xd6\xf5\x60\x69\x6d\x9d\xa3\x2a\x6a\x2d\x94\xdd\x64\x62\xa1\x84\xf3\xf8\xff\xa6\x11\xc5\xf4\xe8\xe8\xda\xfd\xbf\xf9\x5b\xc5\xb8\xfb\xa3\x62\xfc\xac\xc4\xab\x72\x5d\x6f\x6e\x5d\x30\x17\x86\x6c\x3e\xd3\xda\x4e\xd7\x48\x37\x42\x45\x5a\xe2\xd4\xda\xf5\x49\xcf\xd9\xdb\x93\xad\x3e\x0b\x2d\x91\xbb\xc4\x3d\x0a\xbe\x4f\xba\x0e\xcd\x7d\x87\xe6\x21\x0f\x98\x82\xc5\xaa\x96\xcc\xa2\x9b\x9f\x61\x72\x74\x5d\x33\x5b\xa6\x95\x2e\x1a\x89\x9b\x8c\xcb\x2c\xb6\x72\xba\x66\x95\x4c\x6d\x55\xcb\x64\xec\x67\x09\x40\x53\x1e\x49\xe2\xe6\xdf\x14\x42\x6d\x83\xa0\x55\x6b\x19\xe2\x8e\xda\x0d\xdd\x78\xbd\x58\xe1\x6d\xbd\xdd\xda\x7b\xc5\x16\xd9\x0e\x6c\xaf\x18\x47\x32\x39\xa6\x0e\xfa\x48\x43\xfd\x15\x1a\x05\x5f\x21\xbb\xbc\x10\xb4\xdc\xbd\x74\x5b\xd2\x0e\xeb\x0e\x82\x1a\xab\xa8\xda\x23\xf1\x16\x44\x65\xbe\xc4\x35\xc1\x0e\x40\xbf\x92\x56\xa8\xb8\x2e\xd0\x0f\x7e\xab\x14\xe2\x79\x01\x5a\xc9\x35\x70\xc6\x4b\x2c\x6e\xd3\x4a\x47\x8e\xac\x28\x08\x26\x33\x98\x31\xc2\xc6\x04\xf8\xe2\x67\x57\x12\x57\xd6\x24\x19\x00\x6c\x46\x8f\x21\xdd\x16\x2f\xc8\x18\x11\x5a\x0a\xd1\x8c\x9c\x9f\xef\xb5\xc5\x33\xf8\xa2\xa8\x84\x82\xaa\x21\x0b\x25\x5b\x21\xb4\x53\x8e\xc5\x76\x11\x85\xb2\xfa\xc6\x57\x70\x15\x47\x37\x7d\x80\xc3\x7b\xb3\x7f\x2a\x2a\xbf\xf7\xf2\x27\x65\xf4\x6c\x07\xb4\x0f\x42\xcb\x8f\x73\xf9\xcc\xad\xcf\xdc\xfa\x39\x70\x6b\xcb\x73\x0d\xe1\x36\x7f\x82\xd5\x6d\xb0\xb0\xcb\x80\x9e\x0c\x7a\xe9\x75\x32\x83\xfb\x7b\x34\x0e\x5a\xbb\xec\x84\xa2\x6d\x76\x58\xf9\xcb\xb8\x83\xdf\xa6\x65\x71\xef\x2e\xdc\xee\xf2\x1e\x8f\x03\x36\xe2\x56\xff\x69\xe8\xf3\xd6\x6d\x9f\xfc\x06\x7c\x07\xcd\x7b\x37\xcf\xa8\xfd\xb1\x17\xe1\x0f\x11\xd4\xa3\x38\xfb\x60\x57\xce\x24\x32\xc1\x47\xa4\xed\x18\xce\x33\x6f\xff\xc5\x79\xfb\xa3\xec\xc4\xfb\xd8\xf7\xe9\x97\xe2\xb6\xcd\x0f\xda\x8a\x77\xb8\xe1\x69\x77\xe2\xde\xab\xff\x90\x8d\x38\x46\xf2\x61\x18\xfa\xb1\x4e\x9f\x19\xf6\x99\x61\x3f\x17\x86\xfd\xc4\x36\xe3\x6f\x9a\x99\x6b\x27\x8b\xe4\xe9\x39\x90\x46\x1b\x24\x3d\xfc\x0d\x70\x30\xa0\xc3\x69\xf1\xfe\xaf\x76\x83\xea\x43\x4c\xd7\xe7\xf8\x2e\x9f\x01\x18\x76\x99\xb7\xcd\x02\x53\x28\x98\x65\x29\xb7\x71\x36\xb6\x3c\x4c\x5a\xa5\x5d\x2f\xa9\x41\x55\xa0\xc1\xc2\x61\xe5\x8c\x21\xe9\xac\x77\xd2\xbf\xb1\x7f\x2f\x1c\xdc\x19\x7a\xc5\x87\x86\xf4\xc6\xba\x67\x4e\x0b\x5d\x31\xa1\xf2\x88\xea\xad\xcb\x82\xf0\x0e\x3a\x00\x68\x79\x11\x6c\xe0\xae\x55\x2f\xa2\xd1\xc6\xd1\xab\x60\x32\x8f\x65\x71\x1d\xaf\x85\x0a\x65\x04\x48\xc6\xb1\x72\x10\xeb\x2b\x05\xd9\x56\xe8\xeb\x3c\x75\x4d\x4a\x67\x59\x76\x4c\x67\x2f\xff\xf1\xdf\x93\x4e\xbf\xbf\xae\x7b\xa5\x31\xb3\x56\x3e\x0a\x1f\xc2\x98\xb5\x2d\x53\x28\xca\x09\xcd\x4a\x70\xcc\x45\x0d\x53\x08\x98\xa6\x8e\x7e\x97\xcd\x0c\xd3\x7e\xc5\x5d\x1f\x01\x5e\x6a\xe6\x73\x71\xd5\x61\xd5\x27\xdc\x4b\x0a\x0f\xf3\x02\x2a\x36\x93\x98\x5b\x49\xfe\xd1\x40\xd6\xb0\xba\x2b\x4c\x9f\x30\xcc\x30\x40\x6d\xd0\xda\x75\x5e\x1b\xe1\x1b\x69\xce\x24\xe1\xc0\xff\x12\xf5\x9d\x5b\x90\x1a\x42\x28\x84\x41\x6e\x41\x6a\xbd\x6c\xea\x14\x5e\x31\xa5\x74\x90\x84\xa3\x61\xc5\xea\x31\x2c\x71\x3d\x02\x12\x8a\x23\x08\x1b\xf6\x40\xb7\x2f\x90\x2b\xa3\x7f\xc2\x42\xc5\x6a\x1a\x00\x90\x12\x75\xed\xf6\xb2\x8e\xe4\x25\xcf\x2b\x56\x9f\x3f\xd8\x43\x17\x77\x39\xe7\x67\xbf\x92\x1c\xc8\x37\x61\x7f\xd9\x3f\x63\x07\xee\x58\x41\xed\x10\x8e\xd9\x76\xf8\xfe\xfc\x12\xef\x79\x14\xb7\xdc\xb6\x3d\x38\xe7\xc3\x39\x25\x58\x3e\xc0\x27\x70\xfb\x59\x1d\xef\xdb\x4b\x2b\x7f\xba\xc9\x73\xc1\x48\xb4\xb9\x64\x33\x94\xb4\x65\x55\xa1\x59\xe0\xf0\x1a\x12\xa5\x0b\x4c\x97\x5d\xcf\xa6\x42\x67\xee\x28\xf1\xef\x39\xb0\x09\x4b\x48\x30\x8f\x24\xf4\xb9\x4c\xf3\xde\xfe\xf7\x93\xbc\xf3\x53\xf9\x8f\x6f\x5e\xbf\x39\x83\x1f\x8c\x9e\xb1\x99\x5c\xbb\x4b\x05\x81\x8b\x4c\x21\xba\x37\x33\xa6\xd6\x95\x36\x08\x97\xc2\x96\x60\xd1\x18\xe6\xc6\x12\x4e\xd2\xd3\x97\xde\xfe\x2b\xc6\x97\x6e\x07\x72\x57\x32\xa3\x1b\x55\x40\xfb\x9c\x58\x08\x5b\x36\xb3\x94\xeb\x2a\x2b\x19\x95\x82\x6b\x53\x67\x9d\x8b\x4c\x10\x35\x48\xd9\xe9\x7f\x5e\xfe\xeb\xd4\xbb\x7a\x8d\x73\xd6\x48\xbb\xef\xa7\x98\xb8\x19\x77\x89\x57\xac\x06\x5c\xa1\x59\x83\xab\xaa\x27\x0d\x72\x91\xf8\x07\x57\xf2\x8b\x4a\x46\x40\xda\x3b\x76\xbb\x59\x00\x99\x80\x1a\xce\x11\x8b\x01\x80\xd5\x96\xc9\x3c\x8c\xe4\xef\x7a\x25\x74\xc8\x17\x21\x76\x57\x8e\x77\xa2\xae\x58\x3d\x7c\xc4\xab\x5d\x7c\x1d\x2c\x1b\xb5\xf4\x49\x9c\xbb\xa2\x0b\x10\x0a\x0c\x53\x0b\x1c\x86\x42\x6f\xc7\x3d\x82\x33\x70\xa9\x5e\x8c\xe1\xd4\x9b\x8f\x42\xd7\xfd\xa4\x1c\xb3\xe9\x39\xd8\x12\x21\xc6\x06\x4c\x15\xae\xdf\x0c\x50\x8d\x5c\xcc\x05\xef\xb0\x1c\x83\x23\x1c\x03\x7a\x85\xc6\x88\x02\x09\x6a\x23\xb4\x49\x63\x72\x0e\xe9\x76\xae\x6e\x9a\xad\x4d\x79\x1c\xc7\x9b\xe7\xad\x3b\xb7\xa3\xfe\x16\x00\x00\xff\xff\x92\x93\x92\x3e\x90\x21\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\x69\x6f\xdb\x46\x13\xfe\xae\x5f\x31\x60\xec\x17\x12\x5e\x89\xb4\xf3\x1e\x2d\x0c\x10\x45\x91\xa0\x68\xd1\x23\x05\xda\xa2\x1f\x5c\x83\x58\xed\x8e\xc4\xad\x96\xbb\xc4\xce\xd2\xb6\x62\xe8\xbf\x17\x7b\x90\x96\x6c\xfa\x48\x5a\xa4\x07\x92\x2f\x91\x39\xc7\xce\x3e\x33\xcf\xc3\x61\x51\xc0\x17\x8a\x39\xce\x2c\xbc\x32\xda\x31\xa9\xd1\xc2\x37\x52\x77\xd7\x20\x35\x39\xa6\x14\xb4\xd6\xac\xa4\x42\x98\xae\xac\x69\xc0\xa2\x42\x46\x98\xaf\x62\xd4\x42\x79\xdf\x5c\xa3\x9b\x4d\x2c\x92\xe9\x2c\x47\xc8\x1a\xe6\x78\xbd\x34\xd7\x55\x8a\xcd\x20\xeb\xfd\x53\xd6\x0c\x6e\x26\x00\xdc\x74\xda\x41\x09\x0a\xf5\xda\xd5\xd3\x4b\x66\x73\x6e\xb4\xb3\x46\x29\xb4\x95\x66\x0d\xd2\x0c\xfe\xbd\x6f\xbe\x32\x76\x33\x98\x26\x00\xfe\x07\x94\xb0\x32\xb6\x61\x6e\x3a\x01\x00\xc8\x8e\x69\x71\xe7\xb4\xc5\x31\x65\xf3\x60\x0c\x47\xa8\x8e\x5c\x4a\x12\x9f\x72\xa3\x39\x73\xa3\xe7\xcf\xe1\xde\xb1\xe7\xa1\xec\x5c\x6a\x81\xd7\x17\x13\x80\xd9\x64\x02\xb0\x41\xab\x51\x41\x09\xd9\xd1\x8d\x8f\x10\xe6\x4a\x2b\xc3\x84\x87\xc0\x19\x6e\xd4\xee\xac\x28\xa2\xc9\x50\xc5\x6b\xa6\x35\xaa\x5d\xfe\x20\x9c\x05\x6b\xc4\xff\xff\xbb\xe8\xc8\xde\x46\x5d\xa2\x25\x69\xf4\xae\x48\xde\x3e\xb7\xe8\xb8\x93\x46\x57\xed\x35\xe6\x97\x8d\x0f\x7f\x9b\xf9\x7a\xa4\x96\xce\x0a\x28\xe1\x3c\x82\xf2\xa7\x55\x55\xc9\x86\xad\x31\xe7\xad\x34\xf9\xfa\x6d\x68\xc3\x85\x2f\x90\xd9\x35\xf9\xce\x29\xe6\x1c\xea\x69\x2a\x33\x96\x5d\x3e\x3b\x95\x0f\x59\x6b\xe9\x3d\x7c\xeb\x56\x72\x9d\x77\x56\x95\xb1\xb8\x61\x0c\x6b\xe7\xda\x0a\xb5\x68\x8d\xd4\x6e\x57\xf4\x11\x9f\x75\x9d\x14\xe5\xd1\xd1\x8d\xff\x7f\xf7\xaf\x86\x71\xff\x47\xc3\xf8\x59\x8d\xd7\xf5\xb6\xdd\xf5\x47\xa4\x72\xf2\x95\xb4\xe4\xaa\xa5\x31\xae\xdc\x62\x3f\x52\x19\x37\x9a\x8c\xc2\xd2\xb9\xed\xc9\xc8\xb3\x1f\x4e\xf6\x66\x2f\x8e\x49\xe5\x2f\x1f\x90\x08\xb3\xc3\x7b\xe6\x55\x01\xe8\x2a\x5e\x04\x4a\x70\xd8\xb4\x8a\x39\xf4\x1c\x9a\x66\x47\x37\x2d\x73\x75\xde\x18\xd1\x29\xdc\x15\x5c\x15\x69\xbc\xf3\x2d\x6b\x54\xee\x9a\x56\x65\xf3\xc0\x2b\x80\xdb\x6e\xc2\xf0\xaf\x84\xc3\x3e\xf7\x8e\xa9\x81\x23\x8e\xc9\x12\x1c\x7b\xd0\x06\x1c\x83\x63\x22\x5e\x76\x4c\x03\xaa\x59\xa4\xcc\x38\xf8\xb3\x98\x2b\xd6\x5d\x09\x49\x9b\xc3\x43\xf7\x2d\x3d\x35\x0f\xb0\x31\xd8\x24\xd7\x11\x4b\x88\x20\xaa\xab\x0d\x6e\x09\x60\xff\x46\xbf\x92\xd1\xa8\xb9\x11\x18\x68\xde\x3b\xc5\x7a\x5e\x80\xd1\x6a\x0b\x9c\xf1\x1a\xc5\x62\x48\x1c\xe7\x7e\x10\x40\x26\x04\xc1\x62\x09\x4b\x46\xd8\xd9\x08\x5f\xfa\x5d\xad\x14\xf3\x0d\xcb\xb2\x09\xc0\x6e\x36\xd9\x4d\x26\x8f\x28\xeb\x57\xa3\xca\xda\x03\x06\x05\x23\x42\x47\xb1\x9c\x99\x4f\xf4\x9d\x71\x78\x06\x9f\x8b\x46\x6a\x68\x3a\x72\x50\xb3\x4b\x84\x9e\xcc\x28\xf6\xbb\x28\xb5\x33\xb7\xb9\x62\xaa\x9e\x9a\xf9\xe3\x1a\x9d\xee\x7f\xc0\xfa\x0f\x24\xd8\x8f\x1d\xfd\x41\xd5\xbb\x38\x44\xec\x8f\x11\xdf\xf7\x4d\xfa\x51\x3b\x3f\x6a\xe7\x5f\x5f\x3b\x7b\x19\xeb\x08\xf7\xf5\x11\x9c\x19\x76\xc8\x43\x81\x0b\x64\x1f\x95\xcf\xc5\x12\x1e\x1f\xbf\x43\x22\x1d\xa8\xed\xd7\xdd\xd2\x0f\x88\x43\x0a\x82\x1b\x65\xa0\x2f\x8e\x9e\x50\xbe\x21\x80\x9e\x2f\x74\x8f\xa8\xd9\xe0\xfa\x94\x76\x8d\x25\xbe\xaf\x50\x00\x96\x5d\x55\xfd\x90\x40\x09\x82\x39\x96\x73\x97\xa6\x7d\x2f\xc3\xa2\x77\x3a\xcc\x92\x5b\xd4\x02\x2d\x0a\x8f\x95\x0f\x86\x6c\x88\x3e\xb8\xfe\x6d\xfc\x3b\xe1\xe0\x9f\x61\x70\x7c\x8a\x76\xb7\xd1\x23\xcc\x13\xa6\x61\x52\x57\x09\xd5\x3b\x87\x45\xe3\x3d\x74\x00\xd0\x71\x11\x63\xe0\x7e\xd4\x28\xa2\x29\xc6\x0b\xa6\x64\xaa\x4a\x6d\xf1\x93\x6e\xa4\x8e\x6d\x04\xc8\xe6\xa9\x73\x90\xfa\xab\x24\xb9\xde\x18\xfa\x5c\xfa\xe1\xa4\xb3\xa2\x38\xa6\xb3\x97\xff\xf9\xf4\x64\xf0\x1f\xef\xeb\x83\xd6\x74\xb3\xde\x3e\x8b\x3f\x22\xbd\xfa\x91\x11\x9a\x2a\x42\x7b\x29\x39\x56\xb2\x85\x12\x22\xa6\xb9\x17\xd4\x4d\xb7\xc4\x7c\xdc\xf1\x30\x47\x84\x97\xba\xd5\x4a\x5e\x0f\x58\x8d\x19\x1f\x14\x83\xa7\xf5\x00\x35\x5b\x2a\xac\x9c\xa2\x20\xf6\xe4\x2c\x6b\x87\xc6\x8c\x19\x23\x87\x01\x5a\x8b\xce\x6d\xab\xd6\xca\x30\x48\x2b\xa6\x08\xbd\xc2\xbf\x80\x6f\xfd\xca\xd3\x11\x82\x90\x16\xb9\x03\x65\xcc\xa6\x6b\x73\x78\xc5\xb4\x36\xd1\x12\x1f\x4d\x1b\xd6\xce\x61\x83\xdb\x19\x90\xd4\x1c\x41\xba\xb8\xd9\xf9\x0d\x80\x7c\x1b\xc3\x3b\x13\x1a\xd6\xd2\x04\x80\xb4\x6c\x5b\xbf\x69\x95\xa0\x0c\x67\x2a\xe7\x8a\x57\x0d\x6b\xcf\x9f\x9c\xa1\x8b\xfb\x9a\xf3\x73\x58\x32\x9e\xa9\x37\x71\x23\x79\x98\x63\xcf\xdc\x9a\xa2\xdb\x73\x34\x66\x3f\xe1\xbb\xeb\x4b\x3a\xe7\xbd\xb4\xe5\x6e\xec\xb3\xef\xfc\x7c\x4d\x89\x91\x4f\xe8\x09\xdc\x7d\x47\xa7\xf3\x1e\x94\x95\xbf\x1d\xf3\x7c\x31\x0a\x5d\xa5\xd8\x12\x15\xed\x45\x35\x68\xd7\x38\xbd\x81\x4c\x1b\x81\xf9\x66\x98\xd9\x5c\x9a\xc2\x3f\xca\xc2\x97\x0b\xec\xe2\xf2\x11\xc3\x93\x08\xfd\x53\xd8\xfc\xe0\xfc\x07\x26\x07\x7f\x0a\x43\xf3\x02\x7e\x7c\xf3\xfa\xcd\x19\x7c\x6f\xcd\x92\x2d\xd5\xd6\x1f\x2a\x09\x7c\x65\x1a\xd1\x7f\x6b\x31\xbd\x6d\x8c\x45\xb8\x92\xae\x06\x87\xd6\x32\x4f\x4b\x38\xc9\x4f\x5f\x86\xf8\x2f\x19\xdf\xf8\xdd\xc7\x1f\xc9\xac\xe9\xb4\x80\xfe\x3d\xb1\x96\xae\xee\x96\x39\x37\x4d\x51\x33\xaa\x25\x37\xb6\x2d\x86\x14\x85\x24\xea\x90\x8a\xd3\x4f\x5e\xfe\xef\x34\xa4\x7a\x8d\x2b\xd6\x29\xf7\xe0\x87\x64\x5a\x76\x87\x9b\x37\xac\x05\xbc\x44\xbb\x05\xdf\xd6\xa0\x1a\xe4\x4b\x09\x6f\xae\xec\x17\x9d\xcd\x80\x4c\xc8\xec\x97\xb2\x88\x32\x01\x75\x9c\x23\x8a\x09\x80\x33\x8e\xa9\x2a\x72\xf2\x77\x7d\xe5\x79\xe8\x45\x2c\xde\xf7\xe3\xad\x6c\x1b\xd6\x4e\xdf\xe3\x6b\x2d\x7d\xe1\xd5\x9d\xde\x84\x4b\x9c\xfb\xae\x4b\x90\x1a\x2c\xd3\x6b\x9c\xc6\x4e\xef\xd7\x3d\x83\x33\xf0\x57\xbd\x98\xc3\x69\x08\x9f\xc5\xb1\xfb\x49\x7b\x69\x33\x2b\x70\x35\x42\xaa\x0d\x98\x16\x7e\xe0\x2c\x50\x8b\x5c\xae\x24\x1f\xb0\x9c\x83\x57\x1c\x0b\xe6\x12\xad\x95\x02\x09\x5a\x2b\x8d\xcd\xd3\xe5\x3c\xd2\x3d\xb1\x6e\xa7\xad\xbf\xf2\x3c\xf1\x9b\x57\x7d\x3a\xbf\xa4\xfe\x16\x00\x00\xff\xff\x35\x21\xb7\x28\x6c\x15\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf": &vfsgen۰CompressedFileInfo{ name: "ssh.tf", @@ -5846,9 +5846,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5811, + uncompressedSize: 5761, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x59\x6f\x1b\x47\x12\x7e\xe7\xaf\x28\x48\x0f\x96\x00\x71\x44\xc9\xf1\x11\x22\x79\xf0\x52\x5a\xc4\x88\x25\x2b\x91\x9c\x2c\x10\x04\x83\x62\x77\x0d\xa7\xc1\x9e\xee\x49\x57\x0f\x0f\x04\xf9\xef\x8b\xee\x39\x78\x68\xa8\x95\x13\xad\x5f\x04\x92\x75\x7c\xf5\xd5\xd9\x5e\xa0\x53\x38\xd5\x04\x47\x42\x57\xec\xc9\xa5\x06\x0b\x3a\x82\x3f\x07\x00\x7e\x5d\x12\x34\xff\xbe\x07\xf6\x4e\x99\xd9\x00\x40\x12\x0b\xa7\x4a\xaf\xac\x81\xef\xe1\xe8\x8b\x51\x7f\x54\x04\x8d\x3a\x44\xf5\xc1\x5f\x83\xc1\x31\x4c\xd1\xd1\xb0\x20\x8f\x7a\x30\xd8\xf8\x29\xd0\x8b\x7c\x6a\x57\x69\xee\x7d\x99\x92\x91\xa5\x55\xc6\x7f\x8d\xc7\x9b\xc6\x02\xfc\xf0\xf0\x70\x07\x8e\x50\x0e\xad\xd1\x6b\x68\x6d\xc1\x09\x25\xb3\x04\x82\xfd\xf1\xf9\x79\xeb\x2f\xa1\x15\x16\xa5\xa6\x44\xd8\x62\xfc\x7e\xf4\x7e\x74\x1a\x61\x6e\x80\x59\x4e\x45\x8e\xc6\x90\xfe\x1a\x30\x93\x5a\x05\x32\xeb\x00\x61\x62\x1d\x7d\xbe\x87\x89\x35\x1e\x95\x21\x07\x9f\x94\xa9\x56\x20\xc9\xa9\x05\x7a\xb5\x20\x38\x11\xd6\x91\xe5\x21\xfb\xe0\xf5\x0c\x9a\x8f\x53\xf2\xd8\x7d\x40\x5d\xe6\x78\x06\x99\x46\x2f\xd0\x75\xa2\xed\xe7\x5a\xb6\xfd\x14\x85\x7b\x62\x59\x90\x63\x65\xcd\xd7\xc4\xf2\x4b\xad\xf2\xec\x58\xbc\x85\xbb\xff\x5c\x03\x1a\x09\xca\xb0\x47\xad\xff\xaf\xe1\x1d\x43\x81\x22\x57\x86\x78\x70\x0c\x0f\xe4\x1c\x66\xd6\x15\xaf\x18\x84\xab\x24\xc1\x51\x0c\x92\xd7\xec\xa9\x38\x02\x69\x89\xc1\x58\x0f\xa5\xb3\x25\x39\xbd\x06\xae\xca\xd2\x3a\x0f\x5a\xb1\x67\xb0\x19\x14\x58\x32\xb0\x85\x25\x81\xb4\xe0\x73\xc5\xc9\x36\x87\xc2\x1a\xef\xac\xd6\x4d\x4f\x70\x1f\x93\xc1\xd6\x49\x4d\xe7\xe9\x63\x3e\x3f\x3b\x49\x8e\x64\x94\x0a\x0e\x37\x16\x63\x9b\x70\x53\xa8\xbf\x19\x2b\xe9\xe2\xf7\xfd\x1c\x6e\xf9\x2f\x50\xbc\xac\x7b\x25\xc9\x78\x95\xad\x95\x99\xc1\xcd\x87\x09\xa0\x94\x8e\x98\x37\x90\xde\x5c\x8e\xdf\x7c\x33\x1e\x8d\xc6\x78\x31\xfe\x56\x8c\x91\x9e\x82\x27\x6d\x81\xca\xbc\x2c\xc2\x7f\xff\x74\x75\xbb\x4b\xd0\x76\x03\x3f\x42\xb3\xb4\x6e\xfe\x72\x89\xaa\xad\x3d\x4e\xd2\xe5\x19\x84\x3f\xaf\x0f\xb9\x7f\x99\x3c\x35\xde\x9f\x9f\xa3\xe9\xe5\xf8\x32\x1b\xbf\x7f\x7b\x06\xdd\x57\xe2\xf5\xf8\xed\xc5\xf8\xdd\xbb\x43\x48\x5f\x2c\x65\x0d\xd8\x47\xe9\xba\xdc\x4e\x57\x43\xdb\x93\x19\x14\x5a\xa4\x6c\x54\x59\x92\xef\x85\x55\x60\x79\x18\xd5\x0d\x96\x90\x39\x5b\xb4\x13\xa2\x49\x9d\xb7\x9b\x6e\xdf\x9f\x63\x13\x6b\x32\x35\x83\xce\x65\x34\x9a\x61\xa5\x7d\xe3\xf0\xcf\xbf\x76\x01\x6a\x9c\x92\xfe\x7b\xd0\x6c\x06\xb5\x76\x1c\xad\x6d\x75\x59\x49\x9c\x1c\xf2\x7b\x1c\x9a\x21\x53\xb3\xca\x61\xb0\xb4\x0d\x64\xfe\x9e\x9b\xfc\x6d\x2d\xeb\xfd\xb5\xb4\xe9\xa4\xab\xdb\xfb\x48\x07\x2c\x73\x25\x72\x70\xc4\x56\x2f\x6a\x72\x70\x67\x26\x84\x11\x6e\x04\x25\xf0\x6b\x04\xc8\x71\xb0\xcf\xab\x29\xd5\x48\x5e\x31\x2c\x95\xd6\x20\x6c\x51\x54\x46\x09\xf4\x04\x4b\xe5\xf3\x38\x39\xf7\x97\x6f\x73\x0e\x6c\x67\xfc\xf4\xe8\xd0\x22\xda\xa1\x99\x39\x4f\xe7\xb4\xfe\x1b\xa5\x79\x7f\xff\x03\x94\xd5\x54\x2b\x01\xc1\x40\xe4\xba\x62\x72\xf0\x2a\x2c\x9e\x57\x7b\xf5\x86\xcc\xe4\x53\xa9\x5c\x2f\x7f\x77\x18\x02\x0b\x0c\x49\xe5\x48\x78\xeb\xd6\xb0\xcc\xc9\x11\xcc\xc8\x90\x43\x4f\x12\xa2\x05\x06\xce\x6d\xa5\x25\x4c\x09\x4a\x8d\x82\x64\xd8\x81\xb1\xd4\x18\x98\x84\x23\xcf\xcf\x8c\xdc\x90\x0f\xa5\x91\x16\xbe\xea\xc7\x94\xaf\x59\x09\xd4\x70\x5b\x0b\xc2\xcd\xc3\x97\xe4\xb1\x69\x53\x15\x53\x72\xfd\xa6\x55\x99\x62\xe5\xad\x24\x4f\x22\x98\x4d\x0b\xf2\xb9\x95\xbd\xee\x6e\xe2\x4f\x91\x84\x4e\x05\x7c\x4e\x90\x5b\xf6\xf0\xf1\x6e\xf1\x4d\x3b\x92\x0e\x86\xb7\x5f\xda\x47\x99\x72\xec\x87\x99\xad\x8c\xdc\x4b\x47\x69\x65\x2a\x94\xec\xcf\xc6\xe4\xe3\xd5\xcf\xb5\x47\x87\x66\x16\x0f\x0f\x64\x56\x33\x03\x3f\x56\x53\x72\x86\x3c\x31\x94\x56\x7e\x05\x92\x8b\x51\x72\x99\x8c\x92\xd1\xf9\xc5\xdb\x3d\x24\x4c\x6e\xa1\x04\x1d\x44\xf3\xdd\x77\xd7\x9f\xaf\x06\xcf\x82\xd4\x98\xe2\x64\xf0\x90\x13\x5c\x44\xda\xea\x26\x9a\x52\x68\x44\x72\x0b\x92\xb1\x4e\x43\x9b\xa5\x58\xaa\xf8\x95\x3b\x8b\x3c\x5f\x8c\x7c\x7e\x50\x21\x94\xb4\x34\x9c\x0c\x02\x98\xc1\x56\xd8\x3d\x21\xd7\xe1\xbe\xde\x0e\xf7\x18\x6c\x8c\x67\xf7\x36\x6f\xdf\x00\xcd\x74\xe1\x2a\xcb\xd4\xaa\x37\x23\x3f\x55\xe4\x14\xd5\x3d\xd6\xec\x92\x76\x18\x10\xd4\x7a\x1d\x6e\x34\xbc\x8c\x3b\x63\xba\xee\x60\xc3\x55\x83\x4d\x71\x37\x2b\xb4\x0d\xc5\x5d\xcf\x8f\xcc\xda\xa4\x81\x9f\xf0\x42\x24\x3b\x32\xa7\xf0\xfc\x3c\xef\x28\xee\x65\x5a\xda\xa5\xd1\x16\x65\x5a\x3a\xeb\xad\xb0\xff\xeb\xf0\xdf\x31\x1c\x9e\x17\xcd\xd6\xd8\xed\xd2\xc6\x16\xa8\x70\x1b\x37\xc3\xa1\xe2\x58\x21\xad\xc3\xc8\xd2\x3c\x54\x89\x6e\xae\x67\xe5\x9d\xec\x48\x89\xb3\x39\xda\x3f\xeb\x86\xf6\x1f\x95\x72\xc4\xb5\x51\x61\x8b\x52\x69\x92\x35\xe3\xc2\xad\x4b\x6f\xdb\xf3\x36\x81\x2f\xa6\x62\x92\xa0\x32\x10\x28\x72\x92\x69\x7b\x9b\x2b\x06\xef\x2a\x4a\xf6\x17\xef\x8e\x54\x1f\x05\x53\x6b\xf5\x23\x02\x32\xd4\x4c\x8f\xc3\xff\x35\x27\x9f\x93\x8b\x11\x86\xc3\x1b\x7d\xb8\x5f\xea\xab\xbc\x65\x23\xc4\x30\xb5\xd6\xef\xbc\x1c\x9a\xf5\xdd\x3c\xed\xce\x9b\xe1\x1a\xc1\x25\x70\x6b\x3d\x81\xcf\xb1\x1e\x40\x28\x0b\x65\xa0\xa8\xd8\x43\x8e\x0b\xea\x68\xa5\x9a\xd8\xcd\xe3\x07\x94\xf1\x76\x63\xb4\xb6\xb9\x1f\x7f\x03\x20\x95\x8a\xe7\x5f\x53\x00\xe7\x92\x16\xe7\x2c\xb1\xa7\x06\xae\x14\xcf\x41\x52\xe8\xfd\x90\xca\x3a\x87\x01\x5a\x1b\x6c\xe9\x6c\xa6\x34\x75\xcb\xa3\xfd\xbe\x97\xb5\xba\x23\x5a\x77\x7d\x77\x78\xbc\x6b\x52\x1d\xee\x9a\xd4\x86\xd7\xcf\xf3\xa3\xe8\x43\x7f\x7d\xf7\xf3\xf5\xe4\xc3\xc3\xf5\xd5\x18\xee\x4b\x12\x2a\x5b\x03\x1a\xf8\x7c\x7d\x03\xaa\xc0\x19\x81\x8a\x5b\x21\xd4\x34\x32\x4c\x91\x29\x8e\x81\xad\xf8\xe2\xc9\xd2\xe0\xc6\x42\x9d\xc1\xa2\x58\xa2\xa3\xd4\xe1\xf2\x0c\x56\x64\x4e\xc1\x3a\xd0\x14\x72\x37\xd5\x68\xe6\x9d\x7e\x0b\x2e\xfa\xd9\x0b\xb4\xee\x97\x14\xdd\x8c\x7b\x47\xd2\x07\x29\x55\x3d\xd2\xba\xd6\x72\xb3\xaa\x20\x53\xf7\x53\xe9\xec\x42\x49\x02\xf4\x5d\xfd\xf5\x2c\xcf\x47\x17\xc6\x36\x59\xbf\xfd\xbe\x8b\x88\x4c\xf8\x9b\x3a\x0a\x8d\xa7\xcc\xec\xc9\xde\xd9\xc1\x7a\x1d\x35\xa1\xe2\x40\x67\x78\x6d\x1b\xd4\x6b\xaf\x04\x43\x67\x2c\x52\x5c\xb2\x77\x84\x05\xc3\xc9\x04\xb5\x12\xf6\xf4\xf1\xb9\x58\xf7\x61\x1f\x2e\x9c\xcd\x1c\xcd\x62\x2e\x7a\x09\x6b\x40\x04\xde\xb7\x76\xd6\x87\x8d\x16\x7c\xc2\x35\x39\x38\x91\x5b\x63\x29\x4c\x90\x9e\x7b\xa6\x77\x44\x04\xd9\xbd\x89\xab\x38\x42\x63\xd2\x59\x1a\xee\x08\x92\x69\x58\x7d\x9a\x7c\x2f\xc4\xab\x5a\xbe\xde\x2a\xa4\x33\xa8\x75\xa0\xd1\x69\xeb\xad\xde\x2d\x8d\xf3\x03\xe0\xfa\x18\xf2\x9a\xd3\x50\x08\xec\x1d\x96\x4f\x71\xf4\xf0\xe9\x1e\xfe\xd5\x0a\xc6\x6a\xfd\xb1\x46\xd0\x53\x42\xad\xb7\x63\x98\x90\xf3\x2a\x8b\x97\x32\xef\xb4\x2c\x39\xcf\xe9\x02\xb5\x92\xca\xaf\xd3\x92\x9c\xb2\x32\xcd\x6d\xe5\xfa\x2b\xfb\x97\x46\x32\xbc\x23\xda\x29\x21\xb6\x6c\x83\x32\x50\x6b\x1f\x3a\x06\xf7\x33\xf3\xfe\xdd\xdb\xd1\x5e\x77\xed\x1c\x20\x29\xad\xbc\xc3\x34\xd3\x78\xa0\xd9\xae\xc3\xef\x10\x7f\x87\x32\xcc\xd5\x38\x12\x42\x8a\x86\x5b\x29\x1a\x76\x06\xff\x79\xab\xc5\x35\x97\x86\x33\xd1\x3b\xcc\x32\x25\x9e\xca\x97\x32\xc3\xf6\x3f\x24\xcb\x70\xc3\xd6\x1a\xd0\x58\x51\xd6\x1c\xca\xdb\x33\xba\x4b\xcd\x8c\x75\x94\xae\xde\x8c\xbe\x4d\x85\x49\x45\x4e\x62\xde\x8b\xe5\x63\x14\x84\xc9\x2d\x44\x99\x98\xa6\xa0\xb5\x93\xbb\x7f\x00\x44\x58\x63\xbc\x43\x31\x4f\x0b\x5c\x85\x2a\x4a\xc3\x75\xd5\x0b\x65\x38\xec\x84\x87\x05\xae\x86\x25\xb9\x61\x10\x86\x05\xea\x8a\xba\x0b\x74\x58\x3a\xbb\x5a\x27\x70\x83\x2b\x55\x54\x45\x53\x3d\xa1\xec\x6e\x3f\x3c\x84\xb7\xa2\xa9\x9f\x0d\xcd\x24\x40\x31\x87\x92\x1c\x4c\xee\xbe\xc4\xc3\x0e\x4e\x46\xf1\xc9\x1d\x07\x7b\x28\x52\xad\x0a\xe5\x01\x79\xa8\xea\xc7\x64\x4d\x5d\x5d\xbf\x1b\x3c\xca\x6c\x39\x8f\x35\x75\xfa\xd4\xb3\xe6\xbf\x01\x00\x00\xff\xff\x97\xca\x31\x53\xb3\x16\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x6f\xe3\x36\xd3\xbe\xf7\xaf\x18\x64\x2f\x92\x00\xb1\xec\x64\xbb\x27\xa3\xbd\xd8\xcf\x49\xd1\x45\x37\xd9\xb4\x9b\xfd\xfa\x02\x45\x21\x8c\xc9\x91\x45\x98\x22\x55\x0e\xe5\x03\x8a\xfe\xf7\x17\xa4\x24\x1f\xe5\xbc\x49\x9b\xbd\x09\x20\x73\x66\x9e\x79\x66\xe6\xe1\x70\xe7\xe8\x14\x4e\x34\xc1\x89\xd0\x15\x7b\x72\xa9\xc1\x82\x4e\xe0\xaf\x1e\x80\x5f\x95\x04\xcd\xbf\x1f\x80\xbd\x53\x66\xda\x03\x90\xc4\xc2\xa9\xd2\x2b\x6b\xe0\x07\x38\xf9\x66\xd4\x9f\x15\x41\x63\x0e\xd1\xbc\xf7\x77\xaf\xf7\x0a\x26\xe8\xa8\x5f\x90\x47\xdd\xeb\x6d\xe2\x14\xe8\x45\x3e\xb1\xcb\x34\xf7\xbe\x4c\xc9\xc8\xd2\x2a\xe3\x9f\x13\xf1\xb6\xf1\x00\x3f\x3d\x3c\xdc\x83\x23\x94\x7d\x6b\xf4\x0a\x5a\x5f\x70\x46\xc9\x34\x81\xe0\x7f\x34\x18\xb4\xf1\x12\x5a\x62\x51\x6a\x4a\x84\x2d\x46\xef\x87\xef\x87\xe7\x11\xe6\x06\x98\xe5\x54\xe4\x68\x0c\xe9\xff\x01\x26\xc3\x4a\xfb\xe6\xf3\x09\xfb\x60\x7d\x72\x88\xf2\x47\x8d\x5e\xa0\x83\xb1\x35\x1e\x95\x21\x07\x9f\x95\xa9\x96\xd0\xc4\x00\x6f\x41\x19\xf6\xa8\x35\x64\xce\x16\x70\x56\x7b\xba\x80\x09\x79\xbc\x00\xd4\x65\x8e\x17\x40\x72\x4a\x1d\x40\xe7\xe4\x58\x59\xf3\x1c\xa0\xa2\x72\x8e\x8c\x7f\x06\xd2\x26\xc8\x36\xd2\xb3\xcc\x3a\x68\x88\x84\xd3\xab\xcb\x0f\x97\xc9\x9b\x64\x78\x0a\x7d\x60\xa2\xc8\x38\x8f\x06\x83\xc5\x62\x91\x64\xb5\xd3\xbe\x0e\xae\x12\xeb\xa6\x03\x47\x9a\x90\x89\x07\xe7\x4d\x7f\x14\x28\x72\x65\x88\x7b\xaf\xe0\x81\x9c\xc3\xcc\xba\xe2\x94\x41\xb8\x4a\x12\x9c\xc4\xac\x78\xc5\x9e\x8a\x13\x90\x96\x18\x8c\xf5\x50\x3a\x5b\x92\xd3\x2b\xe0\xaa\x2c\xad\xf3\xa0\x15\x7b\x06\x9b\x41\x81\x25\x03\x5b\x58\x10\x48\x0b\x3e\x57\x9c\x6c\x93\x26\xac\xf1\xce\x6a\xdd\x74\x38\x77\x51\x17\x7c\x9d\xd5\xfc\x9d\x1f\xd2\xf4\xc5\x49\x72\x24\xe3\xa9\x10\x70\xe3\x31\x36\x3d\x37\x6d\xf7\xbb\xb1\x92\x2e\xff\xd8\x2f\xda\x56\xfc\x02\xc5\xcb\x86\x57\x92\x8c\x57\xd9\x4a\x99\x29\xdc\x7e\x1c\x03\x4a\xe9\x88\x79\x03\xe9\xcd\xd5\xe8\xcd\x77\xa3\xe1\x70\x84\x97\xa3\x0f\x62\x84\xf4\x18\x3c\x69\x0b\x54\xe6\x65\x11\xfe\xf8\xcb\xf5\xdd\x2e\x41\xdb\xe3\x78\x80\x66\x61\xdd\xec\xe5\x0a\x55\x7b\x3b\x2c\xd2\xd5\x05\x84\x3f\xaf\x8f\x85\x7f\x99\x3a\x35\xd1\x9f\x5e\xa3\xc9\xd5\xe8\x2a\x1b\xbd\x7f\x7b\x01\xeb\x4f\xe2\xf5\xe8\xed\xe5\xe8\xdd\xbb\x63\x48\x5f\xac\x64\x0d\xd8\x83\x72\x5d\x6d\x97\xab\xa1\xed\xd1\x0a\x0a\x2d\x52\x36\xaa\x2c\xc9\x77\xc2\x2a\xb0\x3c\x8e\xea\x16\xcb\x5a\x13\x1b\x85\x68\x4a\xe7\xed\x66\xda\xf7\xb5\x6a\x6c\x4d\xa6\xa6\xb0\x0e\x79\xa0\x7f\x7f\xfd\xbd\x0b\x50\xe3\x84\xf4\x3f\x83\x66\x33\xa8\xad\x21\xa8\x61\xdb\x5d\x56\x12\x27\xc7\xe2\xbe\x0a\xc3\x90\xa9\x69\xe5\x30\x78\xda\x06\x32\x7b\xcf\x4d\xfd\xb6\xae\xde\xbd\xa8\xe3\xcd\x24\x5d\xdf\x7d\x8d\x74\xc0\x22\x57\x22\x07\x47\x6c\xf5\xbc\x26\x07\x77\x34\x21\x28\xb6\x11\x94\xc0\x6f\x11\x20\x03\x1a\x09\xb3\x6a\x42\x35\x92\x53\x86\x85\xd2\x1a\x84\x2d\x8a\xca\x28\x81\x9e\x60\xa1\x7c\x1e\x95\x73\xff\x2a\x6d\x2e\xf7\xed\x8a\x9f\x9f\x1c\xbb\x79\x76\x68\x66\xce\xd3\x19\xad\xfe\x41\x6b\x7e\xfd\xfa\x13\x94\xd5\x44\x2b\x01\xc1\x41\xe4\xba\x62\x72\x70\x2a\xac\xa3\xd3\xbd\x7e\x43\x66\xf2\xa9\x54\xae\x93\xbf\x7b\x0c\x89\x05\x86\xa4\x72\x24\xbc\x75\x2b\x58\xe4\xe4\x08\xa6\x64\xc8\xa1\x27\x09\xd1\x03\x03\xe7\xb6\xd2\x12\x26\x04\xa5\x46\x41\x12\xce\x44\xdd\x6a\x0c\x4c\xc2\x91\xe7\x27\x66\x6e\xc8\x87\xd6\x48\x0b\x5f\x75\x63\xca\x57\xac\x04\x6a\xb8\xab\x0f\xc2\xed\xc3\xb7\xe4\xd0\xb5\xa9\x8a\x09\xb9\x6e\xd7\xaa\x4c\xb1\xf2\x56\x92\x27\x11\xdc\xa6\x05\xf9\xdc\xca\xce\x70\xb7\xf1\xa7\x48\xc2\xda\x04\x7c\x4e\x90\x5b\xf6\xf0\xe9\x7e\xfe\x5d\x2b\x49\x47\xd3\x3b\x58\x29\x32\xe5\xd8\xf7\x33\x5b\x19\xb9\x57\x8e\xd2\xca\x54\x28\xd9\x5d\x8d\xf1\xa7\xeb\x5f\xeb\x88\x0e\xcd\x94\x22\x26\x66\x35\x35\xf0\x73\x35\x21\x67\xc8\x13\x43\x69\xe5\x33\x90\x5c\x0e\x93\xab\x64\x98\x0c\x07\x97\x6f\xf7\x90\x30\xb9\xb9\x12\x74\x14\xcd\xf7\xdf\xdf\x7c\xb9\xee\x3d\x09\x52\xe3\x8a\x93\xde\x43\x4e\x70\x19\x69\xab\x87\x68\x42\x61\x10\xc9\xcd\x49\xc6\x3e\x0d\x63\x96\x62\xa9\xe2\x27\x77\x11\x79\xbe\x1c\xfa\xfc\xa8\x41\x68\x69\x69\x38\xe9\x05\x30\xbd\xad\xb4\x3b\x52\xae\xd3\x7d\xbd\x9d\xee\x2b\xb0\x31\x9f\xdd\x4d\xbb\xdd\xe8\x1b\x75\xe1\x2a\xcb\xd4\xb2\xb3\x22\xbf\x54\xe4\x14\xd5\x33\xd6\xdc\x25\xad\x18\x10\xd4\x76\x6b\xdc\x68\x78\x11\xef\x8c\xc9\x6a\x0d\x1b\xae\x1b\x6c\x8a\xd7\x5a\xa1\x6d\x68\xee\x5a\x3f\x32\x6b\x93\x06\x7e\xc2\x73\x91\xec\x9c\x39\x87\xa7\xd7\x79\xc7\x70\xaf\xd2\xd2\x2e\x8c\xb6\x28\xd3\xd2\x59\x6f\x85\x7d\xd6\x1a\x1f\x57\xd7\x8e\xdd\xf8\xbe\xf1\x05\xea\xfe\x3f\x37\xad\x38\x54\x1c\x3b\xa4\x0d\x18\x59\x9a\x85\x2e\xd1\x51\x64\x95\x51\xde\xc9\x35\x29\x51\x9b\xa3\xff\x8b\xb5\x68\xff\x59\x29\x47\x5c\x3b\x15\xb6\x28\x95\x26\x59\x33\x2e\xdc\xaa\xf4\xb6\x5d\x6f\x13\xf8\x66\x2a\x26\x09\x2a\x03\x81\x22\x27\x99\xb6\xab\xb8\x62\xf0\xae\xa2\x64\xff\xe2\xdd\x39\xd5\x45\xc1\xc4\x5a\x7d\x40\x40\x86\x9a\xe9\x30\xfd\xdf\x72\xf2\x39\xb9\x98\x61\x58\xbc\xd1\x87\xfd\xa5\xde\xca\x5b\x36\x42\x0e\x13\x6b\x7d\x93\xfb\xd6\x93\xa6\x7d\x7a\xc1\xa0\x11\xd7\x08\x2e\x81\x3b\xeb\x09\x7c\x8e\xb5\x00\xa1\x2c\x94\x81\xa2\x62\x0f\x39\xce\x69\x4d\x2b\xd5\xc4\x6e\x5e\x3b\xa0\x8c\xb7\x1b\xa7\xb5\xcf\xfd\xfc\x1b\x00\xa9\x54\x3c\x7b\x4e\x03\x0c\x24\xcd\x07\x2c\xb1\xa3\x07\xae\x15\xcf\x40\x52\x98\xfd\x50\xca\xba\x86\x01\x5a\x9b\x6c\xe9\x6c\xa6\x34\xad\x2f\x8f\xf6\x7b\x27\x6b\xf5\x44\xb4\xe1\xba\xf6\xf0\xb8\xd7\xa4\xf1\xe1\x94\xda\xf0\xfa\x79\x7a\x16\x5d\xe8\x6f\xee\x7f\xbd\x19\x7f\x7c\xb8\xb9\x1e\xc1\xd7\x92\x84\xca\x56\x80\x06\xbe\xdc\xdc\x82\x2a\x70\x4a\xa0\xe2\xad\x10\x7a\x1a\x19\x26\xc8\x14\x65\x60\x2b\xbf\xb8\xb2\x34\xb8\xb1\x50\x17\x30\x2f\x16\xe8\x28\x75\xb8\xb8\x80\x25\x99\x73\xb0\x0e\x34\x85\xda\x4d\x34\x9a\xd9\xda\xbe\x05\x17\xe3\xec\x25\x5a\xcf\x4b\x8a\x6e\xca\x9d\x92\xf4\x51\x4a\x55\x4b\xda\x7a\xb4\xdc\xb4\x2a\xc8\xd4\xf3\x54\x3a\x3b\x57\x92\x00\xfd\xba\xff\x3a\x2e\xcf\x83\x0d\x63\x9b\xac\xdf\xff\xd8\x45\x44\x26\xfc\x4d\x1d\x85\xc1\x53\x66\xfa\xe8\xec\xec\x60\xbd\x89\x96\x50\x71\xa0\xd3\x3a\x40\x83\x7a\xe5\x95\x60\x58\x3b\x8b\x14\x97\xec\x1d\x61\xc1\x70\x36\x46\xad\x84\x3d\x3f\x5c\x17\xeb\x39\xec\xc2\x85\xd3\xa9\xa3\x69\xac\x45\x27\x61\x0d\x88\xc0\xfb\xd6\x9d\xf5\x71\x63\x05\x9f\x71\x45\x0e\xce\xe4\x96\x2c\x05\x05\xe9\xd8\x67\x3a\x25\x22\x9c\xdd\x53\x5c\xc5\x11\x1a\x93\xce\xd2\xb0\x47\x90\x4c\xc3\xd5\xa7\xc9\x77\x42\xbc\xae\xcf\xd7\xb7\x0a\xe9\x0c\x6a\x1b\x68\x6c\xda\x7e\xab\xef\x96\x26\xf8\x11\x70\x5d\x0c\x79\xcd\x69\x68\x04\xf6\x0e\xcb\xc7\x38\x7a\xf8\xfc\x15\xfe\xaf\x3d\x18\xbb\xf5\xe7\x1a\x41\x47\x0b\xb5\xd1\x5e\xc1\x98\x9c\x57\x59\xdc\x94\x79\x67\x64\xc9\x79\x4e\xe7\xa8\x95\x54\x7e\x95\x96\xe4\x94\x95\x69\x6e\x2b\xd7\xdd\xd9\xff\xdf\x9c\x0c\xef\x88\x56\x25\xc4\x96\x6f\x50\x06\x6a\xeb\x63\xcb\xe0\x7e\x65\xde\xbf\x7b\x3b\xdc\x9b\xae\x9d\x05\x24\xa5\xa5\x77\x98\x66\x1a\x8f\x0c\xdb\x4d\xf8\x1d\xe2\xef\x50\x06\x5d\x8d\x92\x10\x4a\xd4\xdf\x2a\x51\x7f\xed\xf0\xdf\x8f\x5a\xbc\xe6\xd2\xb0\x26\x7a\x87\x59\xa6\xc4\x63\xf5\x52\xa6\xdf\xfe\xf7\x62\x19\x76\xd8\xda\x02\x1a\x2f\xca\x9a\x63\x75\x7b\xc2\x74\xa9\xa9\xb1\x8e\xd2\xe5\x9b\xe1\x87\x54\x98\x54\xe4\x24\x66\x9d\x58\x3e\xc5\x83\x30\xbe\x83\x78\x26\x96\x29\x58\xed\xd4\xee\x5f\x00\x11\xd6\x18\xef\x50\xcc\xd2\x02\x97\xa1\x8b\xd2\xb0\x5d\x75\x42\xe9\xf7\xd7\x87\xfb\x05\x2e\xfb\x25\xb9\x7e\x38\x0c\x73\xd4\x15\xad\x37\xd0\x7e\xe9\xec\x72\x95\xc0\x2d\x2e\x55\x51\x15\x4d\xf7\x84\xb6\xbb\xfb\xf8\x10\xde\x8a\xa6\x7e\x36\x34\x4a\x80\x62\x06\x25\x39\x18\xdf\x7f\x8b\x8b\x1d\x9c\x0d\xe3\x93\x3b\x0a\x7b\x68\x52\xad\x0a\xe5\x01\xb9\xaf\xea\xc7\x64\x4d\x5d\xdd\xbf\x1b\x3c\xca\x6c\x05\x8f\x3d\x75\xfe\xd8\xb3\xe6\xbf\x01\x00\x00\xff\xff\x48\xb3\x1b\x5d\x81\x16\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", diff --git a/pkg/platform/baremetal/baremetal.go b/pkg/platform/baremetal/baremetal.go index d066f45f6..f0c33f01c 100644 --- a/pkg/platform/baremetal/baremetal.go +++ b/pkg/platform/baremetal/baremetal.go @@ -89,7 +89,7 @@ func (c *config) Meta() platform.Meta { func NewConfig() *config { return &config{ CachedInstall: "false", - OSChannel: "flatcar-stable", + OSChannel: "stable", OSVersion: "current", EnableTLSBootstrap: true, NetworkMTU: platform.NetworkMTU,