diff --git a/README.md b/README.md index 0e111e4e8..9534f8f97 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Follow one of the quickstart guides for the supported platforms: * [Packet quickstart](docs/quickstarts/packet.md) * [AWS quickstart](docs/quickstarts/aws.md) * [Bare metal quickstart](docs/quickstarts/baremetal.md) +* [KVM libvirt quickstart](docs/quickstarts/kvm-libvirt.md) ## Documentation diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootkube.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootkube.tf index 8c5622780..89dd14708 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootkube.tf @@ -1,3 +1,8 @@ +locals { + # api_server = module.bootkube.api_servers + api_server = data.template_file.controllernames[0].rendered +} + module "bootkube" { source = "../../../bootkube" cluster_name = var.cluster_name @@ -19,6 +24,14 @@ module "bootkube" { enable_aggregation = var.enable_aggregation encrypt_pod_traffic = var.encrypt_pod_traffic + # Disable the self hosted kubelet. + disable_self_hosted_kubelet = var.disable_self_hosted_kubelet + # Extra flags to API server. + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags + + bootstrap_tokens = var.enable_tls_bootstrap ? concat([local.controller_bootstrap_token], var.worker_bootstrap_tokens) : [] + enable_tls_bootstrap = var.enable_tls_bootstrap + certs_validity_period_hours = var.certs_validity_period_hours } diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootstrap-configs.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootstrap-configs.tf new file mode 100644 index 000000000..d4bf523e3 --- /dev/null +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootstrap-configs.tf @@ -0,0 +1,24 @@ +locals { + controller_bootstrap_token = var.enable_tls_bootstrap ? { + token_id = random_string.bootstrap_token_id[0].result + token_secret = random_string.bootstrap_token_secret[0].result + } : {} +} + +# Generate a cryptographically random token id (public). +resource random_string "bootstrap_token_id" { + count = var.enable_tls_bootstrap == true ? 1 : 0 + + length = 6 + upper = false + special = false +} + +# Generate a cryptographically random token secret. +resource random_string "bootstrap_token_secret" { + count = var.enable_tls_bootstrap == true ? 1 : 0 + + length = 16 + upper = false + special = false +} diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl/controller.yaml.tmpl b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl/controller.yaml.tmpl index 722b69c68..3730e3dea 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl/controller.yaml.tmpl +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl/controller.yaml.tmpl @@ -88,7 +88,13 @@ systemd: --cni-conf-dir=/etc/cni/net.d \ --config=/etc/kubernetes/kubelet.config \ --exit-on-lock-contention \ + %{~ if enable_tls_bootstrap ~} + --kubeconfig=/var/lib/kubelet/kubeconfig \ + --bootstrap-kubeconfig=/etc/kubernetes/kubeconfig \ + --rotate-certificates \ + %{~ else ~} --kubeconfig=/etc/kubernetes/kubeconfig \ + %{~ endif ~} --lock-file=/var/run/lock/kubelet.lock \ --hostname-override=${etcd_domain} \ --network-plugin=cni \ diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/controllers.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/controllers.tf index 01c4daf7f..f1564c1e2 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/controllers.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/controllers.tf @@ -11,7 +11,7 @@ resource "libvirt_pool" "volumetmp" { resource "libvirt_volume" "base" { name = "${var.cluster_name}-base" - source = var.os_image_unpacked + source = var.os_image pool = libvirt_pool.volumetmp.name format = "qcow2" } @@ -83,10 +83,16 @@ data "template_file" "controller-configs" { etcd_name = "${var.cluster_name}-controller-${count.index}" etcd_domain = "${var.cluster_name}-controller-${count.index}.${var.machine_domain}" etcd_initial_cluster = join(",", data.template_file.etcds.*.rendered) - kubeconfig = indent(10, module.bootkube.kubeconfig-kubelet) + kubeconfig = var.enable_tls_bootstrap ? indent(10, templatefile("${path.module}/workers/cl/bootstrap-kubeconfig.yaml.tmpl", { + token_id = random_string.bootstrap_token_id[0].result + token_secret = random_string.bootstrap_token_secret[0].result + ca_cert = module.bootkube.ca_cert + server = "https://${local.api_server}:6443" + })) : indent(10, module.bootkube.kubeconfig-kubelet) ssh_keys = jsonencode(var.ssh_keys) cluster_dns_service_ip = cidrhost(var.service_cidr, 10) cluster_domain_suffix = var.cluster_domain_suffix + enable_tls_bootstrap = var.enable_tls_bootstrap } } diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/outputs.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/outputs.tf index 90950d075..302aa7aa6 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/outputs.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/outputs.tf @@ -6,18 +6,6 @@ output "kubeconfig" { value = module.bootkube.kubeconfig-kubelet } -output "machine_domain" { - value = var.machine_domain -} - -output "cluster_name" { - value = var.cluster_name -} - -output "ssh_keys" { - value = var.ssh_keys -} - output "libvirtpool" { value = libvirt_pool.volumetmp.name } @@ -50,3 +38,15 @@ output "calico_values" { output "lokomotive_values" { value = module.bootkube.lokomotive_values } + +output "ca_cert" { + value = module.bootkube.ca_cert +} + +output "bootstrap-secrets_values" { + value = module.bootkube.bootstrap-secrets_values +} + +output "apiserver" { + value = local.api_server +} diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/variables.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/variables.tf index 1d5b05d42..873e05a24 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/variables.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/variables.tf @@ -6,7 +6,7 @@ variable "cluster_name" { } # Nodes -variable "os_image_unpacked" { +variable "os_image" { type = string description = "Path to unpacked Flatcar Container Linux image flatcar_production_qemu_image.img (probably after a qemu-img resize IMG +5G)" } @@ -105,6 +105,17 @@ variable "enable_aggregation" { default = true } +variable "kube_apiserver_extra_flags" { + description = "Extra flags passed to self-hosted kube-apiserver." + type = list(string) + default = [] +} + +variable "disable_self_hosted_kubelet" { + description = "Disable the self hosted kubelet installed by default" + type = bool +} + # Certificates variable "certs_validity_period_hours" { @@ -118,3 +129,13 @@ variable "encrypt_pod_traffic" { type = bool default = false } + +variable "worker_bootstrap_tokens" { + description = "List of token-id and token-secret of each node." + type = list(any) +} + +variable "enable_tls_bootstrap" { + description = "Enable TLS Bootstrap for Kubelet." + type = bool +} diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/versions.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/versions.tf index cd5664492..f30213b51 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/versions.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/versions.tf @@ -1,13 +1,23 @@ # Terraform version and plugin versions terraform { - required_version = ">= 0.12.0" + required_version = ">= 0.13" required_providers { - ct = "0.6.0" + + ct = { + source = "poseidon/ct" + version = "0.6.1" + } + + libvirt = { + source = "dmacvicar/libvirt" + uri = "qemu:///system" + version = "0.6.2" + } + null = "2.1.2" template = "2.1.2" - libvirt = "0.6.0" random = "2.3.0" } } diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/bootstrap-configs.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/bootstrap-configs.tf new file mode 100644 index 000000000..37f3f9331 --- /dev/null +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/bootstrap-configs.tf @@ -0,0 +1,24 @@ +locals { + worker_bootstrap_token = var.enable_tls_bootstrap ? { + token_id = random_string.bootstrap_token_id[0].result + token_secret = random_string.bootstrap_token_secret[0].result + } : {} +} + +# Generate a cryptographically random token id (public). +resource random_string "bootstrap_token_id" { + count = var.enable_tls_bootstrap == true ? 1 : 0 + + length = 6 + upper = false + special = false +} + +# Generate a cryptographically random token secret. +resource random_string "bootstrap_token_secret" { + count = var.enable_tls_bootstrap == true ? 1 : 0 + + length = 16 + upper = false + special = false +} diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/bootstrap-kubeconfig.yaml.tmpl b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/bootstrap-kubeconfig.yaml.tmpl new file mode 100644 index 000000000..f0660cd23 --- /dev/null +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/bootstrap-kubeconfig.yaml.tmpl @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Config +clusters: +- name: local + cluster: + server: ${server} + certificate-authority-data: ${ca_cert} +users: +- name: kubelet + user: + token: ${token_id}.${token_secret} +contexts: +- context: + cluster: local + user: kubelet diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl index cf56a9f36..bb8dbfe4c 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl @@ -65,7 +65,13 @@ systemd: --cni-conf-dir=/etc/cni/net.d \ --config=/etc/kubernetes/kubelet.config \ --exit-on-lock-contention \ + %{~ if enable_tls_bootstrap ~} + --kubeconfig=/var/lib/kubelet/kubeconfig \ + --bootstrap-kubeconfig=/etc/kubernetes/kubeconfig \ + --rotate-certificates \ + %{~ else ~} --kubeconfig=/etc/kubernetes/kubeconfig \ + %{~ endif ~} --lock-file=/var/run/lock/kubelet.lock \ --network-plugin=cni \ --node-labels=$${NODE_LABELS} \ @@ -146,7 +152,11 @@ storage: --net=host \ --dns=host \ -- \ + %{~ if enable_tls_bootstrap ~} + kubectl --kubeconfig=/var/lib/kubelet/kubeconfig delete node $(hostname) + %{~ else ~} kubectl --kubeconfig=/etc/kubernetes/kubeconfig delete node $(hostname) + %{~ endif ~} passwd: users: - name: core diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/outputs.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/outputs.tf new file mode 100644 index 000000000..57238a9b3 --- /dev/null +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/outputs.tf @@ -0,0 +1,3 @@ +output "worker_bootstrap_token" { + value = local.worker_bootstrap_token +} diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/variables.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/variables.tf index 59169961f..e22f7c075 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/variables.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/variables.tf @@ -83,3 +83,18 @@ EOD type = string default = "10.2.0.0/16" } + +variable "ca_cert" { + description = "Kubernetes CA certificate needed in the kubeconfig file." + type = string +} + +variable "apiserver" { + description = "Apiserver private endpoint needed in the kubeconfig file." + type = string +} + +variable "enable_tls_bootstrap" { + description = "Enable TLS Bootstrap for Kubelet." + type = bool +} diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/versions.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/versions.tf index e0b954bf8..0764516e0 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/versions.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/versions.tf @@ -1,11 +1,19 @@ # Terraform version and plugin versions terraform { - required_version = ">= 0.12.0" + required_version = ">= 0.13" required_providers { - ct = "0.6.0" + ct = { + source = "poseidon/ct" + version = "0.6.1" + } + + libvirt = { + source = "dmacvicar/libvirt" + uri = "qemu:///system" + version = "0.6.2" + } template = "2.1.2" - libvirt = "0.6.0" } } diff --git a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/workers.tf b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/workers.tf index 5c8eb9f37..2af820cf6 100644 --- a/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/workers.tf +++ b/assets/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/workers.tf @@ -48,8 +48,14 @@ data "template_file" "worker-config" { template = file("${path.module}/cl/worker.yaml.tmpl") vars = { + enable_tls_bootstrap = var.enable_tls_bootstrap domain_name = "${var.cluster_name}-${var.pool_name}-worker-${count.index}.${var.machine_domain}" - kubeconfig = indent(10, var.kubeconfig) + kubeconfig = var.enable_tls_bootstrap ? indent(10, templatefile("${path.module}/cl/bootstrap-kubeconfig.yaml.tmpl", { + token_id = random_string.bootstrap_token_id[0].result + token_secret = random_string.bootstrap_token_secret[0].result + ca_cert = var.ca_cert + server = "https://${var.apiserver}:6443" + })) : indent(10, var.kubeconfig) ssh_keys = jsonencode(var.ssh_keys) cluster_dns_service_ip = cidrhost(var.service_cidr, 10) cluster_domain_suffix = var.cluster_domain_suffix diff --git a/ci/kvm-libvirt/kvm-libvirt-cluster.lokocfg.envsubst b/ci/kvm-libvirt/kvm-libvirt-cluster.lokocfg.envsubst new file mode 100644 index 000000000..42554f517 --- /dev/null +++ b/ci/kvm-libvirt/kvm-libvirt-cluster.lokocfg.envsubst @@ -0,0 +1,11 @@ +cluster "kvm-libvirt" { + asset_dir = pathexpand("~/lokoctl-assets") + ssh_pubkeys = [file(pathexpand("~/.ssh/id_rsa.pub"))] + cluster_name = "vmcluster" + machine_domain = "vmcluster.k8s" + os_image = "file:///var/tmp/flatcar_production_qemu_image.img" + + worker_pool "one" { + count = 2 + } +} diff --git a/cli/cmd/root.go b/cli/cmd/root.go index fde09d925..baaf83103 100644 --- a/cli/cmd/root.go +++ b/cli/cmd/root.go @@ -26,6 +26,7 @@ import ( _ "github.com/kinvolk/lokomotive/pkg/platform/aks" _ "github.com/kinvolk/lokomotive/pkg/platform/aws" _ "github.com/kinvolk/lokomotive/pkg/platform/baremetal" + _ "github.com/kinvolk/lokomotive/pkg/platform/kvmlibvirt" _ "github.com/kinvolk/lokomotive/pkg/platform/packet" // Register backends by adding an anonymous import. diff --git a/docs/configuration-reference/platforms/kvm-libvirt.md b/docs/configuration-reference/platforms/kvm-libvirt.md new file mode 100644 index 000000000..bc03c78bb --- /dev/null +++ b/docs/configuration-reference/platforms/kvm-libvirt.md @@ -0,0 +1,145 @@ +# Lokomotive KVM libvirt configuration reference + +## Contents + +* [Introduction](#introduction) +* [Prerequisites](#prerequisites) +* [Configuration](#configuration) +* [Attribute reference](#attribute-reference) +* [Applying](#applying) +* [Destroying](#destroying) + +## Introduction + +This configuration reference provides information on configuring a Lokomotive cluster on KVM libvirt VMs +with all the configuration options available to the user. + +## Prerequisites + +* Terraform providers and libvirt setup from the [quickstart guide](../../quickstarts/kvm-libvirt.md) +* `lokoctl` [installed locally.](../../installer/lokoctl.md) +* `kubectl` installed locally to access the Kubernetes cluster. + +### Configuration + +To create a Lokomotive cluster, we need to define a configuration. + +Example configuration file: + +```tf + +cluster "kvm-libvirt" { + + asset_dir = pathexpand("./assets") + + cluster_name = "vmcluster" + + machine_domain = "vmcluster.k8s" + + os_image = "file:///home/myuser/Downloads/flatcar_production_qemu_image.img" + + ssh_pubkeys = [file(pathexpand("~/.ssh/id_rsa.pub"))] + + controller_count = 1 + + node_ip_pool = "192.168.192.0/24" + + disable_self_hosted_kubelet = false + + kube_apiserver_extra_flags = [] + + controller_virtual_cpus = 1 + controller_virtual_memory = 2048 + + controller_clc_snippets = [] + + network_mtu = 1480 + network_ip_autodetection_method = "first-found" + + pod_cidr = "10.1.0.0/16" + service_cidr = "10.2.0.0/16" + + cluster_domain_suffix = "cluster.local" + + enable_reporting = false + enable_aggregation = true + + certs_validity_period_hours = 8760 + + enable_tls_bootstrap = true + + worker_pool "worker-pool-1" { + count = 2 + + virtual_cpus = 1 + virtual_memory = 2048 + + labels = "foo=oof,bar=,baz=zab" + + clc_snippets = [ + <NOTE: Lokomotive uses a relatively restrictive Pod Security Policy by default. This policy +>disallows running containers as root. Refer to the +>[Pod Security Policy documentation](../concepts/securing-lokomotive-cluster.md#cluster-wide-pod-security-policy) +>for more details. + +## Cleanup + +To destroy the cluster, execute the following command: + +```console +lokoctl cluster destroy +``` + +Confirm you want to destroy the cluster by typing `yes` and hitting **Enter**. + +You can now safely delete the directory created for this guide if you no longer need it. + +## Troubleshooting + +If you want to log in using SSH for debugging purposes, use the Flatcar Container Linux default user `core`. + +You can look up the node IP address in `virt-manager` or resolve them from the hostnames, +using the libvirt DNS server: + +```console +host vmcluster-controller-0.vmcluster.k8s 192.168.192.1 +Using domain server: +Name: 192.168.192.1 +Address: 192.168.192.1#53 +Aliases: + +vmcluster-controller-0.vmcluster.k8s has address 192.168.192.10 +``` + +On each node list the containers with `docker ps` and follow the system logs with `journalctl -f`. + diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 44e9ab5f0..afc6755e4 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -6033,9 +6033,16 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootkube.tf": &vfsgen۰CompressedFileInfo{ name: "bootkube.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1272, + uncompressedSize: 1766, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x94\xbd\x8e\xdb\x3a\x10\x85\x7b\x3e\xc5\x40\x57\xd5\x02\xcb\xbb\x2f\xe0\x2a\xa9\xd3\xa4\x5c\x2c\x08\x9a\x1c\xd9\x83\x95\x48\x61\x38\x52\x6c\x18\x7a\xf7\x80\xb2\x65\x53\x72\x16\x69\x22\xa8\xe2\xf9\x38\x7f\x3c\x64\x17\xfd\xd0\x22\x54\xfb\x18\xe5\x73\xd8\x63\x05\x17\x05\x90\xe2\xc0\x0e\xe1\xfa\xed\xa0\xd2\xfa\xff\xeb\x7f\xc7\x14\x80\x6b\x87\x24\xc8\x26\xd8\x0e\x61\x07\xa3\x65\x5d\x2e\x29\x05\xf0\x1f\x7c\xb3\x21\x44\x81\x21\x21\xb8\xb3\x6b\xc9\x81\xc7\x1e\x83\xc7\xe0\x08\x13\xc4\x00\x2e\x06\xe1\xd8\xb6\xc8\x09\x22\x83\x1c\x91\x18\xbe\xff\xf8\x09\x8c\x2e\xb2\x4f\x0a\xc0\xf6\x64\x12\xf2\x98\x91\xfb\xb7\x83\x77\x6f\xc5\x6a\xc1\xae\x6f\xad\xa0\x69\xa8\x45\xfd\x88\x96\x6b\x48\xef\x6f\x1f\x9a\x73\x3a\x46\xff\xb1\x8e\x64\xf0\x24\x99\x6a\x61\x07\x2d\xed\x47\x62\x31\x3e\x76\x96\x42\x11\xe4\xb5\xb3\xee\x48\x01\xf5\x8b\x0e\x28\xbf\x22\x7f\x1a\x0a\x82\xdc\x58\x87\xfa\x4d\x5b\xef\x19\x53\xc2\xa4\xdf\x36\xc1\xa9\x4f\x4b\x99\xff\x26\x38\x8a\xf3\x4f\x43\xd8\xc1\xdf\x47\xa0\x5f\xee\x13\xc8\x35\xa6\x84\x62\x3c\x31\x40\x39\xca\x7c\x78\x77\x49\x01\x2c\xf5\x74\x32\x6c\xb1\x42\x52\x05\x49\xbd\xb1\x83\x44\x8f\x82\x4e\x28\x06\xd3\xa1\x1c\xa3\xdf\x6c\xfa\x82\xca\x81\xfa\xe8\x8d\x23\xbf\x2a\x6c\xc9\xb9\x68\xd9\x9a\xc8\x23\x39\xdc\xa0\x57\xac\xd4\x0a\x83\x5e\x07\x6f\xd2\xd0\x34\x74\xda\x38\x75\xa5\xe5\x31\x07\xbb\x6f\xd1\x30\xf6\x91\x85\xc2\xa1\x0c\xbf\xd5\x1e\xb8\x3d\x1c\x18\x0f\x36\x77\xf4\x84\x17\xda\xbc\xc1\xf1\xb9\x17\x93\x3b\x12\xb6\x4d\x43\xae\xd8\xf0\xa4\xe5\xc1\x38\x64\x49\x66\xb4\x2d\x79\x92\xb3\xe9\x91\x29\x7a\x73\x8c\x03\xa7\xa5\x99\xaf\x09\x35\x29\x95\x3d\x02\xd5\xca\x24\x15\x54\x1b\x9b\x5c\x2f\xbe\x8b\x43\x90\x47\x0b\x0f\xc6\xcc\x8a\x02\x58\xc2\xe4\x67\xa1\xae\x2f\xe5\x8d\x9f\x5e\x0b\x6f\xd7\xf5\x85\x82\xc7\xd3\xa4\xeb\xfa\x72\x33\xfa\x6d\xda\x53\x95\xdb\x1a\xed\x5c\x7f\xce\x0a\x30\xa3\xe5\x71\xce\xe9\xf4\xbc\x3c\x03\xab\xc7\x06\xfe\xf4\xdc\x64\x6a\x9d\xe7\x46\xad\x17\x15\xc0\xa4\x26\xf5\x3b\x00\x00\xff\xff\x9b\x36\x98\xfc\xf8\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x8b\xdb\x30\x10\xbd\xeb\x57\x0c\x6e\x0e\xed\xd2\x55\xf7\x5c\x08\xa5\x74\x7b\xe8\xa5\x14\x7a\x0c\x41\x28\xd2\x38\x11\x2b\x4b\x66\x34\x4e\xb3\x84\xfc\xf7\x22\x3b\x4e\x64\xa7\xbb\xb4\x50\xe3\x93\xde\xd3\x9b\x0f\xcd\x3c\x1f\x8d\xf6\x09\x8e\x02\xe0\x0d\xe8\xd6\xa9\x84\xb4\x47\x82\x25\x34\xd1\x76\x1e\xe5\x26\x46\x7e\xea\x36\x28\xaf\x60\x12\x30\xa5\x5a\xcd\x5a\x32\x36\xad\xd7\x8c\xaa\x76\x1e\xa5\x89\x81\x29\x7a\x8f\x14\x74\x83\x69\xf5\xb0\x96\x84\xc1\x22\xa1\x15\x27\x21\x06\x71\xa8\x46\xf5\xaa\xcf\x20\xc5\x8e\x0c\xc2\xf0\x2d\xa1\x92\xf2\xc3\xf0\x5f\x68\x02\xc0\xf8\x2e\x31\x92\xca\xba\xb0\x84\xbd\x26\x59\x1e\x89\xbe\x92\x2f\x3a\x84\xc8\xd0\x25\x04\xf3\x6c\xbc\x33\x60\xb1\xcd\xf1\x83\x71\x98\x20\x06\xb8\x26\x98\x20\x12\xf0\x0e\x1d\xc1\xe3\xf7\x9f\x40\x68\x22\xd9\x69\x8d\x09\x2e\xdf\x12\x56\xff\x56\xee\x7a\xaa\xa4\xf0\xc0\x99\xe5\x61\x09\xde\x6d\xf6\x8e\x58\xd9\xd8\x68\x17\x0a\x91\xfb\x46\x9b\x9d\x0b\x28\xef\x64\x40\xfe\x15\xe9\x49\xb9\xc0\x48\xb5\x36\x28\x1f\xa4\xb6\x96\x30\x25\x4c\xf2\x61\x26\xee\xda\x34\xa6\xf9\x7f\xc4\x91\x8d\xbd\x69\xc2\xdf\xbc\xb8\xbc\xbb\x3e\x38\x80\x4e\x09\x59\x59\x47\x00\x65\x2b\xf3\xe3\x5d\x20\x01\x30\xe6\xd3\x70\x37\xa7\x15\x90\x28\x98\xae\x55\xba\xe3\x68\x91\xd1\xb0\x8b\x41\x35\xc8\xbb\x68\x67\x97\x5e\x60\x65\xa1\x36\x5a\x65\x9c\x9d\x24\x36\xc6\x1c\xb1\x3c\x9a\x48\x7b\x67\x70\x46\x1d\x68\x25\x56\x0c\xe8\xd0\x78\x95\xba\xba\x76\x87\xd9\xa4\x4e\xb0\xdc\xe6\xa0\x37\x1e\x15\x61\x1b\x89\x5d\xd8\x96\xf2\x73\xec\x4a\xd7\xdb\x2d\xe1\x56\xe7\x8a\x6e\xe8\x05\xd6\x5f\x30\xf4\xdc\xb2\xca\x15\x31\xe9\xba\x76\xa6\xb8\x70\x83\x0d\x4b\xf4\xe8\x52\x96\xca\xbb\x01\x09\x7d\x0d\xbb\x98\x18\x2d\xe4\x4d\xf4\xc8\x52\x00\xd8\x81\xa2\x32\xac\x06\x58\x9d\xe1\xb3\xfa\x2b\x8c\x3e\xc8\xd7\x03\x93\x86\xda\xeb\x6d\x02\x8e\xf0\xf9\xc7\x37\x18\xc6\x2d\xcb\x67\xa2\xd2\xad\x1b\x4e\xf2\xea\x90\x56\x03\x77\x50\x7f\x99\x90\x4b\xc8\xb6\x91\x98\x74\xab\x38\x3e\x61\x48\xb7\x4d\x65\x9f\xd4\x85\x05\x9f\xb2\x2b\x18\xcd\x6f\x57\xbd\x2d\x16\x23\xad\x66\x52\xeb\xf7\xbd\x4a\x1e\xae\x5b\x30\xbd\x83\x8f\xb0\x5a\x5f\xdf\x69\x1a\xe5\xe5\x04\x72\xce\x06\x89\x93\xda\x6b\xef\xac\xe3\x67\xd5\x22\xb9\x68\xd5\x2e\x76\x34\xd6\xfc\x0a\x23\x5b\x6b\x5e\x4d\xa8\x26\xbb\x59\x41\x35\xdb\xce\xc1\x6f\x4d\xec\x02\x5f\x7b\x52\x94\xdb\x23\x02\x60\x94\xc9\x6e\xbc\x58\x1c\x4b\xa3\x3d\xdd\x17\x96\xb2\x58\x1c\x5d\xb0\x78\x38\xc9\xc5\xe2\x78\xf6\x97\xf3\x90\x9f\xaa\x5c\xd6\x5e\xf7\xf9\xe7\xa8\x00\x3d\xb5\xdc\xa2\x3e\x9c\xec\x8f\x7b\xc2\xc4\xe3\xe1\x4f\x2e\x9f\x59\xd3\x38\x67\xd6\xf4\x50\x00\x9c\xc4\x49\xfc\x0e\x00\x00\xff\xff\x04\xf3\x0f\x04\xe6\x06\x00\x00"), + }, + "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootstrap-configs.tf": &vfsgen۰CompressedFileInfo{ + name: "bootstrap-configs.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 624, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\x4f\x4b\x33\x31\x10\xc6\xef\xf9\x14\x0f\x7d\x2f\xaf\x97\xa5\xbd\x78\x28\x2c\x3d\xfa\x21\x44\xc2\x34\x3b\xb6\xc1\x31\x09\x93\x89\x50\xca\x7e\x77\xe9\x6e\x51\xab\xa0\x15\xbc\x85\xf0\xfc\x99\xe7\x27\x39\x90\x54\x1c\x1d\x10\x72\x32\xcd\x22\xac\x7e\x9b\xb3\x55\x53\x2a\xde\xf2\x13\x27\xf4\x78\x21\xed\x38\xd1\x56\xd8\x9b\xd4\x77\x01\x36\x93\x17\x98\x84\x3e\x0e\xa7\x37\x7a\x28\xa5\x21\x3f\xfb\x6a\x1a\xd3\xae\xfb\x94\xe7\xe3\x70\xbf\x7c\xe8\x94\x6b\x13\xfb\xe0\xae\x1c\x94\xed\x47\xf7\x2c\xbb\x48\x18\xb1\xc6\x71\x74\xa3\x73\xff\x70\xc7\x89\x95\x8c\x41\x08\x7a\x28\x96\x77\x4a\x65\x1f\x03\x89\x1c\xce\xc9\x73\x1f\xe2\x80\xff\xa5\x6d\x25\x86\x9b\xce\x29\xd7\xdc\x34\xf0\x65\x39\x16\x5f\x6f\x5f\x9c\x71\xb5\x64\xdf\x91\xe9\x7b\x98\x36\xc6\x06\x2b\xac\xb1\x74\x0e\x10\x4e\x3b\xdb\x9f\xf8\xdc\x3a\xa0\x95\xc2\x3a\xd1\x7a\x24\xa9\xec\x80\x5a\x38\x44\x92\xb7\x9f\x5f\xee\x99\xc1\x5c\x3f\x65\xd6\xff\xc5\x9c\xd5\xb5\x7b\x5e\x03\x00\x00\xff\xff\x48\xc7\x38\x43\x70\x02\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl": &vfsgen۰DirInfo{ name: "cl", @@ -6044,23 +6051,23 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl/controller.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "controller.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 8054, + uncompressedSize: 8289, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x7b\x73\xdb\x36\x12\xff\x3f\x9f\x62\xeb\x68\xea\xb6\x13\x88\x76\xe2\xa4\xa9\xae\xcc\x9c\x22\x33\xa9\xc6\x8e\x93\x91\xe4\x66\x6e\x72\x29\x07\x22\x57\x12\x46\x24\xc0\x02\xa0\x64\x9d\xe3\xef\x7e\x03\xbe\xc4\x97\x1e\xbe\xcb\xf8\x1f\x9a\xdc\xfd\xed\x0f\x58\xec\x0b\x22\x84\x3c\x51\x1b\xa5\x31\xf4\x7b\x4f\x00\x62\xce\xb4\x32\x0f\x00\x04\x38\x0d\xb1\x07\xa8\x3d\x9f\x84\x18\x4e\x51\x76\x15\xca\x15\xf3\x30\xf9\x0e\x80\x9c\x4e\x03\xec\x81\x96\x71\xfe\xca\x97\x22\x62\x3c\x43\x28\xa3\x5c\x9c\x91\x04\xc8\x0b\x62\xa5\x51\x76\x3d\xc1\x67\x85\x10\x80\x27\xb8\x46\xae\x55\x0f\xbe\x95\xde\x02\x7c\x19\xa7\x16\xbf\x56\xde\x3a\x7c\xc5\xa4\xe0\x21\x72\x6d\x9f\x38\x93\xc1\xa5\x3b\xfc\xd0\x7f\xef\xb8\x93\xfe\x7b\x7b\xf5\xa2\x7b\xd1\x3d\x7f\x71\x72\x94\xc2\xed\xe8\xda\xf6\x85\xb7\x44\xd9\xb3\xac\xbf\x63\xba\xe9\x32\x61\x79\x42\xa2\x50\x96\xa1\xbb\x07\x65\x74\x35\x71\x47\xb7\x37\x6e\x7f\xf4\x7e\x6c\x13\xc2\xb8\x42\x2f\x96\x48\x44\xa4\x99\xe0\xca\x66\x21\x9d\xe3\x21\x16\x37\xfd\x0f\x8e\xdd\xb9\x37\xa6\x5c\xb3\x4f\x0f\x87\x14\xfa\x97\x7f\x3a\xa3\xc9\x70\xec\xb8\x83\xeb\xa1\x73\x33\x31\x2b\x18\xdb\x0b\xad\x23\xd5\xb3\xac\x0c\xc9\x17\x21\x65\xfc\xa1\xf7\xfc\xc5\xaf\xbf\x1d\xdc\x87\x9b\xe1\x64\xd8\xbf\x2e\x01\x7f\x72\x9c\xd1\x01\xd8\xd7\x67\x87\x60\xaf\x87\xe3\x89\x73\xd3\x4a\xf2\xac\x9b\xfc\x1d\xc5\x2e\x83\x69\x52\xda\x82\x1c\xcd\xe5\x83\x33\x19\x0d\x07\xe3\x2d\x4e\x15\xe6\xfc\xd8\x9d\x1a\x5c\xdf\x8e\x27\xce\x28\x77\x1b\xe3\x4c\x33\x1a\xb8\xd9\xc1\x3e\xe8\xc1\xb1\x61\x31\x71\x47\xce\xe0\xe3\xcd\xbb\xe1\x7b\x77\xf0\x87\x33\xb8\xb2\x4d\x08\x1d\xd4\x1c\x5f\xbb\x97\xc3\x91\x6d\x4e\xa6\xa5\x54\x70\xe8\x84\x26\x4a\x93\x91\x61\x7b\xe9\x0e\xfa\xee\xbb\xe1\xb5\xb3\x55\xf6\x50\xea\xf4\x90\x5b\x26\xaa\x51\x12\x8f\x76\x3d\xa9\x0f\x01\x0e\x9c\xd1\xe4\x10\xd4\x31\x38\x57\xce\xbf\x0e\xc2\x2c\x71\x73\x90\x4e\x7a\xc2\x12\x56\xfd\xdb\xc9\x1f\x47\xed\x64\x72\x9e\x8e\xd9\x99\x08\x8f\xde\x97\x04\x73\xff\xe6\x18\xb4\xa3\xa1\xf6\xee\x4f\x82\x74\xc4\xee\xa4\xa4\x76\x6f\x51\x9e\x9d\xd3\x1c\x78\x28\xbd\xe7\xd2\x81\xf0\x96\x2a\x64\x7a\xe1\xd7\x34\x42\xaa\x96\x2d\xf2\x6b\xca\x34\x99\x09\x49\x7c\xae\x0e\x97\x90\xb6\x52\xf0\xe5\x96\x33\xbd\xad\x01\x97\xa8\x3c\xc9\x92\x44\x6b\x7f\xa6\x4c\xc3\x4c\x48\xb8\xbc\x19\x03\x72\x2d\x19\xaa\x42\xf0\x33\xe5\x5a\xd9\x59\x7d\x23\x12\x95\x08\x56\x58\x67\x0d\xf0\x16\x67\x42\xa2\xbd\x8c\xa7\x18\xa0\x6e\x7c\x6e\x16\xa1\xc9\x26\x42\x5b\x70\x54\x0b\xa1\x8b\x97\x23\x34\xf9\xb1\x3f\xd3\x28\x9d\x3b\xa6\xed\xd2\x9a\x00\x9c\x3b\xf4\xc6\x9a\x4a\x6d\x5b\x53\xc6\x2d\xb5\x00\xe2\xc1\xe9\x7a\xc1\x02\x84\x1f\xc0\x8a\x95\x4c\xde\xcf\x25\x46\x70\xfa\xd7\x97\xbf\x9e\x7e\xe9\xa9\x88\x7a\xd8\xfb\xfa\xf5\x14\x92\x23\x90\xb2\x4f\x0a\x27\xbc\x01\xcb\xc7\x95\xc5\xe3\x20\xf8\x07\xf8\x02\x54\x80\x18\xc1\xb9\x79\xe6\x78\xba\x25\x3e\xe4\x4a\xd3\x20\xf8\x5a\xe2\xf8\x77\xcc\x24\xfa\x6f\x37\x3b\x57\x5b\x12\xd9\x55\xfa\x73\xc7\xb6\x43\xfc\xff\x3e\xbd\x4a\x71\x6b\x6e\x94\x91\x47\x94\xa6\xba\xe9\xbf\xa6\x83\x4a\xa1\xf0\x8e\x05\x98\x06\x91\xa1\x2b\x39\x6a\x54\x56\xce\x1c\xf9\xaa\x4d\xa7\x51\xde\xe3\x98\xf9\x64\xc6\x02\x24\x8a\xae\xd0\xb6\x56\x54\x5a\x1e\xf5\x16\x98\x23\x91\x48\xf8\x5d\x23\x05\xff\x2e\xc5\x24\x21\x2b\x11\xc4\x21\xda\xa9\xf3\x9e\x2d\x19\xf7\xed\x85\x50\xfa\x99\x12\xb1\xf4\x32\x5e\x65\xcf\x56\xb5\x43\x11\x73\x0d\x55\x0c\x4d\xe5\x1c\xf5\x21\xcd\x54\x07\x56\x54\x92\x80\x4d\x89\xc7\x59\x8b\x71\xb3\x8a\x80\x4d\x2d\x8f\xb3\x7d\x86\xcb\x20\xb9\xf5\xdd\xaa\x75\xcb\x34\x60\x9e\xd8\x67\x3c\x11\x38\xca\x7e\x0a\xd5\xa0\xd0\x06\x90\xb1\x10\x91\x36\xb4\xc9\x94\xf1\x16\x0a\x22\xd2\x66\x01\x26\xf2\xf6\xd9\x2f\x83\xe4\xc6\x77\xab\x96\xd7\x2f\xe6\xbb\x16\x2e\xe6\x07\x57\x2c\xe6\xd5\xa5\x36\x54\x32\x4b\xa8\xbd\x84\x1e\x47\xed\xef\x38\x61\x86\x29\x47\xdd\xad\x9f\xce\x8a\xd1\x0a\x4e\xf9\x94\xed\xd2\x3e\xd4\xf3\x16\x39\xef\x93\xc4\x34\xed\x85\x4b\x9f\x49\x20\x11\x94\xf7\xef\x28\xf9\x5a\xfc\x86\x94\xb3\x19\x2a\xad\x8e\x56\x2e\x16\xf1\xbf\x98\xf3\x16\xe8\x2d\x23\xc1\xb8\x26\x0a\x3d\x89\x8f\xb0\x5b\x42\x61\x9c\x7a\x9a\xad\x90\x3c\x8e\x7d\x29\xd4\x1e\x27\x9f\xc4\xc5\xa3\x54\xb2\x64\x66\xa5\x27\x22\x0a\xe2\x39\xe3\xbb\x48\xe6\x25\x6b\x4a\xd3\x62\x76\x92\xd6\x2e\xd3\xa5\xb0\x19\xf3\xa8\x46\x42\x63\xbd\x10\x92\xe9\x0d\xf1\xa9\xa6\xa7\x8d\x0d\x31\x8f\x26\x77\xb1\x39\x7c\x03\xba\x5e\xc2\xe9\x7d\x24\x19\xd7\xd0\x79\xfe\x70\x0a\xdf\x60\x4a\x15\xbe\xba\x00\xe2\x9b\x82\x57\x77\x49\xad\x2b\xab\x92\xab\x0b\x27\x46\xcc\x51\xcd\xd3\xb5\x37\x97\x22\x8e\x88\x2f\xd9\x0a\x65\x3b\x08\x29\x96\x28\x97\x1a\x64\x08\xa5\x32\xb0\xaf\x02\xb4\xd5\x7c\x83\x94\xf8\x24\x9d\x2d\x73\x95\xb5\xa4\x51\x84\xb2\x16\x57\x94\x0b\xbe\x09\x45\xac\x92\x0d\xb4\x67\x34\x50\x58\x17\x89\xf5\x02\xb9\x36\xdb\xcc\x04\x27\x5a\x2c\x91\x93\x35\x4e\x17\x42\x2c\x5b\x44\x85\x64\xff\x49\x25\x43\xe1\xa3\xfd\xb9\x55\xd0\x0b\x18\x72\x4d\x3c\x9a\xad\xb0\x75\xc3\x1b\x3a\xc9\xd4\xe3\xfa\x5c\xd9\x9d\xfb\xd2\x7f\x6e\x56\xa3\x5d\x16\x3d\xec\xd2\x49\xe6\xc9\xb2\x5a\xf2\xc2\x55\xf1\x6c\xc6\xee\x1a\x5a\x9c\x11\xe3\x46\xe2\x33\xb9\x3f\x2d\xa5\xce\xde\x59\xf2\xb3\x03\x57\xd5\xc1\x3b\xa6\x89\xe0\xc4\xb4\xb6\x24\xeb\x56\x98\xa8\xa7\xf6\xed\x79\x6d\x45\x6f\x45\x4e\x10\xb7\x47\x46\xc6\xdc\x32\xaf\x0a\x3a\xe6\x9f\x9a\x8a\x49\xdf\xa6\xc1\x22\x62\x85\x52\x32\x1f\xed\xea\x04\x5e\x13\xe7\xa8\xd7\x42\x2e\x49\x1a\xae\x76\xb3\x22\x73\xe1\x23\x09\xe8\x14\x03\x65\x77\x3a\xf7\x37\x1f\x2f\x1d\xf7\xba\xff\xd6\xb9\x1e\xd7\xa1\x22\xe1\x17\xc9\x89\x44\x54\x2f\x1a\xeb\x2c\x52\x57\x4d\x53\x22\xf5\x89\xe0\xc1\x86\x44\x42\x6a\xfb\xac\xf1\x79\xce\x8c\x8f\xc9\x9a\xe9\x05\xd1\x94\x99\x86\x2e\xe7\x32\xe9\x0f\x6f\x26\x0d\x2e\x69\x0e\xca\x56\x95\x7a\xfd\x31\x69\x4a\x44\xb5\x00\x56\x5a\x44\x8f\x0e\xe1\x11\xaa\x24\x80\x69\xb0\xa6\x1b\x55\x7f\x3d\x46\xcf\x3e\x3f\xdb\xd3\x6e\x9b\xc6\x35\xe9\xa4\xc3\x38\xd0\x8c\xc4\x0a\x65\x37\xad\xac\x95\x3e\x7a\x2a\x84\x36\x14\x6a\x8d\xed\x23\xbb\xe6\xb7\x42\x68\xa5\x25\x8d\x80\xc2\x55\xe1\x31\xc8\xa2\xab\x50\x19\x08\xee\x33\xa3\xf0\x89\xea\x85\x73\xc7\x94\x56\xf6\x0f\x49\x3d\xce\x69\x58\x8c\x33\xed\x16\xa4\xcc\x4c\xf1\x5d\x67\xa1\xcf\x42\x2e\x19\x9f\x5f\x32\x89\x9e\x16\x72\x63\x57\xac\xb7\xa5\xcf\x0a\xbb\xfc\x81\x24\x3e\x68\xc9\xdd\x42\x65\x53\x96\x16\xb1\xb7\x80\xe3\xd7\xf6\x18\xff\x29\x2d\x24\x9d\x63\xef\x09\x80\x39\x4d\xc5\xa5\xa9\x89\x9a\xde\x9e\x4a\x97\x61\x27\x3a\xc9\x5c\xda\x03\x29\x8a\x9d\x33\xe9\xb9\x07\x67\xaf\x2e\x2e\xea\x67\xa0\xe0\xc4\x78\xc0\x38\x56\x2f\x4a\x3b\xf7\x5b\x03\x0f\x07\x89\x54\x07\x9f\xef\xcb\xe4\xea\xf6\xad\x73\xed\x4c\xf6\xdd\xaf\x46\x42\x21\xf3\x05\xcf\xb9\xec\xd4\x4e\xae\x73\xcf\xbb\xe7\xbf\x75\x5f\xec\x94\x49\xe6\xb3\x13\x93\xc0\xd1\xcb\xca\xac\xf0\x68\x90\xb8\x3f\xc3\x2f\x5f\x92\x94\x72\x9f\x7d\x62\xf2\x62\x77\xbb\x37\x86\x5b\x48\x4d\xac\x3c\x6b\xf9\x62\x96\x2f\x45\x10\xa0\x6c\x5c\x31\x95\x92\x58\x0a\x4a\xa4\x08\xda\x91\xed\xde\x8d\x18\x7b\x0b\xf4\xe3\xa0\xb8\x82\x29\x39\x4a\x6d\x94\xa7\x83\xae\x6f\x85\xf4\x2e\x39\x6d\x64\x4d\xb5\xb7\x40\x55\xbe\x2f\xdf\xe1\xb0\xe3\xfc\x33\x53\x5d\xc6\x85\x66\xb3\x4d\x37\xa4\x77\xae\xb1\xe1\x66\x36\xec\xf3\x57\xe7\xaf\x2f\x9a\xa4\xf2\x72\xf4\xbd\xce\x4b\xe5\xdc\x96\xeb\x5a\xd5\xf4\xe1\x98\xdf\xcf\xe4\x65\xc1\xc4\x2c\xb2\xc4\xc2\xef\xc1\xcb\xb3\x3c\x6b\x27\x6d\xe0\xae\x8f\xc7\x6d\xe9\xd3\x1f\x8a\x3e\xb8\xfc\x16\x3e\x67\xcd\xdd\x4c\xc8\x22\xc3\x43\x35\x67\x01\x28\xd4\x40\xb0\xa2\xf7\x49\x22\x89\xe2\x20\xc8\xaf\x57\x20\x19\xab\x60\x8a\x1e\x8d\x15\xc2\x7a\x81\x1c\x98\x06\xa6\x20\xa0\x1a\x25\x18\x59\xf4\x61\x1a\x6b\xd0\x74\x89\x0a\xb4\x10\x10\x08\x3e\x37\x52\x9a\x85\xa8\x40\xc4\x65\x9b\x69\x44\x26\x7a\xb0\x2b\x28\x7b\xcd\xc0\x7b\x0a\x1f\xc4\x0a\x01\xef\x22\x94\x2c\x44\xae\x69\x00\xcd\x49\x06\xe0\x0b\x10\x0e\x27\x9d\x9f\x02\x55\x73\x22\x55\x0a\x75\xa9\x85\x20\xbf\x58\xbf\xc0\xf3\x37\xc5\x55\xd6\xcf\x27\xf0\x15\x7e\xfc\x11\xc2\xd5\x31\x8a\xfb\x45\x0c\x8e\x69\xd9\xe5\xec\x20\x56\x89\xba\xc9\x22\x50\x6d\xfb\xe3\x6a\x13\x68\x3a\x13\x2d\x63\xa5\xc9\x12\x37\x8a\xcc\xa4\x08\x49\xf2\xa3\x44\x43\x2a\x9b\xce\x53\x7b\x3b\x2e\x1f\x6a\xac\x1a\x18\x95\xf9\x3c\x43\xca\x27\xf3\x1d\x2a\x99\xd9\x69\xde\x0c\xec\xb8\x11\xd8\x26\xa7\xfd\x46\xb7\x38\xe5\x1b\x81\x9d\xda\x9d\xce\xfd\xe8\x6a\xe2\x7e\xfc\x54\xef\xe7\xf2\x53\x57\xaa\x03\x4b\xc6\x57\x22\x58\x16\x9b\xd0\x5b\x9d\x75\xcf\x2f\xba\x67\x64\x81\x41\x48\xd0\x7b\x75\xf1\xf2\xc5\x4b\x42\x43\xff\xd5\x45\x83\x63\xfb\xd5\x43\x43\x8c\xa3\x4e\x96\xde\xf8\x60\xe6\x95\xd6\x0f\xe6\xa5\x22\xc8\xb5\xdc\xb4\x0b\xa4\x85\xa6\x88\x67\x42\xd2\x90\x36\x83\x96\x71\x48\xda\xa8\x66\xbe\x39\xe9\xfc\xb3\x25\xc9\x3f\x7a\x2e\xdd\x9f\xe7\x7e\x7d\x64\x85\x6e\x4f\x57\x8d\x3c\x64\x1a\x7a\xd3\xcf\x67\x7e\x73\x53\x62\x6e\x4a\xcc\x3e\xe9\xfc\x94\x65\x11\xc6\x67\x02\xc8\x0c\x4e\xef\xef\xbb\x83\x44\xe6\x32\x11\x79\x78\x38\xfd\xb9\x5c\x24\x3d\xaa\xe1\xf7\xdf\x9d\x8f\xef\xe0\xcd\xfe\xc9\xac\xa4\x43\x23\xf6\x27\x4a\xc5\x04\xdf\xde\x35\xa7\x42\xdd\xe5\xeb\xa4\xaa\xae\xce\xa7\xa8\xe9\x79\x49\xc7\x1c\xf7\x1e\x64\x37\xc8\x83\x6c\x7f\x93\xd9\xb7\x4c\xa6\x44\xb4\x07\x27\x9d\xce\x7d\xdb\x2a\x2b\xbf\xe5\x39\x1f\xdf\x3d\x89\xa8\x52\xeb\xf4\x77\x72\x85\xb2\xf6\x3b\xb9\x19\xed\x33\x79\xa5\x16\x6e\x3e\x76\xa3\xef\x9a\x4c\xd1\x83\xce\xbd\x79\x6d\x9e\x1f\x9e\xfc\x37\x00\x00\xff\xff\xa3\xe0\x2e\x82\x76\x1f\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\x6b\x73\xdb\x36\xd6\xfe\x9e\x5f\x71\xea\xea\xad\xdb\x4e\x20\xd9\x89\x93\xa6\x7a\xcb\xcc\x3a\x32\x93\x6a\xec\x38\x19\x49\x6e\x66\x27\x9b\x72\x20\xf0\x48\xc2\x88\x04\x58\x00\x94\xad\x75\xdc\xdf\xbe\x03\xde\xc4\x9b\x2e\xde\xcd\xe4\x0b\x43\x9e\xf3\x9c\x07\x38\x57\x40\x26\x84\x3c\xd1\x6b\x6d\x30\xf4\xfb\x4f\x00\x62\xc1\x8d\xb6\x0f\x00\x04\x04\x0d\xb1\x0f\x68\x98\x4f\x42\x0c\xa7\xa8\xba\x1a\xd5\x8a\x33\x4c\xbe\x03\xa0\xa0\xd3\x00\xfb\x60\x54\x9c\xbf\xf2\x95\x8c\xb8\xc8\x10\xca\x28\x67\x27\x24\x01\x62\x41\xac\x0d\xaa\x2e\x93\x62\x56\x08\x01\x30\x29\x0c\x0a\xa3\xfb\xf0\xb5\xf4\x16\xe0\xf3\x38\xb5\xf8\xa5\xf2\xd6\x15\x2b\xae\xa4\x08\x51\x18\xe7\xc8\x9d\x0c\x2e\xbc\xe1\xfb\xf3\x77\xae\x37\x39\x7f\xe7\xac\x9e\x77\xcf\xba\xa7\xcf\x8f\x0e\x52\xb8\x19\x5d\x39\xbe\x64\x4b\x54\xfd\x5e\xef\xaf\x98\xae\xbb\x5c\xf6\x98\x54\x28\x75\xcf\xd2\xdd\x81\x32\xba\x9c\x78\xa3\x9b\x6b\xef\x7c\xf4\x6e\xec\x10\xc2\x85\x46\x16\x2b\x24\x32\x32\x5c\x0a\xed\xf0\x90\xce\x71\x1f\x8b\xeb\xf3\xf7\xae\xd3\xb9\xb7\xa6\x3c\xbb\x4f\x0f\xfb\x14\xce\x2f\xfe\x70\x47\x93\xe1\xd8\xf5\x06\x57\x43\xf7\x7a\x62\x57\x30\x76\x16\xc6\x44\xba\xdf\xeb\x65\x48\xbe\x0c\x29\x17\x0f\xfd\x67\xcf\x7f\xf9\x75\xef\x3e\x5c\x0f\x27\xc3\xf3\xab\x12\xf0\x47\xd7\x1d\xed\x81\x7d\x75\xb2\x0f\xf6\x6a\x38\x9e\xb8\xd7\xad\x24\x4f\xba\xc9\xbf\x83\xd8\x65\x30\x4d\x4a\x1b\x90\x83\xb9\xbc\x77\x27\xa3\xe1\x60\xbc\xc1\xa9\xc2\x9c\x1e\xba\x53\x83\xab\x9b\xf1\xc4\x1d\xe5\x6e\xe3\x82\x1b\x4e\x03\x2f\x0b\xec\xbd\x1e\x1c\x5b\x16\x13\x6f\xe4\x0e\x3e\x5c\xbf\x1d\xbe\xf3\x06\xbf\xbb\x83\x4b\xc7\xa6\xd0\x5e\xcd\xf1\x95\x77\x31\x1c\x39\x36\x32\x7b\x5a\x07\xfb\x22\x34\x51\x9a\x8c\x2c\xdb\x0b\x6f\x70\xee\xbd\x1d\x5e\xb9\x1b\x65\x86\xca\xa4\x41\xde\xb3\x59\x8d\x8a\x30\xda\x65\xca\xec\x03\x1c\xb8\xa3\xc9\x3e\xa8\x43\x70\x2e\xdd\x7f\xee\x85\x59\xe2\x7a\x2f\x9d\x34\xc2\x12\x56\xe7\x37\x93\xdf\x0f\xda\xc9\x24\x9e\x0e\xd9\x99\x08\x0f\xde\x97\x04\x73\xf7\xe6\x58\xb4\x83\xa1\x76\xee\x4f\x82\x74\xc0\xee\xa4\xa4\xb6\x6f\x51\x5e\x9d\xd3\x1a\xb8\xaf\xbc\xe7\xd2\x81\x64\x4b\x1d\x72\xb3\xf0\x6b\x1a\x21\xd5\xcb\x16\xf9\x5b\xca\x0d\x99\x49\x45\x7c\xa1\xf7\xb7\x90\xb6\x56\xf0\xf9\x46\x70\xb3\xe9\x01\x17\xa8\x99\xe2\x49\xa1\x75\x3e\x51\x6e\x60\x26\x15\x5c\x5c\x8f\x01\x85\x51\x1c\x75\x21\xf8\x89\x0a\xa3\x9d\xac\xbf\x11\x85\x5a\x06\x2b\xac\xb3\x06\x78\x83\x33\xa9\xd0\x59\xc6\x53\x0c\xd0\x34\x3e\x37\x9b\xd0\x64\x1d\xa1\x23\x05\xea\x85\x34\xc5\xcb\x11\xda\xfa\x78\x3e\x33\xa8\xdc\x3b\x6e\x9c\xd2\x9a\x00\xdc\x3b\x64\x63\x43\x95\x71\x7a\x53\x2e\x7a\x7a\x01\x84\xc1\xf1\xed\x82\x07\x08\xdf\x41\x2f\xd6\x2a\x79\x3f\x57\x18\xc1\xf1\x9f\x9f\xff\xfc\xfe\x73\x5f\x47\x94\x61\xff\xcb\x97\x63\x48\x42\x20\x65\x9f\x34\x4e\x78\x0d\x3d\x1f\x57\x3d\x11\x07\xc1\xff\x83\x2f\x41\x07\x88\x11\x9c\xda\x67\x81\xc7\x1b\xe2\x43\xa1\x0d\x0d\x82\x2f\x25\x8e\x7f\xc5\x5c\xa1\xff\x66\xbd\x75\xb5\x25\x91\x6d\xad\x3f\x77\x6c\x3b\xc4\xff\xee\xd3\xcb\x14\xb7\xe6\x46\x15\x31\xa2\x0d\x35\x4d\xff\x35\x1d\x54\x4a\x85\xb7\x3c\xc0\x34\x89\x2c\x5d\x25\xd0\xa0\xee\xe5\xcc\x51\xac\xda\x74\x1a\xed\x3d\x8e\xb9\x4f\x66\x3c\x40\xa2\xe9\x0a\x9d\xde\x8a\xaa\x1e\xa3\x6c\x81\x39\x12\x89\xa4\xdf\xb5\x52\xf0\xaf\x52\x4e\x12\xb2\x92\x41\x1c\xa2\x93\x3a\xef\xe9\x92\x0b\xdf\x59\x48\x6d\x9e\x6a\x19\x2b\x96\xf1\x2a\x7b\xb6\xaa\x1d\xca\x58\x18\xa8\x62\x18\xaa\xe6\x68\xf6\x69\xa6\x3a\xb0\xa2\x8a\x04\x7c\x4a\x98\xe0\x2d\xc6\xed\x2a\x02\x3e\xed\x31\xc1\x77\x19\x2e\x83\xe4\xd6\xb7\xab\xd6\x2d\xd3\x80\x33\xb9\xcb\x78\x22\x70\x90\xfd\x14\xaa\x41\xa1\x0d\x20\x63\x21\x23\x63\x69\x93\x29\x17\x2d\x14\x64\x64\xec\x02\x6c\xe6\xed\xb2\x5f\x06\xc9\x8d\x6f\x57\x2d\xaf\x5f\xce\xb7\x2d\x5c\xce\xf7\xae\x58\xce\xab\x4b\x6d\xa8\x64\x96\xd0\xb0\x84\x9e\x40\xe3\x6f\x89\x30\xcb\x54\xa0\xe9\xd6\xa3\xb3\x62\xb4\x82\x53\x8e\xb2\x6d\xda\xfb\x66\xde\xa2\xe6\x7d\x54\x98\x96\xbd\x70\xe9\x73\x05\x24\x82\xf2\xfe\x1d\x24\x5f\xcb\xdf\x90\x0a\x3e\x43\x6d\xf4\xc1\xca\xc5\x22\xfe\x1b\x73\x6c\x81\x6c\x19\x49\x2e\x0c\xd1\xc8\x14\x3e\xc2\x6e\x09\x85\x0b\xca\x0c\x5f\x21\x79\x1c\xfb\x52\xaa\x3d\x4e\x3e\xc9\x8b\x47\xa9\x64\xc5\xac\x97\x46\x44\x14\xc4\x73\x2e\xb6\x91\xcc\x5b\xd6\x94\xa6\xcd\xec\x28\xed\x5d\x76\x4a\xe1\x33\xce\xa8\x41\x42\x63\xb3\x90\x8a\x9b\x35\xf1\xa9\xa1\xc7\x8d\x0d\xb1\x8f\xb6\x76\xf1\x39\x7c\x05\x7a\xbb\x84\xe3\xfb\x48\x71\x61\xa0\xf3\xec\xe1\x18\xbe\xc2\x94\x6a\x7c\x79\x06\xc4\xb7\x0d\xaf\xee\x92\xda\x54\x56\x25\x57\x17\x4e\x8c\xd8\x50\xcd\xcb\x35\x9b\x2b\x19\x47\xc4\x57\x7c\x85\xaa\x1d\x84\x14\x4b\x54\x4b\x03\x2a\x84\x52\x1b\xd8\xd5\x01\xda\x7a\xbe\x45\x4a\x7c\x92\x9e\x2d\x73\x95\x5b\x45\xa3\x08\x55\x2d\xaf\xa8\x90\x62\x1d\xca\x58\x27\x1b\xe8\xcc\x68\xa0\xb1\x2e\x12\x9b\x05\x0a\x63\xb7\x99\x4b\x41\x8c\x5c\xa2\x20\xb7\x38\x5d\x48\xb9\x6c\x11\x95\x8a\xff\x3b\x95\x0c\xa5\x8f\xce\xa7\x56\x41\x16\x70\x14\x86\x30\x9a\xad\xb0\x75\xc3\x1b\x3a\xc9\xa9\xc7\xf3\x85\x76\x3a\xf7\xa5\xff\x79\x59\x8f\xf6\x78\xf4\xb0\x4d\x27\x39\x4f\x96\xd5\x92\x17\x9e\x8e\x67\x33\x7e\xd7\xd0\x12\x9c\x58\x37\x12\x9f\xab\xdd\x65\x29\x75\xf6\xd6\x96\x9f\x05\x5c\x55\x07\xef\xb8\x21\x52\x10\x3b\xda\x92\x6c\x5a\xe1\xb2\x5a\xda\xff\xef\xfe\x6f\xe0\xb3\x6c\xbc\xf1\x4c\xa0\xbd\xa9\x94\x46\x1b\x45\x23\xf8\xfb\xa1\x02\xb7\x09\x6c\xa7\x91\x5b\xa5\xa0\xaf\x72\x28\xd0\x2a\xea\xdb\x53\xa6\xaa\xad\xa4\xb1\x29\x57\x4a\x3f\xdd\x60\x8f\x36\x90\x76\x50\x3d\xcc\x56\x82\x24\x7c\x3e\xab\x43\x25\x9b\xb7\xc9\x0e\x15\x8b\x9e\x7d\x55\xec\xbc\xfd\x4f\x8d\xb5\xed\x54\x76\x96\x24\x72\x85\x4a\x71\x1f\x9d\xea\x65\x43\x4d\x5c\xa0\xb9\x95\x6a\x49\xd2\xca\xe4\x34\x87\x0f\x21\x7d\x24\x01\x9d\x62\xa0\x9d\x4e\xe7\xfe\xfa\xc3\x85\xeb\x5d\x9d\xbf\x71\xaf\xc6\x75\xa8\x48\xfa\x45\x1d\x26\x11\x35\x8b\xc6\xf2\x8b\x2a\x5d\xdf\x69\xa4\x3e\x91\x22\x58\x93\x48\x2a\xe3\x9c\x34\x3e\xcf\xb9\x0d\x67\x72\xcb\xcd\x82\x18\xca\xed\xec\x9a\x73\x99\x9c\x0f\xaf\x27\x0d\x2e\x69\xb9\xcd\x56\x95\x06\xf8\x63\x2a\xb2\x8c\x6a\xb5\x4a\x1b\x19\x3d\xba\x5a\x8d\x50\x27\xb5\x8a\x06\xb7\x74\xad\xeb\xaf\xc7\xc8\x9c\xd3\x93\x1d\x27\x0b\x3b\xa3\x27\x87\x86\x30\x0e\x0c\x27\xb1\x46\xd5\x4d\x87\x88\xca\x91\xc1\x06\xb9\xa5\x50\x9b\xe1\x1f\x79\x40\x78\x53\x24\x1e\x85\xcb\xc2\x63\x90\x15\x92\x42\x65\x20\x85\xcf\xad\xc2\x47\x6a\x16\xee\x1d\xd7\x46\x3b\xdf\x25\xa3\x47\x4e\xa3\xc7\x05\x37\x5e\x41\xca\x1e\x9f\xbe\xe9\xb1\xef\x93\x54\x4b\x2e\xe6\x17\x5c\x21\x33\x52\xad\x9d\x8a\xf5\xb6\x4e\x51\x61\x97\x3f\x90\xc4\x07\x2d\x6d\x4a\xea\xec\x40\x69\x64\xcc\x16\x70\xf8\xda\x1e\xe3\x3f\x6d\xa4\xa2\x73\xec\x3f\x01\xb0\xd1\x54\xdc\x0f\xdb\xac\xe9\xef\x68\xea\x19\x76\xa2\x93\x1c\xc1\xfb\xa0\x64\xb1\x73\xb6\x13\xf5\xe1\xe4\xe5\xd9\x59\x3d\x06\x0a\x4e\x5c\x04\x5c\x60\xf5\x4e\xb8\x73\xbf\x31\xf0\xb0\x97\x48\xf5\x8c\xf7\x6d\x99\x5c\xde\xbc\x71\xaf\xdc\xc9\xae\xab\xe4\x48\x6a\xe4\xbe\x14\x39\x97\xad\xda\xc9\xcd\xf5\x69\xf7\xf4\xd7\xee\xf3\xad\x32\xc9\x51\xf4\xc8\xf6\x2a\x64\xd9\x44\x21\x19\x0d\x12\xf7\x67\xf8\xe5\xfb\xa0\x52\xed\x73\x8e\x6c\x5d\xec\x6e\xf6\xc6\x72\x0b\xa9\xcd\x95\xa7\x2d\x5f\xec\xf2\x95\x0c\x02\x54\x8d\xdb\xb4\x52\x11\x4b\x41\x89\x92\x41\x3b\xb2\xd3\xbf\x96\x63\xb6\x40\x3f\x0e\x8a\xdb\xa6\x92\xa3\xf4\x5a\x33\x13\x74\xfd\x5e\x48\xef\x92\x68\x23\xb7\xd4\xb0\x05\xea\xf2\x4f\x03\x5b\x1c\x76\x98\x7f\x66\xba\xcb\x85\x34\x7c\xb6\xee\x86\xf4\xce\xb3\x36\xbc\xcc\x86\x73\xfa\xf2\xf4\xd5\x59\x93\x54\xde\x8e\xbe\x55\xbc\x54\xe2\xb6\xdc\xd7\xaa\xa6\xf7\xe7\xfc\x6e\x26\x2f\x0a\x26\x76\x91\x25\x16\x7e\x1f\x5e\x9c\xe4\x55\x3b\x99\x78\xb7\x7d\x3c\x6c\x4b\xbf\xff\xae\x18\xf9\xcb\x6f\xe1\x53\x36\xc7\xce\xa4\x2a\x2a\x3c\x54\x6b\x16\x80\x46\x03\x04\x2b\x7a\x1f\x15\x92\x28\x0e\x82\xfc\x26\x09\x92\x13\x24\x4c\x91\xd1\x58\x23\xdc\x2e\x50\x00\x37\xc0\x35\x04\xd4\xa0\x02\x2b\x8b\x3e\x4c\x63\x03\x86\x2e\x51\x83\x91\x12\x02\x29\xe6\x56\xca\xf0\x10\x35\xc8\xb8\x6c\x33\xcd\xc8\x44\x0f\xb6\x25\x65\xbf\x99\x78\xdf\xc3\x7b\xb9\x42\xc0\xbb\x08\x15\x0f\x51\x18\x1a\x40\xf3\xd0\x06\xf0\x19\x88\x80\xa3\xce\x8f\x81\xae\x39\x91\x6a\x8d\xa6\x34\x42\x90\x9f\x7b\x3f\xc3\xb3\xd7\xc5\xad\xdd\x4f\x47\xf0\x05\x7e\xf8\x01\xc2\xd5\x21\x8a\xbb\x45\x2c\x8e\x3d\x9d\xa8\xd9\x5e\xac\x12\x75\x5b\x45\xa0\x7a\xc2\x89\xab\xf3\xae\x9d\x4c\x8c\x8a\xb5\x21\x4b\x5c\x6b\x32\x53\x32\x24\xc9\xef\x2f\x0d\xa9\xec\x22\x22\xb5\xb7\xe5\x9e\xa5\xc6\xaa\x81\x51\xb9\x8a\xc8\x90\xf2\x4b\x88\x2d\x2a\x99\xd9\x62\x6e\xde\x72\xf9\xb1\x29\x4e\xbb\x8d\x6e\x70\xca\x97\x1f\x5b\xb5\x3b\x9d\xfb\xd1\xe5\xc4\xfb\xf0\xb1\x3e\xcf\xe5\x51\x57\xea\x03\x4b\x2e\x56\x32\x58\x16\x9b\xd0\x5f\x9d\x74\x4f\xcf\xba\x27\x64\x81\x41\x48\x90\xbd\x3c\x7b\xf1\xfc\x05\xa1\xa1\xff\xf2\xac\xc1\xb1\xfd\x96\xa5\x21\x26\xd0\x24\x4b\x6f\x7c\xb0\x47\xb3\xd6\x0f\xf6\xa5\x26\x28\x8c\x5a\xb7\x0b\xa4\x8d\xa6\xc8\x67\x42\xd2\x94\xb6\x67\x4a\xeb\x90\x74\x50\xcd\x7c\x73\xd4\xf9\x47\x4b\x91\x7f\xf4\x11\x7c\x77\x9d\xfb\xe5\x91\x1d\xba\xbd\x5c\x35\xea\x90\x1d\xe8\xed\x3c\x9f\xf9\xcd\x4b\x89\x79\x29\x31\xe7\xa8\xf3\x63\x56\x45\xb8\x98\x49\x20\x33\x38\xbe\xbf\xef\x0e\x12\x99\x8b\x44\xe4\xe1\xe1\xf8\xa7\x72\x93\x64\xd4\xc0\x6f\xbf\xb9\x1f\xde\xc2\xeb\xdd\x87\xd0\x92\x0e\x8d\xf8\x1f\xa8\x34\x97\x62\x73\xad\x9e\x0a\x75\x97\xaf\x92\xae\xba\x3a\x9d\xa2\xa1\xa7\x25\x1d\x1b\xee\x7d\xc8\x2e\xcb\x07\xd9\xfe\x26\xc7\xfc\x32\x99\x12\xd1\x3e\x1c\x75\x3a\xf7\x6d\xab\xac\xfc\x6c\xe9\x7e\x78\xfb\x24\xa2\x5a\xdf\xa6\x7f\x12\xa0\x51\xd5\xfe\x24\x80\x49\x95\xef\x9f\xd6\x0b\x2f\xbf\x61\x40\xdf\xb3\x95\xa2\x0f\x9d\x7b\xfb\xda\x3e\x3f\x3c\xf9\x4f\x00\x00\x00\xff\xff\x4d\xa1\x24\x7f\x61\x20\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/controllers.tf": &vfsgen۰CompressedFileInfo{ name: "controllers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3100, + uncompressedSize: 3489, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\x23\x37\x0c\xbd\xcf\xaf\x20\xb4\x3e\x24\x6d\x32\xce\x6e\x81\xa2\x08\xe0\x53\xf7\xdc\x3d\xb4\xb7\x20\x10\x64\x89\x63\x6b\xad\x91\xa6\x92\xc6\x89\x61\xf8\xbf\x17\x94\xe6\xd3\x6b\x67\xd3\xf8\x34\x96\xc8\x47\xf2\xf1\x91\x33\x1e\x83\x6b\xbd\x44\x60\x5e\x58\xe5\x6a\x1e\xa2\xd7\x76\xc3\x80\xed\x9d\x69\x6b\x6c\x44\xdc\x32\x38\x16\x00\x06\xed\x26\x6e\x01\x56\xf0\x7b\x01\x10\x1a\x94\x5a\x18\x58\x41\x25\x4c\xc0\xe2\x54\x14\x23\x94\xd1\xeb\xbd\xf6\x91\x37\xce\x99\x01\x29\xd6\x4d\x06\xb2\xa2\x46\x58\x01\xdb\xd7\x61\x71\x9c\x45\x2d\xc7\x98\xa5\xc7\xd0\x9a\x78\x62\x05\x40\x3c\x34\xc9\x41\x69\x4f\x7f\xe9\x9a\xfe\x2e\xf7\xc2\x2f\x63\xdd\x2c\xdf\x09\x74\x31\xc5\x6c\xc8\x80\xad\x45\xc0\x49\x7e\x54\x27\x5b\x1c\xf7\xc2\x97\xd2\xb4\x21\xa2\xe7\x74\x7e\xba\x4f\x76\x44\x40\x06\x5a\x01\x99\xb8\xc0\x75\x2d\x36\xc8\x5b\xdb\x08\xb9\x43\x45\x69\x3a\x67\x12\xcc\x94\x8d\x72\xe0\xa2\x24\xb8\x02\xa0\x72\xbe\x16\x91\xa2\xfd\x2b\xdd\xcb\x97\x9f\xa5\x29\x9d\x8d\xde\x19\x83\xfe\x5e\xe9\xb0\x9b\x65\xdc\xff\xae\x64\x3e\x71\x5d\x1c\xa5\x6b\x6d\x2c\xb5\x55\xf8\x7a\x2a\xbb\xc8\x00\xe9\x74\x0a\x94\x50\x06\x3f\x9e\xee\x0b\x00\x22\xa1\xcb\x89\x6b\x35\xa9\x31\x9f\x95\x74\x5f\xea\x09\x0b\x23\xe2\xbb\xd8\x98\x54\xf2\x16\x2b\x7a\x63\x75\xd4\xce\x32\x60\xe3\xe3\x94\x90\xff\xcb\xc4\xfd\x00\x33\x49\xfd\x67\x39\xf7\xa4\x5d\x65\x8b\x8e\xd0\x52\x8f\x95\x88\xa2\x94\x91\x4b\x67\x2b\xbd\x99\xd8\x0e\x81\xc3\xd3\x24\x9f\xe7\xd2\xa3\x55\xe8\x51\x5d\xae\xdf\x62\x7c\x71\x7e\x47\x23\x56\x5b\x8c\xe7\x62\xe8\x12\x9a\x94\x5e\x00\xd4\x4e\x0d\xd7\xcc\x8a\x48\x95\x2a\x57\x0b\x6d\x47\x97\x5a\xc8\xad\xb6\xc8\xf3\x79\x01\x20\x94\xf2\x18\x02\x06\x58\xc1\x13\x59\x58\xa7\x90\xeb\x26\x31\xf2\x5c\x10\x84\x0d\x29\x3a\x80\x71\x52\x18\xee\xac\x39\xc0\x0a\xa2\x6f\x31\x9d\x7e\x02\x29\x6c\xde\x1a\xd5\x21\xdb\xa4\x4c\x03\x6c\xd1\x93\xc9\xe9\x72\x89\x39\x85\xb9\xf0\xbb\xf4\x72\xb9\x1d\xfb\x57\xc9\x7f\x7b\x9a\xaf\x2a\x81\x68\xd9\xcb\xa6\x1d\x38\xa1\x6c\x5a\x61\xb8\x6c\xda\x40\x34\x62\xed\xfc\xe1\xec\x2e\x1f\x12\x1d\xd5\x0b\x97\xd5\x86\x0f\xbd\x58\x01\x73\x4d\x5c\x3a\xbf\x29\x2b\x23\xa2\x14\xfe\xde\x68\xdb\xbe\x2e\xb3\x12\xf2\xec\x79\xa4\x3d\xd2\x09\x61\x22\xbb\xfe\xa8\xec\x1f\xe6\x1a\xd1\x2a\x35\x40\x87\x5d\xd7\x81\x37\x06\xf3\x6c\x7d\xfc\x00\x44\x7d\x28\x00\x36\x5e\x34\x5b\x2d\x87\x96\xea\x10\xd1\xf2\x7e\x0f\x77\x6a\x60\xbd\x75\x27\x43\xae\x6d\x44\x5f\x09\x89\x9d\xdb\x70\xae\xce\x66\xbf\xbb\x28\x93\x6a\x73\x58\x80\xad\x0b\x71\xb2\xc8\x3e\xd2\xb0\xa9\x50\x3b\x90\x27\xa9\x95\x27\xe8\x9b\x73\xd9\xde\xc1\xe7\x07\xf8\x15\x26\x18\xb7\xcf\xf0\x09\xfe\xf9\xf6\xf5\xdb\x23\xb4\x01\x41\x04\x68\xda\xb5\xd1\x32\xa1\x82\xb6\xb0\x6b\xd7\x98\x1b\x96\x82\xbd\x08\x1d\x79\xe5\x3c\x37\x28\x02\x8e\x6a\x4f\x52\xa6\x51\x07\x36\xcc\xfa\x5c\xc1\xc3\xb4\xcf\x34\xfc\x8e\x15\xd2\xef\x90\x88\x75\x63\x44\x44\x5e\x69\x33\xeb\x6a\x8e\x76\x6d\x8b\x00\x04\xab\x9b\x06\x63\xb8\x10\xca\x48\xde\xdf\x8e\x05\xcc\x02\xcd\x8b\xe8\x42\xbd\xb7\x84\x1e\x89\x3e\x19\xb4\xc1\x1b\xb6\x38\xa6\xf7\x73\xed\x54\x6b\xf0\xb4\x94\x66\x39\x7a\x95\x07\x51\x9b\x32\xd6\x8d\x61\xb7\x24\xb1\xbd\xf0\x94\xf2\xb1\xdb\x25\x7f\x0a\x6b\x5d\x4c\x5d\x92\x07\x49\x2d\x52\xd8\x50\x91\x56\x6a\x0c\xe0\x2c\x8c\x50\x01\x9c\x87\xb8\x45\xed\xe1\xeb\x5f\x7f\x83\x47\xe9\xbc\x0a\x09\x08\xa3\x54\xfc\xec\xe5\xf9\x61\xe9\x25\xb0\x71\x93\x7e\xf8\x65\x9c\xad\xe7\x2b\x78\x1a\x42\x93\x74\x68\x11\x65\xbc\x14\xe2\xbb\xd3\xf6\x86\xdd\xb1\xbb\x4b\xea\x20\xaf\x50\xfe\x32\xa8\xe0\x36\x61\x8d\x5a\x3e\xab\x9d\xd2\xb0\xf1\xe6\xf3\xc3\x1d\xe4\xd6\x94\x6b\xe7\x22\x99\x97\xa3\xcf\x3d\x3d\x1a\x8c\x19\x2b\x84\x2d\xdf\xe1\x21\xc0\x39\x8f\xdf\x83\xb3\x68\xa5\x53\x98\xc6\xaf\xb7\xcb\x5e\x3d\x21\xca\x06\x1e\xd0\xef\xb5\xa4\xd9\x84\x15\xcc\x46\xb6\xbf\xa1\x43\x1a\xd9\x33\xdf\x44\x0f\x0f\x6d\x55\xe9\xd7\xf3\x37\xde\xec\x72\x3e\x97\xe7\xb2\x4e\x1c\x7d\x40\xc9\x6c\xb1\x38\x5e\x6f\xec\xe2\x98\x7b\xba\xda\xc6\xd8\x84\xc7\xe5\xf2\x5d\xd6\x97\x15\xf0\xf8\xe5\xb7\x3f\x1e\x18\x7c\xa2\xb5\x34\x95\x9a\x58\xbb\x3d\xfe\x30\x22\x09\x69\xec\xc3\x44\x60\x33\xfa\xba\x4f\xf1\x0b\x9f\x09\xc4\xd5\x7f\x01\x00\x00\xff\xff\x53\xe7\x56\x31\x1c\x0c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xcb\x6e\xe3\xb8\x12\xdd\xeb\x2b\x0a\x6a\x2f\x92\x7b\x13\x39\xfd\x40\x63\x10\xc0\x98\xc5\xf4\x7a\x7a\x31\xb3\x0b\x02\x82\x26\x4b\x36\xdb\x14\xa9\x21\x29\x27\x86\xe1\x7f\x1f\x14\xa9\x77\xec\x24\x93\xac\x2c\xb2\xea\xd4\xe3\x9c\x2a\x29\x0e\xbd\x6d\x9c\x40\xc8\x1d\x37\xd2\x56\xcc\x07\xa7\xcc\x26\x87\x7c\x6f\x75\x53\x61\xcd\xc3\x36\x87\x63\x06\xa0\xd1\x6c\xc2\x16\x60\x05\xdf\x33\x00\x5f\xa3\x50\x5c\xc3\x0a\x4a\xae\x3d\x66\xa7\x2c\x1b\xa0\xb4\x5a\xef\x95\x0b\xac\xb6\x56\xf7\x48\xa1\xaa\x13\x90\xe1\x15\xc2\x0a\xf2\x7d\xe5\x17\xc7\x49\xd4\x62\x88\x59\x38\xf4\x8d\x0e\xa7\x3c\x03\x08\x87\x3a\x3a\x48\xe5\xe8\x91\xae\xe9\x71\xb9\xe7\x6e\x19\xaa\x7a\xf9\x4e\xa0\xb3\x29\x26\xc3\x1c\xf2\x35\xf7\x38\xca\x8f\xea\xcc\x17\xc7\x3d\x77\x85\xd0\x8d\x0f\xe8\x18\x9d\x9f\x6e\xa3\x1d\x35\x20\x01\xad\x80\x4c\xac\x67\xaa\xe2\x1b\xa4\xec\xac\xd5\xd1\x7b\xdc\x84\xa2\x6f\x41\x41\x28\x19\x40\x69\x5d\xc5\x03\x05\xf9\x47\xd8\xa7\x2f\x6f\x65\x27\xac\x09\xce\x6a\x8d\xee\x56\x2a\xbf\x9b\x24\xda\xfd\x5d\x48\x78\xe4\xba\x38\x0a\xdb\x98\x50\x28\x23\xf1\xf9\x54\xb4\x91\x01\xe2\xe9\x18\x28\xa2\xf4\x7e\x2c\xde\x67\x00\x54\x7b\x9b\x13\x53\x72\x54\x63\x3a\x2b\xe8\xbe\x50\x72\xe8\xc2\x80\xf8\xae\x6e\x8c\x2a\x79\xad\x2b\x6a\x63\x54\x50\xd6\xe4\x90\x0f\x3f\xc7\x0d\xf9\xaf\x9d\xb8\xed\x61\x46\xa9\xbf\x95\x73\xd7\xb4\x8b\xdd\xa2\x23\x34\xc4\xb1\xe4\x81\x17\x22\x30\x61\x4d\xa9\x36\x23\xdb\x3e\xb0\x7f\x18\xe5\xf3\x58\x38\x34\x12\x1d\xca\xf3\xf5\x1b\x0c\x4f\xd6\xed\x68\xb2\x2a\x83\x61\x2e\x86\x36\xa1\x51\xe9\x19\x40\x65\x65\x7f\x9d\x1b\x1e\xa8\x52\x69\x2b\xae\xcc\xe0\x52\x71\xb1\x55\x06\x59\x3a\xcf\x00\xb8\x94\x0e\xbd\x47\x0f\x2b\x78\x20\x0b\x63\x25\x32\x55\xc7\x8e\x3c\x66\x04\x61\x7c\x8c\x0e\xa0\xad\xe0\x9a\x59\xa3\x0f\xb0\x82\xe0\x1a\x8c\xa7\x9f\x40\x70\x93\x96\x45\x79\x48\x36\x31\x53\x0f\x5b\x74\x64\x72\x3a\x5f\x62\x4a\x61\x2a\xfc\x36\xbd\x54\x6e\xdb\xfd\x8b\xcd\x7f\x7d\x88\x2f\x2a\x81\xda\xb2\x17\x75\xd3\xf7\x84\xb2\x69\xb8\x66\xa2\x6e\x3c\xb5\x11\x2b\xeb\x0e\xb3\xbb\x74\x48\xed\x28\x9f\x98\x28\x37\xac\xe7\x62\x05\xb9\xad\xc3\xd2\xba\x4d\x51\x6a\x1e\x04\x77\xb7\x5a\x99\xe6\x79\x99\x94\x90\x66\xcf\x21\xad\x8f\x56\x08\x23\xd9\x75\x47\x45\xf7\x63\xaa\x11\x25\x23\x01\xca\xef\x5a\x06\x5e\x19\xcc\xd9\xfa\x78\x01\x44\x3c\x64\x00\x1b\xc7\xeb\xad\x12\x3d\xa5\xca\x07\x34\xac\x5b\xbf\xad\x1a\xf2\xce\xba\x95\x21\x53\x26\xa0\x2b\xb9\xc0\xd6\xad\x3f\x97\xb3\xd9\x6f\x2f\x8a\xa8\xda\x14\x16\x60\x6b\x7d\x18\x2d\xb2\x8f\x10\x36\x16\x6a\x0b\xf2\x20\x94\x74\x04\x7d\x35\x97\xed\x0d\x7c\xbe\x83\xff\xc3\x08\xe3\xfa\x11\x3e\xc1\xdf\x3f\x7f\xfc\xbc\x87\xc6\x23\x70\x0f\x75\xb3\xd6\x4a\x44\x54\x50\x06\x76\xcd\x1a\x13\x61\x31\xd8\x13\x57\x81\x95\xd6\x31\x8d\xdc\xe3\xa0\xf6\x28\x65\x1a\x75\xc8\xfb\x59\x9f\x2a\xb8\x9f\xf6\x89\x86\xdf\xb1\x42\xba\x1d\x12\xb0\xaa\x35\x0f\xc8\x4a\xa5\x27\xac\xa6\x68\x97\xb6\x08\x80\x37\xaa\xae\x31\xf8\x33\xa1\xb4\x60\xdd\xed\x50\xc0\x24\xd0\xb4\x88\x36\xd4\x7b\x4b\xe8\x90\xe8\x4b\x41\x69\xbc\xca\x17\xc7\xf8\x5a\xae\xac\x6c\x34\x9e\x96\x42\x2f\x07\xaf\xe2\xc0\x2b\x5d\x84\xaa\xd6\xf9\x35\x49\x6c\xcf\x1d\xa5\x7c\x6c\x77\xc9\x1f\xdc\x18\x1b\x22\x4b\xe2\x20\x88\x22\x89\x35\x15\x69\x84\x42\x0f\xd6\xc0\x00\xe5\xc1\x3a\x08\x5b\x54\x0e\x7e\xfc\xf9\x17\x38\x14\xd6\x49\x1f\x81\x30\x08\xc9\x66\x2f\xcf\x0f\x4b\x2f\x82\x0d\x9b\xf4\xc3\x2f\xe3\x64\x3d\x5d\xc1\xe3\x10\x8a\xa4\x43\x8b\x28\xe1\xc5\x10\xbf\xac\x32\x57\xf9\x4d\x7e\x73\x4e\x1d\xe4\xe5\x8b\xff\xf5\x2a\xb8\x8e\x58\x83\x96\x5b\xca\xd0\xf0\xb5\x46\x16\xb4\x67\x6b\x6b\x83\x0f\x8e\xd7\xf0\x3b\x50\x56\x26\x5c\x7d\xbe\xbb\xe9\x19\x3c\x4b\x1f\x0d\x34\x3a\x4f\x34\xf6\xee\xb7\x43\x90\x11\xa1\x37\x2d\x8d\x00\xc1\xee\xd0\x0c\xeb\x61\xfa\xe5\xd6\xa3\xb0\xce\xec\xe1\xee\xb1\xfd\x88\x9b\xf8\x7b\x14\x0e\xc3\x9b\xfe\xc9\xec\x05\x86\xe0\x4c\xa0\x0b\x1d\x59\xa9\x9c\xe8\x4c\xc9\x17\xed\x75\x6b\xec\xd1\xed\x63\xcb\x5b\x66\xb7\x21\xd4\xfe\x7e\xb9\x5c\x1c\xe3\x1b\xad\xe0\xb5\x62\xc9\xe6\x74\xff\xfd\xdb\xb7\xaf\x89\xb6\xd3\xf5\x35\xdc\x8f\x1b\x39\x0f\x32\xb4\x29\x76\x4c\x63\x48\x1c\x79\xbf\x65\x3b\x3c\x78\x98\xeb\xf3\x97\xb7\x06\x8d\xb0\x12\xe3\x5a\xeb\xec\x92\x57\x27\x34\x69\x7c\x4c\x46\x09\xda\x79\xb0\x82\xc9\x2a\xec\x6e\xe8\x90\x56\xe1\xcc\x37\xca\x8e\xf9\xa6\x2c\xd5\xf3\xfc\x4b\x62\x72\x99\x84\x79\x4e\x3b\xf0\x8a\xb0\xa6\x5b\x72\xbe\x64\xa2\x62\x3f\xb0\x57\xf2\xc5\xe2\x78\x79\xcc\x16\xc7\x34\x61\xab\x9e\xb5\xf7\x58\x9f\x9f\xc7\xfb\x2f\x5f\x7f\xbb\xcb\xe1\x13\xbd\x24\xc6\x83\xcf\xd7\x76\x8f\x2f\x16\x56\x44\x1a\xd8\x1b\x8d\xfb\xa4\xe9\xed\xff\x43\x67\x3e\xda\xa8\x57\xff\x06\x00\x00\xff\xff\x93\x03\xba\x7d\xa1\x0d\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 935, + uncompressedSize: 974, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x51\x6e\x84\x20\x10\x86\xdf\x3d\x05\xd9\x3e\x2f\x37\xe8\x59\xcc\x08\xb3\x95\x38\x30\x04\x06\x93\x4d\xb3\x77\x6f\x8c\xdb\x56\x70\xdb\xf0\x66\xf2\x7f\xdf\x87\x06\xb9\x48\x2c\xa2\x2e\x4b\x99\xd0\x70\xb8\xb9\x8f\x2b\x58\xef\xc2\x45\x7d\x0e\x4a\xad\x40\x05\xd5\xbb\xf2\x6c\x0b\xa1\x9e\x98\x65\x03\x75\x4b\x0f\x8f\x61\x38\x97\xba\x1b\xdb\x23\xa1\x1c\x2b\x1e\xcc\xec\x02\x8e\x96\x3d\xb4\x6f\xb3\x42\xd2\xf5\x7e\x34\x0d\x95\x2c\x98\xc6\x00\x1e\xcf\xde\x71\x3d\x5a\x39\xcf\xe3\x82\xf7\x7c\x36\xbe\x97\x23\x4d\x6e\x5a\x5d\x92\xc8\x4c\xb5\xf0\x1c\xc6\x6d\xd1\x2b\x53\xf1\x28\x3e\xea\xf6\xb4\x27\x36\x41\x46\x67\x5f\x17\x76\x59\x6f\x88\x76\x76\x93\xdf\x76\x26\xeb\x3b\x78\x52\x86\x83\x60\x10\x75\xe3\xa4\x80\x48\x59\x8c\xc4\x77\xb4\xca\xcc\x90\x24\xeb\x9f\xb3\x22\xdb\xab\x99\xd1\x2c\x91\x5d\xd8\x3e\x7d\xaf\xfc\x7f\x39\x7f\x48\xed\x3d\x5f\x21\xba\x8c\x69\xed\xac\xbe\x54\xda\x66\x0a\x28\x98\xbb\x7b\x15\xde\xb6\x08\xa5\x3b\xf4\xcb\x56\x7f\x13\x90\x33\xdc\x15\xa9\xd0\xea\xb6\x79\x61\xcf\xe2\x56\xec\xea\x9c\xf0\xe1\x31\x7c\x05\x00\x00\xff\xff\x35\x1f\xf0\x39\xa7\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x51\x6e\xc3\x20\x0c\x86\xdf\x39\x05\xea\x9e\xc3\x0d\x76\x96\xc8\x01\x77\x45\x35\x18\x81\x89\x54\x4d\xbd\xfb\xc4\x32\x75\x49\x9a\x6e\xbc\x45\xfa\xbf\xff\x8b\x63\x87\xab\xa4\x2a\xfa\x74\xad\x13\x5a\x8e\x67\xff\x31\x80\x0b\x3e\x9e\xf4\xa7\xd2\x7a\x06\xaa\xa8\xdf\x75\x60\x57\x09\xcd\xc4\x2c\x0d\x34\x7b\x5a\xdd\x95\x7a\x36\x75\x3b\xda\x23\xa1\xac\x2d\xe4\xa7\xd9\x67\x49\xcc\xb4\xd5\xfc\x04\x63\x4b\xcc\xcc\x54\x03\x4a\x48\x26\x42\xc0\x83\xfe\x04\x05\xbd\x3b\x36\x2c\x65\xd3\x10\xe3\x5d\x2b\xbf\x2d\x4c\x31\x37\x08\xa4\x2d\x47\xc1\x28\xfa\xcc\x59\x03\x91\x76\x98\x88\x6f\xe8\xb4\xbd\x40\x96\x62\x1e\xef\x4a\xec\x06\x7b\x41\x7b\x4d\xec\xa3\x60\x1e\x17\xcb\xdf\x9f\xff\xa2\xb4\xdf\xe4\x00\xc9\x17\xcc\x73\xa7\xf5\xb0\xb2\x77\xe6\x88\x82\xa5\xdb\xb7\xc1\xf7\x2e\x42\xe9\x16\xfd\xb2\x6b\x8b\x05\xf2\x96\xbb\x24\x1b\x74\x73\x6d\xbe\x72\x60\xf1\x33\x76\x79\x9e\xf0\xed\x3c\xa3\xc5\x2c\xff\x4d\xf2\x0d\xad\x7b\x2d\x2b\x92\x21\x0d\x05\x6d\x46\xe9\x5b\xf0\xab\xd6\xda\xfc\xb8\xe7\xee\x3f\x66\x0b\x64\x20\xf9\x71\x49\xd5\x5d\x7d\x05\x00\x00\xff\xff\x14\x8d\xa2\x91\xce\x03\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/ssh.tf": &vfsgen۰CompressedFileInfo{ name: "ssh.tf", @@ -6072,52 +6079,71 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2783, + uncompressedSize: 3311, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x5f\x6f\xdb\x36\x10\x7f\xf7\xa7\x38\xa4\x0f\x75\xb0\x55\xb5\x83\x2c\xcb\x80\xf6\xa1\x73\xba\x2e\x58\x9d\x65\x4d\x93\x97\x61\x10\x68\xf2\x24\x1d\x42\x91\xea\x1d\xe9\xd4\x1b\xf6\xdd\x07\x4a\x8a\xeb\xd8\x72\x97\x0c\xf3\x8b\x01\x89\xf7\xfb\xc7\xe3\x51\xcf\xe0\xec\xe2\x0a\x18\xb5\x67\x23\xa3\xd1\x52\x31\xa9\x85\x45\x38\xd0\x36\x4a\x40\xce\x9d\xaa\xf1\x00\xfe\x1a\x01\x84\x55\x83\xd0\xff\x5e\x83\x04\x26\x57\x8e\x00\x0c\x8a\x66\x6a\x02\x79\x07\xaf\xe1\xe0\xda\xd1\xa7\x88\xd0\x97\x43\x5b\x3e\xfa\x7b\x34\x7a\x06\x17\xde\xa0\x6c\x30\x78\xc9\xa9\x56\x25\xe6\xd1\x35\x4a\xdf\xa2\x79\x0a\xcd\xa5\x0a\x15\x04\x0f\xf7\xb5\xf0\x93\x55\x41\x2b\x86\x99\x77\x41\x91\x43\x86\xf7\xe4\xe2\x67\x68\x29\xa0\xe8\xde\xe6\x0d\x7b\x13\x75\x02\xc9\x3f\x61\x1d\x3b\x01\x19\xd5\x25\x8c\x1b\xf6\x0b\xb5\xb0\x2b\x50\x45\x12\xae\x20\x2d\x78\x91\x5e\x31\x0a\xfd\x89\x70\x3e\x7f\x07\xdf\x7c\xf7\xee\xb0\xb5\xb3\x11\x94\x77\x81\xbd\xb5\xc8\xb9\xf6\xd1\x85\x21\x17\x2e\xd6\x0b\xe4\xd6\x45\xa1\xa2\x0d\xfd\xe3\xe9\xae\xaf\x8b\x76\x25\xf8\x02\xbe\xe0\x0a\x8c\x29\xc3\x0c\x6a\x95\x22\x95\x6d\x01\xb5\xd2\x15\x39\xcc\x8d\xaf\x15\xb9\xa7\x84\x38\xef\x2a\xa1\xaf\x7c\x08\xeb\xbc\xc1\x9c\x9a\xbc\xf1\xde\xfe\x0b\xe8\xa6\xa7\x83\xe9\x0f\x47\xd9\xf4\xe4\x34\x4b\xff\x93\x97\x47\xc7\x07\x7b\x7b\xe4\x66\x0e\xe7\x97\x30\x3b\x3f\xfb\xb0\x45\xbd\x24\x0e\x51\xd9\x5c\x37\x51\xfe\xaf\x38\x7b\x4c\x98\x5d\x5e\xcb\x1e\xba\x1a\x6b\xcf\xab\x27\x10\x1e\x4d\x8e\x4f\x77\x39\x6f\x7a\xa6\x0f\x6f\xe6\x40\x0e\xe6\x3f\x7e\xa5\x61\xac\xce\xc5\x51\xd3\x60\x18\x34\x6a\x49\xc2\xb8\x0b\xfa\x70\x97\x68\xb6\x06\xda\xe9\xfa\x99\x77\x05\x95\xb0\xc6\xde\x91\xfe\xfb\x1f\xdd\xa1\xec\x16\x46\x56\x09\x74\x53\xa5\x48\x95\xdf\xe2\xea\x3f\xc8\xba\xba\xfa\x19\x9a\xb8\xb0\xa4\x21\x01\x40\xe1\x19\xa2\x20\xc3\x73\xed\x19\x9f\x6f\xa5\xa1\x44\x30\xe4\x86\xb8\x23\xda\x73\xcc\x15\x18\x62\xd4\xc1\xf3\x0a\xee\x2a\x64\x84\x12\x1d\xb2\x0a\x68\xa0\x45\x10\x90\xca\x47\x6b\x60\x81\xd0\x58\xa5\xd1\xc0\x58\x77\xa1\x08\x08\x6a\xc6\x90\x0e\xce\x9e\x26\x7e\xd8\xf8\x18\xee\x3c\xdf\xe6\x75\x88\x83\x9a\x66\x17\xe7\x40\x2e\x20\x17\x4a\x23\xcc\x3f\x5e\xef\xc2\xee\x6b\xd0\xe3\xd3\xc9\x30\x17\x35\xb9\x8a\xc1\x1b\x0c\xd8\x4d\xa7\x1a\x43\xe5\xcd\x20\xff\xbc\x7d\xd5\xa6\xb2\x2e\x81\x50\x21\x54\x5e\x02\x9c\x5f\x2e\x8f\x41\x19\xc3\x28\xb2\xd7\xef\xce\xa1\x2d\x88\x25\xbc\x28\x7c\x74\x66\x6b\x7f\x1a\x6f\x72\x4d\x66\x78\x7b\xd2\xd9\xed\x18\x59\xb9\x12\x5b\x4d\x22\x54\x3a\xf8\x25\x2e\x90\x1d\x06\x14\x68\xbc\x79\x82\x92\xe9\x24\x9b\x66\x93\x6c\xf2\x72\x7a\xb2\xa5\x44\x90\x97\xa4\x71\xaf\x9a\x57\xaf\xde\xfe\x7a\x36\x7a\x94\xa4\x1e\x4a\xb2\xd1\xc7\x0a\x61\xda\xc6\x06\x77\x64\x6d\x6a\x1f\xc6\xf4\x1a\x4d\xdb\xb8\xb7\x71\x81\xb9\x6a\xa8\x7d\xc4\xdf\xb6\x39\x4f\x27\xa1\xda\x5b\x90\x7a\xdc\x38\xc9\x46\x49\xcc\x68\xc3\xf6\x80\xe5\xce\xee\xd1\xb0\xdd\xfb\x0b\xb8\x1b\xce\xb9\xc4\xa2\xa0\xcf\x83\xbb\xf0\x5b\x44\x26\xec\x0e\x5a\xb7\x5a\xe0\x8e\xd2\xc1\xa9\x10\xba\xba\xb5\x56\xe5\xe4\x0e\x19\x0d\x2c\x56\x6b\xa9\x70\xd6\xeb\x21\xb9\xbf\xb7\x33\xeb\xb5\xb2\x30\xc6\xac\xcc\xa0\xf0\x3e\xeb\x25\x67\xb2\xd4\xd9\x83\x35\x87\xf0\xf8\xbd\x7d\x50\xb8\x65\x17\x5d\xfa\xcf\x19\x1b\xcf\x81\x5c\x39\x34\x77\x16\xde\xdb\x5d\xfb\x6f\xdb\x4a\x88\x92\x2e\x7a\xcf\xa0\x9c\xb2\xab\x40\x5a\x60\x0d\xd6\x7e\x29\x34\x12\x18\x55\x2d\x30\x9e\x29\x4b\xda\x1f\xee\x4e\xc5\x42\x59\xc1\x41\x5d\xaa\x2c\x19\xcb\x76\x4a\x0e\xee\x41\x2f\x22\x25\xbe\xd1\x67\x6f\xbe\x54\xc1\x7b\xb5\x42\x86\x71\x4f\x28\x49\x52\xe0\x88\x03\x43\x69\x6d\x73\x53\x5a\x5a\xdb\x8f\x6c\xe4\x40\x05\x69\x15\xf0\xe1\x17\x1b\x72\x90\x7c\xa9\x2c\x19\x0a\xab\xbc\x41\x26\x6f\xf2\xca\x47\x96\x41\xc9\x37\xfd\xca\x74\x3b\x2a\x6b\x5b\xed\x7a\x03\x3b\x5d\x5e\x5d\xf5\x63\xe7\xdb\xe9\xf7\x27\x93\xed\xf4\x34\xaf\x9a\x90\xa7\x29\x12\x58\x15\x05\xe9\xaf\xc5\x47\xee\xc5\xfd\x87\x63\x93\x46\x5c\x57\x01\x3d\x0a\x79\x97\x3d\x32\xad\xfb\x8d\xfc\x27\x00\x00\xff\xff\x99\x12\xa1\x0d\xdf\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4f\x6f\x1b\xb7\x13\xbd\xeb\x53\x0c\x9c\x43\x64\xfc\x7e\xde\x48\x86\x9b\xba\x40\x72\x48\xe4\x34\x35\x62\xb9\x6e\x9c\xe4\x52\x14\x04\x45\xce\xee\x0e\xcc\x25\x37\x33\x5c\x3b\x6a\x91\xef\x5e\x70\x77\x2d\xeb\xcf\x2a\x8d\x8b\xfa\x22\x78\xc9\x79\xf3\xe6\xf1\x71\x86\x4f\xe0\xec\xf2\x1a\x18\x4d\x60\x2b\xa3\xd1\xad\x66\xd2\x0b\x87\x70\x60\x5c\x23\x11\x59\x79\x5d\xe1\x01\xfc\x35\x02\x88\xcb\x1a\xa1\xff\x7b\x09\x12\x99\x7c\x31\x02\xb0\x28\x86\xa9\x8e\x14\x3c\xbc\x84\x83\x8f\x9e\x3e\x37\x08\x7d\x38\xb4\xe1\xa3\xaf\xa3\xd1\x13\xb8\x0c\x16\x65\x2d\x43\x10\x45\x95\x2e\x1e\x85\x7e\xa5\x63\x09\x31\x40\xe3\x6b\x6d\x6e\xd0\xc2\xcf\x4e\x47\xa3\x19\x66\xc1\x47\x4d\x1e\x19\x2e\xc8\x37\x5f\xa0\x45\x86\xbc\x5b\x55\x35\x07\xdb\x98\x04\xa2\x3e\x63\xd5\x74\x79\x33\xaa\x0a\x18\xd7\x1c\x16\x7a\xe1\x96\xa0\xf3\xc4\x57\x43\xda\x70\x94\x96\x18\x85\xfe\x44\x38\x9f\xbf\x85\xff\xfd\xf0\xf6\xb0\xad\x62\x4d\x9f\xe0\x23\x07\xe7\x90\x95\x09\x8d\x8f\x43\x55\xf8\xa6\x5a\x20\xb7\x55\xe4\xba\x71\xb1\xff\x3c\xdd\xad\xeb\xb2\xdd\x09\x21\x87\x07\x5c\x81\x31\x65\x98\x41\xa5\x93\x92\xb2\x4d\xa0\xd2\xa6\x24\x8f\xca\x86\x4a\x93\x7f\x8c\x88\xf3\x2e\x12\xfa\xc8\x4d\x58\x1f\x2c\x2a\xaa\x55\x1d\x82\xfb\x07\xd0\xf5\x9a\x0e\xa6\x3f\x1d\x67\xd3\xe7\xa7\x59\xfa\x9d\x3c\x3b\x3e\x39\xd8\x6b\x8d\x4f\x73\x38\xbf\x82\xd9\xf9\xd9\xfb\xad\xd4\xb7\xc4\xb1\xd1\x4e\x99\xba\x91\xff\x4a\xce\x1e\x13\x66\x57\x1f\x65\x4f\xba\x0a\xab\xc0\xcb\x47\x24\x3c\x9e\x9c\x9c\xee\xe6\xfc\xd4\x67\x7a\xff\x6a\x0e\xe4\x61\xfe\xfa\x1b\x86\x71\x46\x89\xa7\xba\xc6\x38\x58\xa8\x23\x89\xe3\x4e\xe8\xc3\xdd\x44\xb3\x15\xd0\x8e\xeb\x67\xc1\xe7\x54\xc0\x0a\x7b\x87\xfa\xef\x7f\x74\x77\xb1\xdb\xd8\xb0\x4e\xa0\xeb\x2c\x45\x4a\x75\x83\xcb\x7f\x41\xeb\xfa\xfa\x17\xa8\x9b\x85\x23\x03\x09\x00\xf2\xc0\xd0\x08\x32\x3c\x35\x81\xf1\xe9\x96\x1a\x5a\x04\xa3\xb2\xc4\x5d\xa2\x3d\xd7\x5c\x83\x25\x46\x13\x03\x2f\xe1\xae\x44\x46\x28\xd0\x23\xeb\x88\x16\x5a\x04\x01\x29\x43\xe3\x2c\x2c\x10\x6a\xa7\x0d\x5a\x18\x9b\x4e\x14\x01\x41\xc3\x18\xd3\xc5\xd9\x63\xe2\x4d\xe3\x63\xbc\x0b\x7c\xa3\xaa\xd8\x0c\x72\x9a\x5d\x9e\x03\xf9\x88\x9c\x6b\x83\x30\xff\xf0\x71\x17\x76\x9f\x41\x4f\x4e\x27\xc3\xb9\xa8\x56\xba\x89\xc1\x62\xc4\xae\x3b\x55\x18\xcb\x60\x07\xf3\xcf\xdb\xa5\x56\x95\x55\x08\xc4\x12\xa1\x0c\x12\xe1\xfc\xea\xf6\x04\xb4\xb5\x8c\x22\x7b\xeb\xdd\xb9\xb4\x39\xb1\xc4\xa3\x3c\x34\xde\x6e\x9d\x4f\x1d\xac\x32\x64\x87\x8f\x27\xdd\xdd\x2e\x23\x6b\x5f\x60\xcb\x49\x84\x0a\x0f\xef\x9a\x05\xb2\xc7\x88\x02\x75\xb0\x8f\x60\x32\x9d\x64\xd3\x6c\x92\x4d\x9e\x4d\x9f\x6f\x31\x11\xe4\x5b\x32\xb8\x97\xcd\x8b\x17\x6f\x7e\x3d\x1b\x7d\x17\xa5\x1e\x4a\xb2\xd1\x87\x12\x61\xda\xca\x06\x77\xe4\x5c\xb2\x0f\x63\x5a\x46\xdb\x1a\xf7\xa6\x59\xa0\xd2\x35\xb5\x9f\xf8\xff\xad\xce\xd3\x49\x2c\xf7\x06\x24\x8f\x5b\x2f\xd9\x28\x91\x19\xad\x95\x3d\x50\x72\x57\xee\xf1\x70\xb9\xf7\x73\xb7\x6b\xce\x4a\x9a\x3c\xa7\x2f\x83\xa7\xf0\x5b\x83\x4c\xd8\x5d\xb4\x6e\xb7\xc0\x1d\xa5\x8b\x53\x22\x74\x71\x2b\xae\xda\xcb\x1d\x32\x5a\x58\x2c\x57\x54\xe1\xac\xe7\x43\x72\x3f\xae\x33\x17\x8c\x76\x30\xc6\xac\xc8\x20\x0f\x21\xeb\x29\x67\x72\x6b\xb2\x8d\x3d\x87\xf0\xfd\x67\xbb\x11\xb8\x55\x2e\xfa\xf4\xab\x18\xeb\xc0\x91\x7c\x31\xd4\x77\x16\x21\xb8\xdd\xf2\xdf\xb4\x91\xd0\x48\x1a\xf4\x81\x41\x7b\xed\x96\x91\x8c\xc0\x0a\xac\x7d\x29\xd4\x12\x19\x75\x25\x30\x9e\x69\x47\x26\x1c\xee\x76\xc5\x5c\x3b\xc1\x41\x5e\xba\x28\x18\x8b\xb6\x4b\x0e\x9e\x41\x4f\x22\x29\xbe\xe6\xb3\x57\x0f\x51\x70\xa1\x97\xc8\x30\xee\x13\x4a\xa2\x14\xb9\xc1\x81\xa6\xb4\x2a\x73\x9d\x5a\xda\xbb\xc9\x6c\xd3\x9a\x0a\xbf\x44\xd6\x2a\x77\xba\x90\x61\x86\x69\x1d\xda\x75\xa8\x53\xcf\x6c\x5b\x88\xa0\xcb\x8f\x52\xe3\x40\xdb\x7a\xfd\x68\x05\x98\xed\x12\xdb\xe9\xfb\xbb\x13\xe5\x81\x9e\x25\x69\x95\x4b\x19\x54\x97\x41\xa5\x0c\x0e\xe3\x20\xbf\xb3\x6e\x7f\x67\x5a\x74\x39\xac\xb1\x72\x18\x81\xbc\x44\xed\x5c\x67\xdd\x3e\xf5\x1e\xed\xba\xc9\x86\x1c\x29\x27\xa3\x23\x6e\xbe\x67\x91\xa3\xa8\x5b\xed\xc8\x52\x5c\xaa\x1a\x99\x82\x55\x65\x68\x78\x58\xb7\x4f\xfd\xce\xf4\x88\xd0\xce\xb5\xfc\xcc\x1a\x76\x9a\xf1\x5d\xf4\xf7\x8e\x81\xd3\x1f\x9f\x4f\xb6\x4d\x66\x78\x59\x47\x95\x9a\x6d\x64\x9d\xe7\x64\xbe\xe5\x32\xf2\x47\xf7\xcf\xea\x3a\x4d\x82\x2e\x02\x7a\x14\x0a\x7e\xe0\xec\x06\x4d\x35\xe0\xf7\x34\x8e\x90\xd5\x22\x84\x28\x91\x75\xad\x62\xb8\x41\x3f\x2c\xcd\x05\x49\x4c\xb2\xb4\x5b\x8e\xc8\x82\xf6\xb6\xff\xa7\x1b\xb9\x69\x11\xb5\x29\x21\x3d\x26\xf7\x19\x4a\xfb\xe5\xe1\xe0\x9d\x8b\x4e\x1e\x78\x7c\x4b\x8f\x0f\x17\xd7\xf0\xfa\x7e\x63\xdb\x06\xdf\x75\xa6\xd9\xa7\xc3\xd7\xd1\xdf\x01\x00\x00\xff\xff\x93\x39\x30\xa4\xef\x0c\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 231, + uncompressedSize: 371, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xc1\x0a\xc2\x30\x10\x04\xd0\xfb\x7e\xc5\x50\xef\xa1\xad\xe0\xad\x7e\x85\x77\x89\x66\x95\x85\x34\xa9\xdb\x34\x17\xe9\xbf\x4b\x0d\x11\xe9\xde\xf6\x31\x33\x07\x5c\x58\xd5\x3e\xa2\x8e\xc8\xac\xb3\xc4\x00\x1b\x1c\x26\xbf\x3c\x25\x54\x9a\x89\xd2\x2f\xf6\x26\x40\xf9\xb5\x88\xb2\xbb\xd6\xce\x80\xe6\x3c\xa0\x35\x5d\x6f\xda\x86\xfe\x13\x93\xc6\x2c\x8e\x75\xfe\x16\x81\x7b\x42\xb9\x01\x4d\x6b\x4e\x5b\x7c\xfb\xc2\xe2\x7d\xe5\xde\x74\xa6\x2f\x9c\x78\x9c\xbc\x4d\xbc\x63\x2f\xb7\x2c\x9a\xf6\x23\x6a\x83\x8b\x63\x1d\x39\x16\x5e\x69\xa5\x4f\x00\x00\x00\xff\xff\xfc\xf6\xe4\x8e\xe7\x00\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8d\xcd\x4a\x43\x31\x10\x85\xf7\x79\x8a\x21\xee\x93\x7b\x5b\x70\x21\xc4\xa7\x70\x2f\x31\x19\x65\x20\x3f\xb7\x93\x1f\x90\x72\xdf\x5d\xd2\x36\x52\x45\xb3\x09\x7c\xe7\x9c\x6f\x1e\xe0\x05\x99\xed\x7b\xe6\x08\x1d\xb9\x50\x4e\x60\x93\x87\x2d\xb4\x0f\x4a\x13\x15\x21\xea\x77\xed\x2c\x00\x18\x4f\x8d\x18\xfd\xeb\xdc\x18\x90\xcf\x06\x16\xb5\x1e\xa5\xb8\xcf\x37\xce\x9d\x3c\x72\x81\xf3\xe0\x00\xae\x82\xb9\x28\xc6\x2b\xb9\xb1\x43\x18\xeb\x2d\x17\x24\x9f\x93\x76\x55\xde\xd2\x3b\xf7\xa2\x1e\xd5\x7a\xe5\xfb\xd5\x13\xe8\xad\x13\xff\x21\x33\x20\x7d\xb4\xae\x93\xb3\xac\x6f\xad\x69\x6c\x4c\x97\xdf\x80\x3c\x61\x6c\x4f\x5a\xeb\xf2\x59\x2a\xc6\x7f\x4e\x1e\x7e\x9c\x4c\x2d\x84\x39\x3f\xa8\x75\xa6\x15\xe3\x16\x6c\xc5\x5f\x98\x6d\xf2\x39\xce\xf6\x51\x2d\x03\xef\x62\x17\x5f\x01\x00\x00\xff\xff\x2d\xd1\xb4\x05\x73\x01\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers": &vfsgen۰DirInfo{ name: "workers", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, + "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/bootstrap-configs.tf": &vfsgen۰CompressedFileInfo{ + name: "bootstrap-configs.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 620, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x7a\xd1\xcb\xd2\x5e\x3c\x14\x96\x1e\x7d\x08\x91\x30\xcd\x8e\x6d\xe8\x98\x84\xc9\x44\x29\xa5\xef\x2e\xdd\x15\xb5\x0a\x5a\xc1\x5b\x08\xdf\x9f\xf9\x7d\x92\x03\x49\xc5\xc1\x01\x2f\x59\x77\xac\x7e\x9d\xb3\x55\x53\x2a\xde\xf2\x8e\x13\x7a\x3c\x93\x76\x9c\x68\x2d\xec\x4d\xea\x87\x00\xab\xd1\x07\x8c\x42\x1f\x87\xd3\x1b\x3d\x94\xd2\x90\x9f\x7c\x35\x8d\x69\xd3\x7d\xc9\xf3\x71\xb8\x9f\x3f\x74\xca\xb5\x89\x7d\x72\x57\x0e\xca\xf6\xab\x7b\x92\x9d\x25\x1c\xb1\xc4\xe1\xe8\x8e\xce\x5d\xe1\x8e\x13\x2b\x19\x83\x10\x74\x5f\x2c\x6f\x94\xca\x36\x06\x12\xd9\xbf\x25\x4f\x7d\x88\x03\xae\x4b\x5b\x4b\x0c\x37\x9d\x53\xae\xb9\x69\xe0\xf3\x72\xcc\xbe\xdf\x3e\x1b\x91\x43\x6e\xc9\x7e\x5a\xa6\xef\x61\xda\x18\x2b\x2c\xb0\xc4\xdc\x39\x40\x38\x6d\x6c\x7b\xda\xe7\xd6\x01\xad\x14\xd6\x71\xad\x47\x92\xca\x0e\xa8\x85\x43\x24\x79\xff\xf9\x23\xcf\x34\xcc\xe5\x28\x93\xfe\x3f\x70\x16\x97\xf2\xbc\x06\x00\x00\xff\xff\x02\xc5\x26\xca\x6c\x02\x00\x00"), + }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl": &vfsgen۰DirInfo{ name: "cl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, + "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/bootstrap-kubeconfig.yaml.tmpl": &vfsgen۰CompressedFileInfo{ + name: "bootstrap-kubeconfig.yaml.tmpl", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 256, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbb\xae\xc2\x30\x0c\x86\x77\x3f\x85\x87\xb3\xf6\x48\xac\x59\x79\x07\xd6\xca\xa4\x2e\x58\x0d\x09\x72\x9c\x0a\x84\xf2\xee\x28\xbd\x49\x6c\x9f\xec\xff\x46\x4f\xb9\xb0\x66\x49\xd1\xe1\x7c\x82\x49\xe2\xe0\xf0\x9c\xe2\x28\x37\xf0\xa1\x64\x63\xcd\x0e\x3a\x8c\xf4\x60\x87\x21\x79\x0a\x80\xb8\x7d\x1c\x20\x22\x66\xd6\x99\xd5\xe1\xdf\x67\xa5\xba\x5c\x3d\xab\xc9\x28\x9e\x8c\x3b\x2a\x76\x4f\x2a\xf6\xee\x06\x32\x6a\x4a\x4f\x7d\x13\x54\x28\xf9\xa7\x60\x2a\x57\x0e\x6c\x80\xd8\x1e\x6b\xbe\xa5\x89\x63\x33\x2d\xd0\xcb\x50\xff\x77\xce\xec\x95\xad\x82\x4f\xd1\xf8\x65\x4b\xd0\xc6\xab\x77\x1f\x7a\x2c\xdf\x82\x8f\xa2\x6f\x00\x00\x00\xff\xff\xfc\xe8\x45\xb8\x00\x01\x00\x00"), + }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "worker.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5657, + uncompressedSize: 6069, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6d\x6f\xdb\xbe\x11\x7f\x9f\x4f\x71\x75\x0d\xb8\x05\x4a\xab\xd9\xb2\xae\xf3\xaa\x02\x49\xe3\x16\x45\xb2\x76\xc8\xc3\xfa\x22\x4b\x0d\x9a\x3a\xd9\x84\x25\x52\x25\x4f\x76\x3c\x37\xdf\x7d\xa0\x24\xcb\xb2\x24\x3b\xc9\xd6\xe2\xff\x4e\x3a\xdd\xc3\x8f\x77\xc7\x7b\x10\x63\xec\xc0\x2e\x2d\x61\x1c\x0c\x0e\x00\x52\x25\xc9\xba\x07\x00\x06\x8a\xc7\x38\x80\x40\x8b\x19\x9a\xbe\x45\x33\x97\x02\xb3\x4f\x00\xa8\xf8\x38\xc2\x01\x90\x49\x71\x8b\x5b\x5a\x61\x65\xf0\x10\xf7\x9a\x14\xb4\x68\x88\xb4\x98\xd9\x58\xd2\xb4\xae\x25\xe6\x76\xd6\xc2\xbf\xe0\x92\x58\xa8\x0d\x0b\x94\x7d\xd8\xae\xd0\x8a\x50\x91\x1d\xc0\xcf\x82\x02\x70\x73\xad\x24\xdd\x96\xaf\xa7\x68\x85\x91\x09\x49\xad\xfc\x6f\x5c\x12\x84\xda\xc0\xe9\x97\x4b\x40\x45\x46\xa2\x2d\x19\xbf\x71\x45\xd6\x2f\xbc\xc7\x0c\x5a\x1d\xcd\xb1\x8e\x1a\xe0\x04\x43\x6d\xd0\x9f\xa5\x63\x8c\x90\x1a\x9f\x6f\x2e\x73\xc2\x06\xc0\xd5\x32\x41\x5f\x2b\xb4\x53\x4d\x25\xf1\x02\x63\x2e\xd5\x71\x48\x68\x86\x77\x92\xfc\xca\x99\x00\x86\x77\x28\x2e\x89\x1b\xf2\xbd\xb1\x54\x9e\x9d\x02\x13\xd0\x5b\x4c\x65\x84\xf0\x0c\xbc\xd4\x9a\x8c\x3e\x31\x98\x40\xef\xfb\xcd\xf7\xe7\x37\x03\x9b\x70\x81\x83\xdb\xdb\x1e\x78\x48\xc2\xcb\xd1\xf7\x85\x56\x21\xbc\x07\x2f\xc0\xb9\xa7\xd2\x28\xfa\x3b\x04\x1a\x6c\x84\x98\xc0\xa1\x7b\x56\xd8\xdb\x00\xff\xac\x2c\xf1\x28\xba\xad\x60\xfc\x91\x4a\x83\xc1\xc9\xb2\xf5\xb4\xeb\x88\xb5\x7b\xe2\xff\x0f\xd6\x59\xae\xb7\x16\x1f\x93\x08\x66\x89\x53\x33\x30\x4d\xcf\x0f\xd5\x5c\x1a\xad\x62\x54\xf4\x51\x46\xe8\x67\xae\x71\x70\x8d\x42\x42\xeb\xad\x91\xa3\x9a\xb7\xc9\xf8\x9d\x8b\xb3\xab\xd1\xc5\xf5\x97\xd1\xf1\xc5\xa7\x4b\x9f\xb1\x34\x95\x01\x0b\x65\x84\xcc\xf2\x39\xfa\xde\x9c\x1b\x4f\x70\x31\xc5\xb5\x26\x96\xe8\xa0\xef\xb8\xe0\xdf\xa5\x42\x00\xc6\xe6\x3a\x4a\x63\xf4\xf3\xa8\xbc\x9a\x49\x15\xf8\x53\x6d\xe9\x95\xd5\xa9\x11\x05\xae\x6a\xc8\xb6\xa5\x63\x9d\x2a\x82\x6d\x1d\xc4\xcd\x04\xe9\x21\xc9\x5c\x06\xe6\xdc\xb0\x48\x8e\x99\x50\xb2\xc5\xb8\x3b\x45\x24\xc7\x9e\x50\x72\x9f\xe1\xaa\x92\xb5\xf5\xdd\xa2\x75\xcb\x3c\x92\x42\xef\x33\x9e\x31\x3c\xca\x7e\xae\xaa\x01\xa1\x4d\x41\x81\x42\x27\xe4\x60\xb3\xb1\x54\x2d\x10\x74\x42\xee\x00\xee\x4a\xed\xb3\x5f\x55\xb2\x36\xbe\x5b\xb4\x7a\x7e\x3d\xd9\x75\x70\x3d\x79\xf0\xc4\x7a\xb2\x7d\xd4\x86\x48\x61\x09\x49\x64\xf0\x14\x52\xb0\x23\xc3\x1c\x52\x85\xd4\xaf\x67\xe7\x96\xd1\x2d\x3d\xd5\x2c\xdb\x25\x5d\xd8\xcf\x3a\x05\x0f\xe2\x16\xdb\xae\x5e\x59\x57\xb0\xd6\x3c\xfb\xec\x97\x7a\xd6\xb6\x1f\x92\x96\xca\xa2\x48\x0d\x32\x9d\x95\x0d\xeb\xcb\x98\x4f\xb0\xd3\x2c\xa6\xff\x34\x98\xd7\xd3\x78\x16\x48\x03\x2c\x81\x6a\xfc\x1e\xc5\x5f\xab\x1f\x31\x57\x32\x44\x4b\xf6\xd1\xc2\xa5\x13\x1f\x25\x51\xb9\x5e\x4f\xe3\xcf\xee\xc2\x93\x44\x8a\x02\xe6\xe5\x51\x48\xa2\x74\x22\xd5\xae\x63\xad\xfb\xcf\x98\xe7\x9d\xa9\x93\x37\x22\x81\x86\x64\x28\x05\x27\x64\x3c\xa5\xa9\x36\x92\x96\x2c\xe0\xc4\x7b\x0d\xcf\xb9\x47\x57\xaf\xe4\x04\x7e\x02\x5f\xcc\xa0\xb7\x4a\x8c\x54\x04\xdd\x3f\xdd\xf7\xe0\x27\x8c\xb9\xc5\x37\x47\xc0\x02\xd7\xbd\x6a\xb2\x82\xf7\x85\xa1\x5d\x01\xae\x33\x67\x46\x5c\x7a\xac\x4b\xb4\x98\x18\x9d\x26\x2c\x30\x72\x8e\xa6\x5d\x09\x2b\x8f\x68\x66\x04\x26\x86\x4a\xe9\xdf\x57\xf5\xdb\x1a\xb8\xd3\x94\xc5\x44\x1b\xd4\x65\xcb\x61\x0b\xc3\x93\x04\x4d\x2d\x97\xb9\xd2\x6a\x19\xeb\xd4\x66\x0e\xf4\x43\x1e\x59\xac\xb3\xa4\x34\x45\x45\xce\xcd\x52\x2b\x46\x7a\x86\x8a\x2d\x70\x3c\xd5\x7a\xd6\xc2\xaa\x8d\xfc\x4f\xce\x19\xeb\x00\xfd\x6f\xad\x8c\x22\x92\xa8\x88\x09\x5e\x9c\xb0\xd5\xe1\x0d\x99\xd4\x12\x9a\x51\xa0\xac\xdf\x5d\x55\xde\x46\x45\x5f\x1e\xc9\xe4\x7e\x97\x8c\x76\xc3\x4f\x55\x2c\x23\x8c\x6c\x1a\x86\xf2\xae\x2e\xe5\x6a\x89\x9b\x34\x98\x9e\xa3\x31\x32\x40\xbf\xbb\x2a\x04\x1c\xb9\x61\x44\x49\xe6\xa2\xce\x02\x69\xf6\x57\xae\x3c\x37\x76\x4e\x05\x45\x7e\x6e\xcb\xe0\x9d\x24\xa6\x15\x73\x63\x2d\x2b\x06\x1a\xa9\xeb\xd5\x7f\x93\xde\xad\xda\x5b\x35\x67\x1a\x37\x19\x66\x52\xe5\x39\x52\x09\xc7\xbd\xd4\x44\x14\xd2\x42\x9b\x19\xcb\xaf\xab\xdf\xec\xc2\x4a\x07\xc8\x22\x3e\xc6\xc8\xfa\xdd\xee\xea\xcb\xd7\xd3\xe1\xe8\xfc\xf8\x64\x78\x7e\x59\xf7\x5a\xa2\x03\xb6\x2e\x67\x2c\xe1\x34\x6d\x00\x2f\x8b\x5d\x4d\xd2\x20\x0f\x98\x56\xd1\x92\x25\xda\x90\xff\xba\xb5\x3d\x14\x10\xf3\x98\x3c\xa5\xe6\xe8\xa4\x76\x1b\x2d\xe9\xe4\xc9\xf7\xf1\x02\x6d\x76\x1b\x79\xb4\xe0\x4b\x5b\x27\x5f\xa2\xf0\xff\xb2\x67\x0e\x76\x83\x67\x36\x05\xc7\x69\x44\x92\xa5\x16\x4d\x3f\xef\x4e\xdb\x9b\x95\xb3\x8d\x99\xcf\x7f\xcb\xe2\x22\xd5\x04\x48\x17\x66\xe0\xac\x8c\x0c\x38\x8b\xa0\x15\xd8\x69\x4a\x81\x5e\xa8\xdf\xb9\x8b\xb4\x7c\xd3\x49\x23\x57\x2a\xae\xf8\xdf\xfc\x6a\x49\x1b\x3e\x41\xb7\xba\xba\x20\x97\x3b\xac\xcb\xcc\xc1\x9e\x6e\x52\xe8\xce\x64\xb2\x45\x6e\x00\x46\x97\x47\x75\x25\x70\x00\xaf\xdf\x1c\x1d\xd5\xa3\x50\x62\x92\x2a\x92\x0a\xab\x51\x01\xe8\xae\x36\x06\xee\x1f\x04\xb2\xbd\x50\xfc\x5a\x24\x67\xd7\x27\xc3\xf3\xe1\xd5\xe8\xf3\x3f\x8e\x3f\x0d\x47\xd7\x17\xe7\x7e\xbe\xce\x0f\x3c\xef\x47\xca\x97\x7d\xa9\xbd\x44\x5b\x94\x81\x56\x6b\x2c\x3b\xa5\xaf\x8e\x3f\xf9\xf3\xc3\xfe\xe1\xdf\xfa\x7f\xde\xc9\x93\xed\x3d\x1d\x57\xf5\x50\x14\xad\x4c\x0b\x1e\x65\x99\x50\xe8\xef\x54\x84\x2b\xf5\xc5\xef\x64\xf7\x60\xe3\x1b\x87\xcd\x91\x3a\x4d\x07\xda\xa5\x15\x14\xf5\x03\x2f\xe6\x77\x59\x16\xb0\x05\x27\x31\x45\x9b\x95\xe0\xfd\x8e\x7c\x9c\xdf\x42\xdb\x97\x4a\x93\x0c\x97\xfd\x98\xdf\x8d\x9c\x8d\x51\x61\xc3\x3f\x7c\x73\xf8\xf6\xa8\x09\x6a\xdd\x75\x7e\x55\x1c\xb7\xf2\xa9\xda\xbe\xf6\x26\xd4\xe3\xc6\x97\xfd\xe0\xfe\xfa\xc4\x24\x7b\xfe\xac\x9c\xee\x2a\x54\x8b\x04\x0c\x2b\x04\x57\xf7\x5d\xd9\x2f\xfe\x28\x8d\x72\x60\xa3\x1c\x98\xdf\xe9\xbe\xc8\xe9\x20\x55\xa8\x81\x85\xd0\x5b\xad\xfa\x1f\x32\x9e\xd3\x8c\xe5\xfe\xbe\xf7\xb2\x9a\x3c\x82\x13\xbc\x7b\x37\xfc\xfa\x11\xde\xef\xef\xc8\x15\x19\x9e\xc8\x7f\xa1\xb1\x52\xab\xcd\x6f\x88\x9c\xa9\x3f\x7b\x9b\xa5\xdc\xfc\x70\x8c\xc4\x0f\x2b\x32\x6e\x3f\x19\x40\xf1\x73\xe1\x43\xe1\xdf\x6c\x44\xaa\x82\xa9\x00\x1d\x40\xa7\xeb\x42\xd6\x3c\xe5\x7d\x15\xff\xf0\xeb\xc7\xbd\xa1\x6c\xd6\xc4\x3f\x24\x6c\xee\x2a\xc3\xf6\x7c\x9b\x6e\x8f\x2f\xae\x6b\x93\x49\x2d\xb1\x19\x2e\x2d\x0b\x8d\x8e\xd9\x94\x28\xb1\x0d\xae\x62\xf5\xcb\x3d\xbe\x63\xe9\xdc\x78\xa0\x21\xbe\xb5\xf7\x15\x4a\xaa\x1b\xe7\x1e\xd1\xf6\xa5\xaf\xc6\xf6\x60\x6d\x1c\x14\xf5\xaf\xa1\x5e\x21\x65\x27\x69\x7c\x70\xd3\x6e\xeb\x87\x1a\x21\x6b\x18\x14\x3d\x7a\x14\x2c\x9a\x7a\xd6\xc9\xbb\x2f\xd6\xb5\xe7\xe5\x41\xc2\xad\x5d\xe4\xbf\x72\x2d\x9a\xda\xaf\x5c\xb7\x52\x14\x56\xad\x9d\x8e\xd6\xe3\x3e\x06\x23\x17\xb8\x01\x74\x57\x8e\xec\x9e\xef\x0f\xfe\x1b\x00\x00\xff\xff\x23\xff\x37\x14\x19\x16\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xeb\x8f\xdb\xc6\x11\xff\xee\xbf\x62\xa2\xa8\x50\x02\x64\xa5\x5c\xeb\xba\xa9\x1a\x06\x38\xc7\xb2\x11\xd8\xb5\x8b\x3b\xbb\xfe\xe0\x5e\x88\xd5\x72\x28\x2d\x44\xee\x30\xbb\x43\xe9\x54\xf9\xf2\xb7\x17\x4b\x52\x3a\xbe\xa4\xd3\xb5\x09\xfa\x8d\x5c\xce\xe3\x37\x8f\x9d\x07\x85\x10\x4f\xdc\xd6\x31\xa6\xd1\xf4\x09\x40\x6e\x34\x3b\xff\x00\x20\xc0\xc8\x14\xa7\x10\x91\x5a\xa1\x1d\x3b\xb4\x6b\xad\xb0\xf8\x04\x80\x46\xce\x13\x9c\x02\xdb\x1c\x1b\xd4\xda\x29\xa7\xa3\x87\xa8\xf7\x47\x51\x8f\x84\x84\xd4\xca\xa5\x9a\x97\x6d\x29\xa9\x74\xab\x1e\xfa\x8d\xd4\x2c\x62\xb2\x22\x32\xee\x61\xbd\x8a\x0c\xa3\x61\x37\x85\xcf\xd5\x09\xc0\xa7\x0f\x46\xf3\xcd\xe1\xf5\x05\x3a\x65\x75\xc6\x9a\x4c\xf0\x51\x6a\x86\x98\x2c\xbc\x78\x7b\x0d\x68\xd8\x6a\x74\x07\xc2\x8f\xd2\xb0\x0b\x2a\xef\x09\x8b\x8e\x92\x35\xb6\x51\x03\x3c\xc7\x98\x2c\x06\xab\x7c\x8e\x09\x72\xe7\xf3\xa7\xeb\xf2\xe0\x1e\xc0\xfb\x6d\x86\x01\x19\x74\x4b\xe2\xc3\xe1\x15\xa6\x52\x9b\xcb\x98\xd1\xce\x6e\x35\x07\x35\x9b\x00\x66\xb7\xa8\xae\x59\x5a\x0e\x26\x73\x6d\x26\x6e\x09\x42\xc1\x68\xb3\xd4\x09\xc2\x17\x30\xc9\x9d\x2d\xce\x17\x16\x33\x18\xfd\xfc\xe9\xe7\x2f\x3f\x4d\x5d\x26\x15\x4e\x6f\x6e\x46\x30\x41\x56\x93\x12\xfd\x58\x91\x89\xe1\x07\x98\x44\xb8\x9e\x98\x3c\x49\xfe\x06\x11\x81\x4b\x10\x33\xb8\xf0\xcf\x06\x47\xf7\xc0\x7f\x32\x8e\x65\x92\xdc\xd4\x30\xfe\x92\x6b\x8b\xd1\xf3\x6d\xaf\xb5\xfb\x88\xf5\x7b\xe2\x7f\x0f\xd6\xeb\x52\x6e\x2b\x3e\x36\x53\xc2\xb1\xe4\x6e\x60\xba\x9e\x9f\x99\xb5\xb6\x64\x52\x34\xfc\x52\x27\x18\x14\xae\xf1\x70\xad\x41\x46\x37\xd9\x23\x47\xb3\xee\xe3\x09\x06\x57\xaf\xdf\x87\x57\x1f\xde\x86\x97\x57\xaf\xae\x03\x21\xf2\x5c\x47\x22\xd6\x09\x0a\x27\xd7\x18\x4c\xd6\xd2\x4e\x94\x54\x4b\xdc\x4b\x12\x19\x45\x63\x4f\x05\xff\x3a\x08\x04\x10\x62\x4d\x49\x9e\x62\x50\x46\xe5\x9b\x95\x36\x51\xb0\x24\xc7\xdf\x38\xca\xad\xaa\x70\xd5\x43\xd6\xe4\x4e\x29\x37\x0c\x4d\x19\x2c\xed\x02\xf9\x21\xce\x92\x07\xd6\xd2\x8a\x44\xcf\x85\x32\xba\x47\xb9\xb7\x22\xd1\xf3\x89\x32\xfa\x94\xe2\xba\x90\xbd\xf6\xe3\xac\x6d\xcd\x32\xd1\x8a\x4e\x29\x2f\x08\xce\xd2\x5f\x8a\xea\x40\xe8\x13\x50\xa1\xa0\x8c\x3d\x6c\x31\xd7\xa6\x07\x02\x65\xec\x0d\xf0\x57\xea\x94\xfe\xba\x90\xbd\xf2\xe3\xac\x75\xfb\x69\x71\xcc\x70\x5a\x3c\x68\x31\x2d\x9a\xa6\x76\x58\x2a\x4d\xc8\xaa\x80\x67\x90\xa3\x23\x19\xe6\x91\x1a\xe4\x71\x3b\x3b\x1b\x4a\x1b\x72\xea\x59\x76\x8c\xbb\xd2\x5f\x74\x0a\x19\xa5\x3d\xba\x7d\xbd\x72\xbe\x60\xed\x69\x4e\xe9\x3f\xc8\xd9\xeb\x7e\x88\x5b\x1b\x87\x2a\xb7\x28\xa8\x28\x1b\x2e\xd0\xa9\x5c\xe0\xa0\x5b\x4c\xff\x61\xb1\xac\xa7\xe9\x2a\xd2\x16\x44\x06\xf5\xf8\x9d\x45\xdf\xaa\x1f\xa9\x34\x3a\x46\xc7\xee\x6c\xe6\x83\x13\xcf\xe2\xa8\x5d\xaf\xc7\xd1\x17\x77\xe1\x51\x2c\x55\x01\x9b\x94\x51\xc8\x92\x7c\xa1\xcd\x31\xb3\xf6\xfd\x67\x2e\xcb\xce\x34\x28\x1b\x91\x42\xcb\x3a\xd6\x4a\x32\x0a\x99\xf3\x92\xac\xe6\xad\x88\x24\xcb\x51\xc7\x73\xfe\xd1\xd7\x2b\xbd\x80\xcf\x20\x37\x2b\x18\xed\x32\xab\x0d\xc3\xf0\x8f\x77\x23\xf8\x0c\x73\xe9\xf0\xd9\x53\x10\x91\xef\x5e\x2d\x5e\x25\xc7\xca\xf2\xb1\x00\xb7\x89\x0b\x25\x3e\x3d\xf6\x25\x5a\x2d\x2c\xe5\x99\x88\xac\x5e\xa3\xed\x17\x22\x0e\x26\xda\x15\x83\x4d\xa1\x56\xfa\x4f\x55\xfd\xbe\x06\xee\x25\x15\x31\x21\x8b\x74\x68\x39\x62\x63\x65\x96\xa1\x6d\xe5\xb2\x34\x64\xb6\x29\xe5\xae\x70\x60\x10\xcb\xc4\x61\x9b\x24\xe7\x25\x1a\xf6\x6e\xd6\x64\x04\xd3\x0a\x8d\xd8\xe0\x7c\x49\xb4\xea\x21\x25\xab\xff\x5d\x52\xa6\x14\x61\xf0\xb1\x97\x50\x25\x1a\x0d\x0b\x25\x2b\x0b\x7b\x1d\xde\xe1\xc9\x1d\xa3\x0d\x23\xe3\x82\xe1\xae\xf6\x16\x56\x7d\x39\xd4\xd9\xdd\x31\x1e\xf2\xc3\x4f\x9d\xad\x38\x08\x5d\x1e\xc7\xfa\xb6\xcd\xe5\x6b\x89\x9f\x34\x04\xad\xd1\x5a\x1d\x61\x30\xdc\x55\x0c\xfe\xb8\xa3\xc4\x68\xe1\xa3\x2e\x22\x6d\x4f\x57\xae\x32\x37\x8e\x4e\x05\x55\x7e\x36\x79\xf0\x56\xb3\x20\x23\xfc\x58\x2b\xaa\x81\x46\x53\xb3\xfa\xff\x61\xf7\x2b\xe8\xb8\x9a\x80\x42\x4e\x5c\x38\x27\x62\xc7\x56\x66\xf0\xeb\x5d\x43\xdc\xfd\x3d\x08\x3a\x57\xb1\x76\x47\x9a\x18\x0e\xd2\x1a\xec\xc7\x6f\x58\x93\xdb\x12\xfb\x1b\x5a\xbb\xad\xae\x83\x1e\x7d\xde\x9d\x80\x7a\x9e\xae\x42\x92\x89\x74\xdc\x16\x55\x38\xef\xfe\x32\xd9\xdc\x4c\xfc\xd1\xc1\xf3\xfe\xa5\x85\xda\x20\x6f\xc8\xae\x44\x59\x99\x82\xee\xc0\x61\x28\x42\x91\xc8\x39\x26\x2e\x18\x0e\x77\x6f\xdf\xbd\x98\x85\x6f\x2e\x9f\xcf\xde\x5c\xb7\x13\x24\xa3\x48\xec\x2b\xb7\xc8\x24\x2f\x3b\xf6\x1c\xea\x7a\xdb\x75\x28\x23\x41\x26\xd9\x8a\x8c\x2c\x07\xdf\xf6\x76\xc2\x0a\x62\x99\x7e\x8f\x29\xaf\x94\xb5\x0a\x8f\x63\xca\x1e\x5d\x7a\xae\xd0\x15\x85\x47\x26\x1b\xb9\x75\xed\xe3\x6b\x54\xc1\x9f\x4f\x8c\xfc\x7e\xc6\x2e\x06\xfe\x34\x4f\x58\x8b\xdc\xa1\x1d\x97\x8d\xb8\xb9\x44\x7a\xdd\x58\xf8\xfc\x77\xd9\xd1\xb4\x59\x00\x53\xa5\x06\x5e\x1f\x22\x03\x5e\x23\x90\x01\xb7\xcc\x39\xa2\x8d\xf9\x3d\xd7\xae\x9e\x6f\x94\x75\x72\xa5\xe6\x8a\xff\xce\xaf\x8e\xc9\xca\x05\xfa\x2d\xdd\x07\xf9\xb0\xae\xfb\xcc\x9c\x9e\x68\x9c\x95\xec\x82\xa7\xd8\x59\xa7\x60\xe9\x60\xaa\xaf\xf6\x53\xf8\xf6\xd9\xd3\xa7\xed\x28\x1c\x30\x69\x93\x68\x83\xf5\xa8\x00\x0c\x77\xf7\x0a\xee\x1e\x04\xd2\xdc\x9d\x7e\x5b\x24\xaf\x3f\x3c\x9f\xbd\x99\xbd\x0f\x7f\xfa\xfb\xe5\xab\x59\xf8\xe1\xea\x4d\x50\xfe\xb9\x98\x4e\x26\xbf\xe4\x72\x3b\xd6\x34\xc9\xc8\xa1\x8e\xc8\xec\xb1\x1c\xe5\x7e\x7f\xf9\x2a\x58\x5f\x8c\x2f\xfe\x3a\xfe\xd3\x51\x9a\x62\xc5\x1b\xf8\x02\x8f\xaa\xea\xda\xa4\x64\x52\x64\x42\x25\x7f\x50\x63\xae\xd5\x97\x60\x50\xdc\x83\x7b\xdf\x78\x6c\xfe\x68\xd0\x75\xa0\xdb\x3a\xc5\xc9\x38\x9a\xa4\xf2\xb6\xc8\x02\xb1\x91\xac\x96\xe8\x8a\x6e\x73\xda\x91\xe7\xf9\x2d\x76\x63\x6d\x88\x75\xbc\x1d\xa7\xf2\x36\xf4\x3a\xc2\x4a\x47\x70\xf1\xec\xe2\xbb\xa7\x5d\x50\xfb\x06\xfb\x5b\xc5\xb1\x91\x4f\xf5\x4e\x7d\x32\xa1\xce\x9b\xd4\x4e\x83\xfb\xcb\x23\x93\xec\xcb\x2f\x0e\x83\x6c\xed\xd4\x21\x83\xc0\xda\x81\xaf\xfb\xbe\xec\x57\x3f\xcf\xc2\x12\x58\x58\x02\x0b\x06\xc3\xaf\xca\x73\xd0\x26\x26\x10\x31\x8c\x76\xbb\xf1\x8f\x05\xcd\x8b\x82\xe4\xee\x6e\xf4\x75\x3d\x79\x94\x64\xf8\xfe\xfb\xd9\xbb\x97\xf0\xc3\xe9\xe1\xa3\xc6\x23\x33\xfd\x4f\xb4\x4e\x93\xb9\xff\xe3\x52\x12\x8d\x57\xdf\x15\x29\xb7\xbe\x98\x23\xcb\x8b\x1a\x8f\x5f\xc5\xa6\x50\xfd\x47\xf9\xb1\xf2\x6f\x31\x0d\xd6\xc1\xd4\x80\x4e\x61\x30\xf4\x21\xeb\x5a\x79\x57\xc7\x3f\x7b\xf7\xf2\x64\x28\xbb\x35\xf1\xff\x12\x36\x7f\x95\xa1\x39\xca\xe7\xcd\x49\xcd\x77\x6d\xb6\xb9\x63\xb1\xc2\xad\x13\xb1\xa5\x54\x2c\x99\x33\xd7\xa1\xaa\xb6\xdc\xd2\xe3\x47\xf6\xeb\x7b\x0f\x74\xd8\x1b\x2b\x6e\x25\xa4\xbe\x5c\x9f\x60\xed\xdf\x6f\x5b\x64\x0f\xd6\xc6\x69\x55\xff\x3a\xe2\x0d\x72\x61\x49\xe7\x83\x1f\xec\x7b\x3f\xb4\x0e\xce\x9e\x76\xa1\xc8\x5b\xc5\xc9\xf9\x73\x6f\x35\x00\x14\x5d\x7f\xf8\xd5\xbe\x4e\x7d\xdd\xd1\xdf\x9d\x57\x8f\x29\x3b\x3e\xb9\x9e\xad\x6b\x3f\xd1\x66\xd2\xb9\x4d\xf9\x9b\xdd\xa1\x6d\xfd\x66\xf7\xeb\x5e\xc5\xea\xdc\x32\xdc\xaf\x62\x18\x85\x3e\xd3\xa6\x30\xdc\xf9\x63\xff\x7c\xf7\xe4\x3f\x01\x00\x00\xff\xff\xc0\xab\x3f\xa3\xb5\x17\x00\x00"), + }, + "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/outputs.tf": &vfsgen۰FileInfo{ + name: "outputs.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + content: []byte("\x6f\x75\x74\x70\x75\x74\x20\x22\x77\x6f\x72\x6b\x65\x72\x5f\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x5f\x74\x6f\x6b\x65\x6e\x22\x20\x7b\x0a\x20\x20\x76\x61\x6c\x75\x65\x20\x3d\x20\x6c\x6f\x63\x61\x6c\x2e\x77\x6f\x72\x6b\x65\x72\x5f\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x5f\x74\x6f\x6b\x65\x6e\x0a\x7d\x0a"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2002, + uncompressedSize: 2359, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x5d\x6f\xe3\x36\x10\x7c\xd7\xaf\x18\x38\x28\x92\x00\x89\x6a\x07\x87\xa2\x28\xce\x0f\xad\x53\xa0\x41\x9b\x26\xbd\xcb\xf5\xa5\x28\x64\x4a\x5a\xd9\x8b\x50\xa4\xca\x25\xe5\x73\x0e\xd7\xdf\x5e\x50\x52\x52\x7f\x05\x6d\x82\xf3\x93\x41\x71\x66\x76\x76\x67\x79\x84\x99\x0e\xe2\xc9\x25\x49\xab\x1c\xab\x5c\x13\x46\x45\x7f\x94\x19\x55\xd3\x08\x9f\x12\xc0\xaf\x1b\xc2\xf0\x9b\x42\xbc\x63\xb3\x48\x80\x92\xa4\x70\xdc\x78\xb6\x06\x53\x8c\x3e\x18\xfe\x2b\x10\x06\x38\x22\x1c\x27\x8d\xa3\x86\x4c\x49\x25\xbc\x45\x69\x24\x7b\xb0\x86\x4e\x47\xc9\xe7\x4d\xc5\x5a\x15\x4b\x36\x94\x95\xb6\x56\x6c\x5e\xa2\x79\xdd\x23\x31\x20\xb7\x69\x1b\x6b\xf5\x6b\x5d\xac\xac\xbb\x27\x87\x48\x71\xc8\xc9\xd2\x8a\x8f\xc7\xbb\x4e\x7a\x58\x56\xd8\x60\xfc\x21\x55\x13\xea\x9c\x5c\xa7\x5a\xa9\xa0\xfd\x70\x3c\xd9\xaf\xe3\xd7\xee\x26\x6c\x35\x94\x22\x3b\x4a\x2d\x3b\x1f\x94\xce\x8a\x26\xc8\x97\x52\x1a\x38\x31\xbb\xfd\xf0\x9c\x5c\x4d\xb5\x75\xeb\x17\x08\x5e\x8c\xdf\x7c\xbb\xaf\xf9\xfb\xa0\xf4\xee\xfb\x6b\xb0\xc1\xf5\x0f\x9d\xdc\x11\xee\x6e\x2e\x6f\xbe\x43\xcd\x0b\xa7\x3c\xc5\x46\xcf\x3d\xd5\x8d\x56\x9e\x2a\xd6\x34\xc7\x6a\x49\x06\x77\xe4\x9c\xaa\xac\xab\x31\x1f\xa7\x93\x8b\x39\x58\x60\x83\x87\x32\x25\x82\x10\xe6\x9f\xbe\x42\x65\x1d\xfe\xfe\x3c\x4f\x8e\x22\x89\x6a\x2d\x97\x90\x86\x0a\xae\xd6\x6c\x16\x98\x9f\x9f\x1b\x5b\xd2\xb9\x56\x39\x69\x99\x43\x2d\x14\x9b\x9e\xdc\x2f\x09\xad\x72\x91\x93\xea\xc6\xaf\xd3\x8d\x26\xf4\xd7\xff\x23\x4d\x9b\xe6\x47\xa3\x7d\xeb\xb3\x20\xde\xd6\xe8\xb9\xba\xea\x44\x78\x61\xe2\xbf\x21\x74\xb1\x34\x49\x71\xeb\x6c\xcb\x25\xa1\xb0\x75\xad\x20\xd4\xa8\xd8\x94\x12\xf7\xb4\x9e\xb6\x4a\x07\x42\xa3\xd8\x09\x94\x0c\x64\x29\x28\x5d\xa4\x38\xae\xac\x9d\x5a\x5b\x9d\xe5\xca\x4d\xcf\x72\xf5\x30\x7d\x50\xf9\xf1\xce\x3c\x35\xe7\x71\xa4\x31\xdf\x2f\xd9\x8e\x01\x86\xd6\xea\x50\x53\xbf\x1e\x2b\xf6\x4b\xe4\x4a\x08\x5c\xab\x05\x1d\x16\x8a\xdf\xb9\x7c\x89\xd4\xbf\x8c\xe0\xb2\x9b\xe7\x40\xb5\x23\xf0\xf8\x5c\xf5\x4f\x40\x26\xa1\xaa\xf8\x63\x2f\xb4\xc3\xf8\x5b\x20\xc7\x24\x1d\x57\x7f\x5b\xfa\xe2\xe3\xcc\x7b\x1c\x56\xac\x35\x72\x82\x32\xb2\x22\x47\x25\xf2\x35\x0a\xeb\xa8\x34\x92\xe2\x72\x18\x2e\xcb\xe3\x2b\x97\x6a\x5b\x28\x8d\x93\xae\xf1\x95\xb5\xe9\x30\xff\x54\xda\x22\xdd\xba\x73\x8a\xd1\xff\x4e\xcd\x16\x70\xcf\x6e\x91\x89\xe1\xa6\x21\x7f\x30\x89\x9a\xc5\x9f\xf4\xc4\xa7\x07\xc2\x67\x8d\x57\x6c\xc8\xe1\x17\x36\xe1\x23\x66\xd6\x54\xbc\xc0\x13\xe1\x5e\x2d\x7f\xfc\xb9\x2d\x7f\x1f\x72\x2a\x3a\xd0\xc1\x16\xff\xfc\xf4\x19\x71\x61\x9f\xb5\xbc\xc5\x29\xb2\xcc\xee\x69\xfd\x0a\x3b\xef\xdf\xff\x84\x26\xe4\x9a\x8b\xb8\x15\xfd\x64\x83\x90\xc3\x71\x9c\xd9\x6e\xe6\x85\x5c\xcb\x05\x65\x05\x97\xee\x50\xf5\x6f\xdf\xfe\x78\x73\x99\xcc\xae\x2e\xdf\xe1\xea\xb6\x7d\x03\xa7\xcc\x82\x36\x36\x34\x9a\x73\x86\x3c\x09\x06\x2a\x49\x93\xbb\x25\x61\x22\x1e\x57\xb7\x4f\xd9\x71\x14\x3f\x53\x1f\xda\xd8\xb0\x4c\x35\xdc\x1d\xb9\xb3\x2e\x6b\x93\xb1\x5f\x3e\x0b\x78\x4c\x5b\x12\x8b\x49\x36\x1a\x72\x20\x2f\x53\x8c\x26\xe3\xf4\x22\x1d\xa7\xe3\xaf\x27\xdf\x44\xbb\xff\x04\x00\x00\xff\xff\x63\xb1\x57\x8a\xd2\x07\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5f\x6f\xdb\xc6\x13\x7c\xe7\xa7\x18\xc8\xf8\xc1\x36\x60\xf3\x27\x19\x41\x51\x14\xd1\x83\x23\x07\xa8\xd1\xb8\x76\x63\xa7\x2f\x45\x41\x1d\xc9\xa5\xb4\xf0\xf1\x8e\xbd\x3d\xd2\x91\x03\xf7\xb3\x17\x47\x52\xae\xfe\xd0\x68\x1c\x44\x2f\x12\xee\x76\x67\x76\x77\xe6\x56\x07\x98\xe9\x5a\x3c\xb9\x28\x6a\x94\x63\x95\x6a\xc2\x28\xeb\x8e\x12\xa3\x4a\x1a\xe1\x4b\x04\xf8\x55\x45\xe8\x3f\x53\x88\x77\x6c\x16\x11\x90\x93\x64\x8e\x2b\xcf\xd6\x60\x8a\xd1\x27\xc3\x7f\xd5\x84\x3e\x1d\x21\x1d\x47\x95\xa3\x8a\x4c\x4e\x39\xbc\x45\x6e\x24\x79\xb4\x86\x8e\x47\xd1\xd3\x26\x63\xa9\xb2\x25\x1b\x4a\x72\x5b\x2a\x36\xaf\xe1\xbc\xea\x32\xd1\x67\x6e\xc3\x56\xd6\xea\x6f\xed\xe2\xc1\xba\x7b\x72\x08\x10\x43\x9d\x2c\xad\xf8\x70\xbc\xdb\x49\x97\x96\x64\xb6\x36\x7e\x88\xd5\xd4\x65\x4a\xae\x65\x2d\x54\xad\x7d\x7f\x3c\xd9\xaf\xe3\xd7\x36\x12\xb6\xe8\x4b\x91\x1d\xa6\x86\x9d\xaf\x95\x4e\xb2\xaa\x96\xef\xc5\xd4\x63\x62\x76\xf3\xe9\x25\xba\x92\x4a\xeb\x56\xaf\x20\x3c\x1b\xbf\xf9\x71\x9f\xf3\xf7\x9e\xe9\xe3\xf9\x15\xd8\xe0\xea\x5d\x4b\x77\x80\xbb\xeb\x8b\xeb\x9f\x50\xf2\xc2\x29\x4f\x61\xd0\x73\x4f\x65\xa5\x95\xa7\x82\x35\xcd\xf1\xb0\x24\x83\x3b\x72\x4e\x15\xd6\x95\x98\x8f\xe3\xc9\xd9\x1c\x2c\xb0\xb5\x87\x32\x39\x6a\x21\xcc\xbf\xfc\x0f\x85\x75\xf8\xfb\x69\x1e\x1d\x04\x10\xd5\x58\xce\x21\x15\x65\x5c\xac\xd8\x2c\x30\x3f\x3d\x35\x36\xa7\x53\xad\x52\xd2\x32\x87\x5a\x28\x36\x1d\xb8\x5f\x12\x1a\xe5\x02\x26\x95\x95\x5f\xc5\x1b\x43\xe8\xc2\xff\xc3\x4d\x9b\xcd\x8f\x46\xfb\xad\xcf\x6a\xf1\xb6\x44\x87\xd5\x56\x27\xc2\x0b\x13\x7e\xf5\xa6\x0b\xa5\x49\x8c\x1b\x67\x1b\xce\x09\x99\x2d\x4b\x05\xa1\x4a\x85\xa1\xe4\xb8\xa7\xd5\xb4\x51\xba\x26\x54\x8a\x9d\x40\x49\x0f\x16\x83\xe2\x45\x8c\xc3\xc2\xda\xa9\xb5\xc5\x49\xaa\xdc\xf4\x24\x55\x8f\xd3\x47\x95\x1e\xee\xe8\xa9\x39\x0d\x92\x06\x7f\xbf\xe6\x75\xf4\x69\x68\xac\xae\x4b\xea\x9e\xc7\x03\xfb\x25\x52\x25\x04\x2e\xd5\x82\x86\x89\xc2\x3d\xe7\xaf\xa1\xfa\x17\x11\x9c\xb7\x7a\xf6\x50\x3b\x04\xeb\x75\xd5\xad\x80\x44\xea\xa2\xe0\xcf\x1d\xd1\x0e\xe2\x6f\x35\x39\x26\x69\xb1\xba\x68\xe9\x8a\x0f\x9a\x77\x79\x78\x60\xad\x91\x12\x94\x91\x07\x72\x94\x23\x5d\x21\xb3\x8e\x72\x23\x31\x2e\x7a\x71\x59\xd6\x5b\x2e\xd6\x36\x53\x1a\x47\xed\xe0\x0b\x6b\xe3\x5e\xff\x58\x9a\x2c\xde\x8a\x39\xc6\xe8\xab\x5d\xb3\x95\xb8\xd7\x6e\x96\x88\xe1\xaa\x22\x3f\xe8\x44\xcd\xe2\x8f\x3a\xe0\xe3\x01\xf3\x59\xe3\x15\x1b\x72\xf8\xc0\xa6\xfe\x8c\x99\x35\x05\x2f\xf0\x0c\xb8\x57\xcb\x1f\x7f\x6e\xd3\xdf\xd7\x29\x65\x6d\xd2\xe0\x88\x7f\x79\xbe\x46\x78\xb0\x2f\xb6\xbc\x85\x29\xb2\x4c\xee\x69\xf5\x0d\xed\xdc\xde\xfe\x8c\xaa\x4e\x35\x67\xe1\x55\x74\xca\xd6\x42\x0e\x87\x41\xb3\x5d\xcf\x0b\xb9\x86\x33\x4a\x32\xce\xdd\x50\xf5\x6f\xdf\xbe\xbf\xbe\x88\x66\x97\x17\x1f\x71\x79\xd3\xbc\x81\x53\x66\x41\x1b\x2f\x34\x34\xe7\x0c\x79\x12\xf4\x50\x12\x47\x77\x4b\xc2\x44\x3c\x2e\x6f\x9e\xbd\xe3\x28\x5c\x53\x67\xda\x30\xb0\x44\x55\xdc\x1e\xb9\x93\xd6\x6b\x93\xb1\x5f\xbe\x98\xb0\x76\x5b\x14\x8a\x89\x36\x06\x32\xe0\x97\x29\x46\x93\x71\x7c\x16\x8f\xe3\xf1\xff\x27\x3f\xec\x3a\x45\x25\x19\x39\xff\xa2\x4e\x7d\x2b\xb3\x73\x84\x30\x2e\x38\x0b\x3b\xd7\x10\x85\xff\x38\xee\x36\xe1\xfd\xb6\x9e\xf1\xd7\x09\xfa\xdc\xee\x20\xf7\xf9\xfa\x16\x95\xe3\x26\x70\x92\xc9\x2b\xcb\xc6\x7f\x17\x72\x32\xe1\x3b\xf1\x5a\x92\xd4\x5a\x2f\xde\xa9\x6a\xb0\x8e\xf7\x6d\x20\xee\x3e\xdc\xe2\xdd\x3a\xb0\x55\x20\x0c\x47\x93\x1f\xe0\x4b\xad\xd5\xd1\x53\xf4\x4f\x00\x00\x00\xff\xff\x61\xa5\xdd\x65\x37\x09\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 185, + uncompressedSize: 323, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcb\x31\x0e\xc2\x30\x0c\x85\xe1\xdd\xa7\x78\x2a\x7b\xd4\x76\x60\x2b\xa7\x60\x47\x81\x18\x64\x29\x4d\x82\x93\x66\x41\xbd\x3b\x0a\x55\x11\x78\xf3\xaf\xef\x1d\x70\x66\x55\x7b\x8f\x3a\xa3\xb2\x66\x89\x01\x36\x38\x24\xbf\x3c\x24\xec\x29\x13\x95\x2f\x7b\x11\xa0\xfc\x5c\x44\xd9\x5d\xf6\xcd\x84\xee\x34\xa1\x37\xc3\x68\xfa\x8e\x7e\x45\xd2\x58\xc5\xb1\xe6\xcf\x10\xb8\x15\x6c\x37\xa1\xeb\xcd\xb1\xf1\xf6\x15\x9e\x93\xb7\x85\x5b\x1e\xcd\x60\xc6\x2d\x7b\xb9\x56\xd1\xf2\xaf\x57\x5a\xe9\x1d\x00\x00\xff\xff\x3f\xdf\x7b\xcb\xb9\x00\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x4d\x4b\x4a\x04\x31\x10\xdd\xe7\x14\x8f\xb8\xef\x4c\x8f\xe0\x42\x88\xa7\x70\x2f\x31\x29\xa5\xa0\xd3\xe9\xa9\x7c\x40\xa4\xef\x2e\x93\xe9\xc8\x2c\x74\x53\xaf\x78\xdf\x07\xbc\x92\x88\xfb\x48\x12\xd1\x48\x32\xa7\x15\x6e\x0d\xd8\x96\xfa\xc9\xeb\xa0\xb2\x52\xe5\xd7\xf6\xad\x00\xa1\x4b\x65\xa1\xf0\x36\x32\x16\xfa\xc5\xe2\x34\xcd\x8f\x5a\xdd\xeb\x9b\xa4\xc6\x81\x24\xf7\x18\xe0\x0b\xec\xf1\x02\x39\x55\xf1\x84\x6b\x78\x4b\x99\x38\xa4\xd5\xf8\xa2\x0f\xf5\xae\xfa\x34\x3d\x4d\xf3\x8d\xdf\x55\x87\x85\xdf\x1b\xcb\x1f\x65\x16\x3a\x44\xe7\x1b\x7b\x27\xe6\x70\x8d\xc6\x2a\xdc\xd1\x42\x5f\x28\xd6\x67\x63\x4c\xfe\xca\x85\xe2\x3f\x93\xe7\x31\x79\xbd\x85\xe2\xb6\xb8\xd2\x17\xce\xd3\x7c\x13\x77\xb5\xab\x9f\x00\x00\x00\xff\xff\x2a\x3f\x47\x53\x43\x01\x00\x00"), }, "/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/workers.tf": &vfsgen۰CompressedFileInfo{ name: "workers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1774, + uncompressedSize: 2133, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xcb\x8e\xe3\x2a\x10\xdd\xfb\x2b\x4a\xa8\x17\xdd\x52\xc7\xe9\xbe\xfb\x7c\xc9\xd5\x08\xd1\x50\x4e\x98\x60\xf0\x40\x91\x87\x22\xff\xfb\x08\x83\x1f\x71\x67\x66\x16\xc9\x2a\xaa\xc7\xe1\xd4\xa9\x53\xf6\x18\x5c\xf4\x12\x81\x19\xfd\x75\xd2\x9e\xf8\xc9\x99\xd8\x22\x03\x76\x76\xfe\x88\x7e\xa3\x74\x38\x32\xb8\x55\x00\x56\xb4\x08\xf3\x6f\x07\xec\xe5\x76\x12\xbe\x96\x26\x06\x42\xcf\x53\xbe\xdf\xe4\x58\xe7\x9c\x29\x81\x82\xf3\x72\x93\x2e\x5a\xaa\xb5\x55\x78\xe9\xeb\x5f\xd2\x9d\xff\x63\x15\xc0\x10\x5d\xa2\xa6\xf6\xdc\xc3\x87\x5c\x05\xf0\x25\x02\x16\x62\x5c\xab\x52\x53\x08\xa7\x9c\x56\x15\x40\x7a\x12\xd6\x40\xa5\x28\xe5\x2a\x80\xc6\xf9\x56\xd0\x72\x82\x42\xa3\xaf\xaa\xef\x4a\xe8\xbd\xd5\xa4\x9d\x65\xc0\xe6\xbf\x4b\x21\x9e\x52\x60\x33\x61\x2e\xb8\x3f\x22\x3d\x0a\xf4\x50\x19\xe9\x2c\xa1\x25\xd8\x81\x12\x24\x6a\x49\x5c\x3a\xdb\xe8\x7d\xa9\x9b\x1e\xf9\x7f\xf1\xf4\x8f\xda\xa3\x55\xe8\x51\x3d\x9e\x5b\xb9\x56\x68\x3b\x3b\xa0\x15\xf2\xa0\x2d\xe6\xd9\x0b\x9b\x87\x64\x8a\x2e\x4f\xc9\x92\xd4\x38\xc9\x2e\x4e\x03\x27\x4a\x51\x18\x2e\xbb\x18\x2a\x80\x16\x5b\xe7\xaf\xab\x5c\x0e\x56\x69\xc3\x67\x2e\x9b\x3d\x9f\xac\xba\x03\xe6\x3a\xda\x3a\xbf\xaf\x1b\x23\x48\x0a\xbf\x31\xda\xc6\xcb\x36\xcb\x94\x0d\xe8\xd1\x85\x69\xdb\xb0\x83\xb5\x01\xea\xc7\x2a\x6a\x95\x5e\x4c\xf7\x31\x28\x03\xb0\x74\xe8\xfd\x39\xd5\x8b\x63\xfa\x06\x02\xd0\x27\xa0\xbd\x17\xdd\x41\xcb\x50\xc0\x8c\x0e\x84\x96\xd3\xb5\xc3\x34\x85\x50\xca\x63\x08\x6c\xac\xb6\x48\x09\x93\x6b\x4b\xe8\x1b\x21\xb1\xb4\x8d\xf1\x69\x17\xeb\x45\x0c\x55\x07\x17\x68\x71\xce\x4f\x6f\x0c\xe0\x2c\x34\xf1\xc6\x79\x6e\x50\x84\xc4\x98\x7c\xc4\x81\x6c\x5f\x55\xc9\x9b\xc0\x26\x73\xce\xd6\xba\xbf\xab\xe9\x53\xf0\x57\xab\x8f\x5e\x27\x6c\x3b\x23\x08\x79\xa3\xcd\x24\x70\x7e\xe0\x0f\x6e\x07\x08\x56\x77\x1d\x52\x98\x74\x91\x7c\x0c\xcd\x3c\xef\x80\x67\xae\x23\xf7\x7f\x33\x1d\x01\x60\x07\x09\xe2\x95\xbd\xdc\x3a\x41\x87\xba\x75\x2a\x1a\xec\xb7\xd2\x6c\x73\x47\x7d\x15\xad\xa9\xa9\xed\x0c\x7b\x4b\x4b\x3d\x09\x9f\xa8\xe5\x4d\xe6\x33\xe4\xab\xaf\xee\x93\x9f\xdd\x5c\x56\x2e\xba\x5c\x7a\xd9\xe0\x31\x7e\x61\x9e\x11\xee\xdf\x4b\xad\x96\x5e\x3f\x3f\xde\x87\x61\xe7\xba\xb7\xa1\x2f\x84\x03\x3f\xe2\x35\x00\xac\xfa\x7e\x06\x67\xd1\x4a\xa7\xf0\x35\xf5\x8d\x75\xb9\x6b\x64\xaf\x6c\xe0\x01\xfd\x49\x4b\xe4\xba\x83\x1d\x48\xad\x7c\xb2\x67\xee\x29\x99\x14\x7c\x87\xcf\x8f\x55\x6f\x56\x28\xc4\xa6\xd1\x97\xb5\xd7\xef\x92\xc5\x88\xbf\x03\x00\x00\xff\xff\x6d\xf6\xb4\x45\xee\x06\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\xdb\x6e\xea\x3a\x10\x7d\x26\x5f\x31\x8a\xfa\x50\xa4\x12\xda\x73\xaa\xf3\x50\x09\x9d\x0f\xa9\xb6\x2c\x63\x4f\xc0\x1b\xc7\xf6\xb6\x27\x50\x84\xf2\xef\x5b\xc6\xce\x05\x4a\xdb\x07\xf2\x84\xe6\xb2\xbc\x66\xcd\x05\x8f\xc1\xb6\x5e\x20\x94\x5a\xad\xf7\xca\x13\xdb\x5b\xdd\x36\x58\x42\x79\xb0\x7e\x87\x7e\x21\x55\xd8\x95\x70\x2a\x00\x0c\x6f\x10\xc6\x6f\x05\xe5\xc3\x69\xcf\x7d\x25\x74\x1b\x08\x3d\x8b\xfe\x6e\x91\x6c\xce\x5a\x9d\x0d\x19\xe7\xe1\x24\x6c\x6b\xa8\x52\x46\xe2\x47\x57\xfd\x11\xf6\xf0\x4f\x59\x00\x9c\xad\x53\xd4\x98\x9e\x72\xd8\xd9\x57\x00\xac\x79\xc0\x4c\x8c\x29\x99\x63\x32\xe1\xe8\x53\xb2\x00\x88\x4f\xc2\x35\x50\x0e\x8a\xbe\x02\xa0\xb6\xbe\xe1\x34\xad\x20\xd3\xe8\x8a\xe2\xb3\x12\x6a\x63\x14\x29\x6b\x4a\x28\xc7\x9f\x53\x21\xee\x52\x60\x31\x60\x4e\xb8\xdf\x22\xdd\x0b\x74\x53\x19\x61\x0d\xa1\x21\x58\x81\xe4\xc4\x2b\x41\x4c\x58\x53\xab\x4d\x8e\x1b\x1e\x79\x9f\x3c\xfd\xab\xf2\x68\x24\x7a\x94\xb7\xeb\x96\xb6\xe1\xca\x8c\x13\xd0\x70\xb1\x55\x06\x53\xed\x99\xcd\x4d\x32\x59\x97\xbb\x64\x89\x6a\xec\x85\x6b\x87\x82\x23\xa5\x96\x6b\x26\x5c\x1b\x0a\x80\x06\x1b\xeb\x8f\x57\xbe\x64\x2c\x62\x87\x0f\x4c\xd4\x1b\x36\x8c\xea\x0a\x4a\xeb\x68\x69\xfd\xa6\xaa\x35\x27\xc1\xfd\x42\x2b\xd3\x7e\x2c\x93\x4c\x69\x00\x3d\xda\x30\x74\x1b\x56\x70\x3d\x00\xd5\x6d\x15\x95\x8c\x2f\xc6\xfd\x38\x2b\x03\x30\x9d\xd0\xcb\x75\xaa\x26\xcb\xf4\x09\x04\xa0\x8b\x40\x1b\xcf\xdd\x56\x89\x90\xc1\xb4\x0a\x84\x86\xd1\xd1\x61\xac\x82\x4b\xe9\x31\x84\xb2\x8f\x36\x48\x11\x93\x29\x43\xe8\x6b\x2e\x30\xa7\xf5\xf6\xa1\x17\xd7\x8d\x38\x47\x6d\x6d\xa0\xc9\x3a\xdf\xdd\x31\x80\x03\x57\xc4\x6a\xeb\x99\x46\x1e\x22\x63\xf2\x2d\x9e\xc9\x76\x45\x11\x67\x13\xca\x61\x38\xc7\xd1\xba\xdc\xab\xe1\x14\x7c\x3b\xea\xfd\xac\x13\x36\x4e\x73\x42\x56\x2b\x3d\x08\x9c\x1e\xf8\x62\xda\x01\x82\x51\xce\x21\x85\x41\x17\xc1\x7a\xd3\xc8\xf3\x02\x78\xe4\xda\x73\xff\x99\x69\x0f\x00\x2b\x88\x10\x8f\xe5\xc3\xc9\x71\xda\x56\x8d\x95\xad\xc6\x6e\x29\xf4\x32\x65\x54\x47\xde\xe8\x8a\x1a\xa7\xcb\x79\x6c\xea\x9e\xfb\x48\x2d\x75\x12\x0d\x5f\x6b\x64\xa4\x03\x5b\x5b\x4b\x81\x3c\x77\xc3\x8b\xb7\x9c\xe7\xac\xb4\xbc\xec\xea\x56\xdf\x79\xac\x53\x58\xbe\x03\xf9\x3e\x74\x65\x31\x9b\xed\xda\x35\x26\x5d\xbe\xe1\x05\xff\x43\xc4\x31\xf4\xf8\xf2\xfc\x34\x88\xf3\x95\x32\x43\xda\x62\x04\x9f\xe8\xf4\x04\xa7\x62\x36\x9b\x91\xdd\xa1\x89\x9b\x96\x8a\xf3\xdc\x48\xdb\xb0\x40\x5e\x99\x4d\x35\x40\xb0\x3e\xec\xfd\x39\x8e\x41\x68\x35\x8d\xc9\x01\x85\x47\xfa\x31\x39\x85\x5d\x02\x08\xce\x04\x7a\x9a\xfe\xd1\x64\x53\xf4\x06\xf4\x7b\xf4\xa3\xf0\x5b\x22\x17\xde\x96\xcb\xa4\x22\x77\x2a\x05\x74\x6f\xff\xbd\xbe\xfe\x1b\x55\xec\xe6\x73\x78\x9b\x6a\x14\xe3\xc6\xea\xe7\xe7\xc6\x86\xb0\x65\x3b\x3c\x06\xb8\xfc\x56\xf0\x3b\x58\x83\x46\x58\x89\x8f\x31\xaf\x8f\x4b\x59\x7d\xbb\xa5\x09\x2c\x3e\xab\x04\x32\xe5\x60\x05\x42\x49\x1f\xaf\x40\xca\xc9\x9e\x68\x7c\x82\x97\xe7\xab\xdc\x34\x52\xa1\xad\x6b\xf5\x71\x7d\x52\x2e\x9c\x79\xdf\xff\x06\x00\x00\xff\xff\xb9\x3e\xea\xe9\x55\x08\x00\x00"), }, "/terraform-modules/packet": &vfsgen۰DirInfo{ name: "packet", @@ -7479,6 +7505,7 @@ var vfsgenAssets = func() http.FileSystem { } fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootkube.tf"].(os.FileInfo), + fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/bootstrap-configs.tf"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/controllers.tf"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/outputs.tf"].(os.FileInfo), @@ -7491,12 +7518,15 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/cl/controller.yaml.tmpl"].(os.FileInfo), } fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/bootstrap-configs.tf"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl"].(os.FileInfo), + fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/outputs.tf"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/variables.tf"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/versions.tf"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/workers.tf"].(os.FileInfo), } fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/bootstrap-kubeconfig.yaml.tmpl"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl"].(os.FileInfo), } fs["/terraform-modules/packet"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/platform/kvmlibvirt/kvmlibvirt.go b/pkg/platform/kvmlibvirt/kvmlibvirt.go new file mode 100644 index 000000000..bc61341a4 --- /dev/null +++ b/pkg/platform/kvmlibvirt/kvmlibvirt.go @@ -0,0 +1,235 @@ +// Copyright 2020 The Lokomotive Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package kvmlibvirt is a Platform implementation for creating a Lokomotive cluster +// from virtual machines using Libvirt. +package kvmlibvirt + +import ( + "fmt" + "os" + "path/filepath" + "strings" + "text/template" + + "github.com/hashicorp/hcl/v2" + "github.com/hashicorp/hcl/v2/gohcl" + "github.com/mitchellh/go-homedir" + + "github.com/kinvolk/lokomotive/pkg/assets" + "github.com/kinvolk/lokomotive/pkg/platform" + "github.com/kinvolk/lokomotive/pkg/terraform" +) + +type workerPool struct { + Name string `hcl:"pool_name,label"` + Count int `hcl:"count"` + VirtualCPUs int `hcl:"virtual_cpus,optional"` + VirtualMemory int `hcl:"virtual_memory,optional"` + CLCSnippets []string `hcl:"clc_snippets,optional"` + Labels string `hcl:"labels,optional"` +} + +type config struct { + DisableSelfHostedKubelet bool `hcl:"disable_self_hosted_kubelet,optional"` + EnableReporting bool `hcl:"enable_reporting,optional"` + EnableAggregation bool `hcl:"enable_aggregation,optional"` + EnableTLSBootstrap bool `hcl:"enable_tsl_bootstrap,optional"` + ControllerCount int `hcl:"controller_count,optional"` + ControllerVirtualCPUs int `hcl:"controller_virtual_cpus,optional"` + ControllerVirtualMemory int `hcl:"controller_virtual_memory,optional"` + NetworkMTU int `hcl:"network_mtu,optional"` + CertsValidityPeriodHours int `hcl:"certs_validity_period_hours,optional"` + AssetDir string `hcl:"asset_dir"` + ClusterName string `hcl:"cluster_name"` + MachineDomain string `hcl:"machine_domain"` + OSImage string `hcl:"os_image"` + NodeIPPool string `hcl:"node_ip_pool,optional"` + NetworkIPAutodetectionMethod string `hcl:"network_ip_autodetection_method,optional"` + PodCidr string `hcl:"pod_cidr,optional"` + ServiceCidr string `hcl:"service_cidr,optional"` + ClusterDomainSuffix string `hcl:"cluster_domain_suffix,optional"` + SSHPubKeys []string `hcl:"ssh_pubkeys"` + ControllerCLCSnippets []string `hcl:"controller_clc_snippets,optional"` + KubeAPIServerExtraFlags []string `hcl:"kube_apiserver_extra_flags,optional"` + WorkerPools []workerPool `hcl:"worker_pool,block"` +} + +func init() { //nolint:gochecknoinits + c := &config{ + EnableTLSBootstrap: true, + } + platform.Register("kvm-libvirt", c) +} + +func (c *config) LoadConfig(configBody *hcl.Body, evalContext *hcl.EvalContext) hcl.Diagnostics { + if configBody == nil { + return hcl.Diagnostics{} + } + + if diags := gohcl.DecodeBody(*configBody, evalContext, c); diags.HasErrors() { + return diags + } + + return c.checkValidConfig() +} + +// Meta is part of Platform interface and returns common information about the platform configuration. +func (c *config) Meta() platform.Meta { + nodes := c.ControllerCount + for _, workerpool := range c.WorkerPools { + nodes += workerpool.Count + } + + return platform.Meta{ + AssetDir: c.AssetDir, + ExpectedNodes: nodes, + } +} + +func (c *config) Apply(ex *terraform.Executor) error { + if err := c.Initialize(ex); err != nil { + return err + } + + return ex.Apply() +} + +func (c *config) Destroy(ex *terraform.Executor) error { + if err := c.Initialize(ex); err != nil { + return err + } + + return ex.Destroy() +} + +func (c *config) Initialize(ex *terraform.Executor) error { + assetDir, err := homedir.Expand(c.AssetDir) + if err != nil { + return err + } + + // TODO: A transient change which shall be reverted in a follow up PR to handle + // https://github.com/kinvolk/lokomotive/issues/716. + // Extract control plane chart files to cluster assets directory. + for _, c := range platform.CommonControlPlaneCharts() { + src := filepath.Join(assets.ControlPlaneSource, c.Name) + + dst := filepath.Join(assetDir, "cluster-assets", "charts", c.Namespace, c.Name) + + if err := assets.Extract(src, dst); err != nil { + return fmt.Errorf("extracting charts: %w", err) + } + } + + // TODO: A transient change which shall be reverted in a follow up PR to handle + // https://github.com/kinvolk/lokomotive/issues/716. + // Extract self-hosted kubelet chart only when enabled in config. + if !c.DisableSelfHostedKubelet { + src := filepath.Join(assets.ControlPlaneSource, "kubelet") + + dst := filepath.Join(assetDir, "cluster-assets", "charts", "kube-system", "kubelet") + + if err := assets.Extract(src, dst); err != nil { + return fmt.Errorf("extracting kubelet chart: %w", err) + } + } + + terraformRootDir := terraform.GetTerraformRootDir(assetDir) + + return createTerraformConfigFile(c, terraformRootDir) +} + +func createTerraformConfigFile(cfg *config, terraformRootDir string) error { + tmplName := "cluster.tf" + t := template.New(tmplName).Funcs(template.FuncMap{"StringsJoin": strings.Join}) + + t, err := t.Parse(terraformConfigTmpl) + if err != nil { + return fmt.Errorf("parsing template: %w", err) + } + + path := filepath.Join(terraformRootDir, tmplName) + + f, err := os.Create(path) + if err != nil { + return fmt.Errorf("creating file %q: %w", path, err) + } + + defer func() { + if ferr := f.Close(); ferr != nil { + err = ferr + } + }() + + terraformCfg := struct { + Config config + }{ + Config: *cfg, + } + + if err := t.Execute(f, terraformCfg); err != nil { + return fmt.Errorf("executing template: %w", err) + } + + return nil +} + +// checkValidConfig validates cluster configuration. +func (c *config) checkValidConfig() hcl.Diagnostics { + var diagnostics hcl.Diagnostics + + diagnostics = append(diagnostics, c.checkNotEmptyWorkers()...) + diagnostics = append(diagnostics, c.checkWorkerPoolNamesUnique()...) + + return diagnostics +} + +// checkNotEmptyWorkers checks if the cluster has at least 1 node pool defined. +func (c *config) checkNotEmptyWorkers() hcl.Diagnostics { + var diagnostics hcl.Diagnostics + + if len(c.WorkerPools) == 0 { + diagnostics = append(diagnostics, &hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: "At least one worker pool must be defined", + Detail: "Make sure to define at least one worker pool block in your cluster block", + }) + } + + return diagnostics +} + +// checkWorkerPoolNamesUnique verifies that all worker pool names are unique. +func (c *config) checkWorkerPoolNamesUnique() hcl.Diagnostics { + var diagnostics hcl.Diagnostics + + dup := make(map[string]bool) + + for _, w := range c.WorkerPools { + if !dup[w.Name] { + dup[w.Name] = true + + continue + } + // It is duplicated. + diagnostics = append(diagnostics, &hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: "Worker pools name should be unique", + Detail: fmt.Sprintf("Worker pool '%v' is duplicated", w.Name), + }) + } + + return diagnostics +} diff --git a/pkg/platform/kvmlibvirt/template.go b/pkg/platform/kvmlibvirt/template.go new file mode 100644 index 000000000..1b989ae6a --- /dev/null +++ b/pkg/platform/kvmlibvirt/template.go @@ -0,0 +1,190 @@ +// Copyright 2020 The Lokomotive Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package kvmlibvirt + +var terraformConfigTmpl = ` +module "kvm-libvirt-{{.Config.ClusterName}}" { + source = "../terraform-modules/kvm-libvirt/flatcar-linux/kubernetes" + + cluster_name = "{{.Config.ClusterName}}" + + ssh_keys = {{ StringsJoin .Config.SSHPubKeys "\", \"" | printf "[%q]" }} + + asset_dir = "../cluster-assets" + + os_image = "{{.Config.OSImage}}" + + machine_domain = "{{.Config.MachineDomain}}" + + {{- if .Config.NodeIPPool}} + node_ip_pool = "{{.Config.NodeIPPool}}" + {{- end }} + + {{- if .Config.ControllerCount}} + controller_count = {{.Config.ControllerCount}} + {{- end }} + + {{- if .Config.ControllerVirtualCPUs}} + virtual_cpus = {{ .Config.ControllerVirtualCPUs}} + {{- end }} + + {{- if .Config.ControllerVirtualMemory}} + virtual_memory {{ .Config.ControllerVirtualMemory}} + {{- end }} + + {{- if .Config.NetworkMTU }} + network_mtu = {{.Config.NetworkMTU}} + {{- end }} + + {{- if .Config.NetworkIPAutodetectionMethod }} + network_ip_autodetection_method = {{ .Config.NetworkIPAutodetectionMethod }} + {{- end }} + + {{- if .Config.PodCidr }} + pod_cidr = {{.Config.PodCidr }} + {{- end }} + {{- if .Config.ServiceCidr }} + service_cidr = {{.Config.ServiceCidr }} + {{- end }} + + {{- if .Config.ClusterDomainSuffix }} + cluster_domain_suffix = {{.Config.ClusterDomainSuffix }} + {{- end }} + + enable_reporting = {{.Config.EnableReporting}} + enable_aggregation = {{.Config.EnableAggregation}} + + {{- if .Config.ControllerCLCSnippets }} + controller_clc_snippets = {{ StringsJoin .Config.ControllerCLCSnippets "\", \"" | printf "[%q]" }} + {{- end }} + + disable_self_hosted_kubelet = {{ .Config.DisableSelfHostedKubelet }} + + {{- if .Config.KubeAPIServerExtraFlags }} + kube_apiserver_extra_flags = {{ StringsJoin .Config.KubeAPIServerExtraFlags "\", \"" | printf "[%q]" }} + {{- end }} + + {{- if .Config.CertsValidityPeriodHours }} + certs_validity_period_hours = {{.Config.CertsValidityPeriodHours}} + {{- end }} + + # Enable TLS Bootstrap + enable_tls_bootstrap = {{ .Config.EnableTLSBootstrap }} + worker_bootstrap_tokens = [ + {{- range $index, $pool := .Config.WorkerPools }} + module.worker-pool-{{$index}}.worker_bootstrap_token, + {{- end }} + ] +} + +{{ range $index, $pool := .Config.WorkerPools }} +module "worker-pool-{{ $index }}" { + source = "../terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers" + + ssh_keys = {{ StringsJoin $.Config.SSHPubKeys "\", \"" | printf "[%q]" }} + machine_domain = "{{$.Config.MachineDomain}}" + cluster_name = "{{$.Config.ClusterName}}" + {{- if $.Config.ClusterDomainSuffix }} + cluster_domain_suffix = {{$.Config.ClusterDomainSuffix }} + {{- end }} + {{- if $.Config.ServiceCidr }} + service_cidr = {{$.Config.ServiceCidr }} + {{- end }} + + libvirtpool = module.kvm-libvirt-{{$.Config.ClusterName}}.libvirtpool + libvirtbaseid = module.kvm-libvirt-{{$.Config.ClusterName}}.libvirtbaseid + kubeconfig = module.kvm-libvirt-{{$.Config.ClusterName}}.kubeconfig + + ca_cert = module.kvm-libvirt-{{ $.Config.ClusterName }}.ca_cert + apiserver = module.kvm-libvirt-{{ $.Config.ClusterName }}.apiserver + enable_tls_bootstrap = {{ $.Config.EnableTLSBootstrap }} + + pool_name = "{{ $pool.Name }}" + worker_count = "{{ $pool.Count}}" + + {{- if $pool.VirtualCPUs }} + virtual_cpus = {{ $pool.VirtualCPUs }} + {{- end }} + + {{- if $pool.VirtualMemory }} + virtual_memory {{ $pool.VirtualMemory }} + {{- end }} + + {{- if $pool.Labels }} + labels = {{ $pool.Labels }} + {{- end }} + + {{- if $pool.CLCSnippets }} + clc_snippets = {{ StringsJoin $pool.CLCSnippets "\", \"" | printf "[%q]" }} + {{- end }} +} +{{- end }} + +terraform { + required_providers { + libvirt = { + source = "dmacvicar/libvirt" + uri = "qemu:///system" + version = "0.6.2" + } + ct = { + source = "poseidon/ct" + version = "0.6.1" + } + } +} + +provider "libvirt" { + uri = "qemu:///system" +} +# Stub output, which indicates, that Terraform run at least once. +# Used when checking, if we should ask user for confirmation, when +# applying changes to the cluster. +output "initialized" { + value = true + sensitive = true +} + +# values.yaml content for all deployed charts. +output "pod-checkpointer_values" { + value = module.kvm-libvirt-{{.Config.ClusterName}}.pod-checkpointer_values + sensitive = true +} + +output "kube-apiserver_values" { + value = module.kvm-libvirt-{{.Config.ClusterName}}.kube-apiserver_values + sensitive = true +} + +output "kubernetes_values" { + value = module.kvm-libvirt-{{.Config.ClusterName}}.kubernetes_values + sensitive = true +} + +output "kubelet_values" { + value = module.kvm-libvirt-{{.Config.ClusterName}}.kubelet_values + sensitive = true +} + +output "calico_values" { + value = module.kvm-libvirt-{{.Config.ClusterName}}.calico_values + sensitive = true +} + +output "bootstrap-secrets_values" { + value = module.kvm-libvirt-{{.Config.ClusterName}}.bootstrap-secrets_values + sensitive = true +} +`