diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf index 8d557f4a3..81bc087fd 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf @@ -2,9 +2,10 @@ module "bootkube" { source = "../../../bootkube" - cluster_name = var.cluster_name - api_servers = [var.k8s_domain_name] - etcd_servers = var.controller_domains + cluster_name = var.cluster_name + api_servers = [format("%s.%s", var.cluster_name, var.k8s_domain_name)] + # Each instance of controller module generates the same set of etcd_servers. + etcd_servers = module.controller[0].etcd_servers etcd_endpoints = [] asset_dir = var.asset_dir network_mtu = var.network_mtu @@ -21,7 +22,7 @@ module "bootkube" { # Disable the self hosted kubelet. disable_self_hosted_kubelet = var.disable_self_hosted_kubelet - bootstrap_tokens = [local.controller_bootstrap_token, local.worker_bootstrap_token] + bootstrap_tokens = concat(module.controller.*.bootstrap_token, module.worker.*.bootstrap_token) enable_tls_bootstrap = true encrypt_pod_traffic = var.encrypt_pod_traffic diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootstrap-configs.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootstrap-configs.tf deleted file mode 100644 index b96178fad..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootstrap-configs.tf +++ /dev/null @@ -1,39 +0,0 @@ -locals { - controller_bootstrap_token = { - token_id = random_string.bootstrap_token_id_controller.result - token_secret = random_string.bootstrap_token_secret_controller.result - } - - worker_bootstrap_token = { - token_id = random_string.bootstrap_token_id_worker.result - token_secret = random_string.bootstrap_token_secret_worker.result - } -} - -# Generate a cryptographically random token id (public). -resource "random_string" "bootstrap_token_id_controller" { - length = 6 - upper = false - special = false -} - -# Generate a cryptographically random token secret. -resource "random_string" "bootstrap_token_secret_controller" { - length = 16 - upper = false - special = false -} - -# Generate a cryptographically random token id (public). -resource "random_string" "bootstrap_token_id_worker" { - length = 6 - upper = false - special = false -} - -# Generate a cryptographically random token secret. -resource "random_string" "bootstrap_token_secret_worker" { - length = 16 - upper = false - special = false -} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/bootstrap-kubeconfig.yaml.tmpl b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/bootstrap-kubeconfig.yaml.tmpl deleted file mode 100644 index f0660cd23..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/bootstrap-kubeconfig.yaml.tmpl +++ /dev/null @@ -1,15 +0,0 @@ -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/bare-metal/flatcar-linux/kubernetes/cl/controller.yaml.tmpl b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/controller.yaml.tmpl deleted file mode 100644 index 97e98293d..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/controller.yaml.tmpl +++ /dev/null @@ -1,239 +0,0 @@ ---- -systemd: - units: - - name: etcd.service - enable: true - contents: | - [Unit] - Description=etcd (System Application Container) - Documentation=https://github.com/etcd-io/etcd - Wants=docker.service - After=docker.service - [Service] - Type=simple - Restart=always - RestartSec=5s - TimeoutStartSec=0 - LimitNOFILE=40000 - EnvironmentFile=/etc/kubernetes/etcd.env - ExecStartPre=-docker rm -f etcd - ExecStartPre=sh -c "docker run -d \ - --name=etcd \ - --restart=unless-stopped \ - --log-driver=journald \ - --network=host \ - -u $(id -u \"$${USER}\"):$(id -u \"$${USER}\") \ - -v $${ETCD_DATA_DIR}:$${ETCD_DATA_DIR}:rw \ - -v $${SSL_DIR}:$${SSL_DIR}:ro \ - --env-file /etc/kubernetes/etcd.env \ - $${IMAGE_URL}:$${IMAGE_TAG}" - ExecStart=docker logs -f etcd - ExecStop=docker stop etcd - ExecStopPost=docker rm etcd - [Install] - WantedBy=multi-user.target - - name: docker.service - enable: true - - name: locksmithd.service - mask: true - - name: kubelet.path - enable: true - contents: | - [Unit] - Description=Watch for kubeconfig - [Path] - PathExists=/etc/kubernetes/kubeconfig - [Install] - WantedBy=multi-user.target - - name: wait-for-dns.service - enable: true - contents: | - [Unit] - Description=Wait for DNS entries - Wants=systemd-resolved.service - Before=kubelet.service - [Service] - Restart=on-failure - RestartSec=5s - Type=oneshot - RemainAfterExit=true - ExecStart=/bin/sh -c 'while ! /usr/bin/grep '^[^#[:space:]]' /etc/resolv.conf > /dev/null; do sleep 1; done' - [Install] - RequiredBy=kubelet.service - RequiredBy=etcd-member.service - - name: kubelet.service - contents: | - [Unit] - Description=Kubelet - Wants=rpc-statd.service - [Service] - EnvironmentFile=/etc/kubernetes/kubelet.env - ExecStartPre=/bin/mkdir -p /var/lib/kubelet/volumeplugins - ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests - ExecStartPre=/usr/bin/bash -c "grep 'certificate-authority-data' /etc/kubernetes/kubeconfig | awk '{print $2}' | base64 -d > /etc/kubernetes/ca.crt" - ExecStartPre=/etc/kubernetes/configure-kubelet-cgroup-driver - ExecStartPre=-docker rm -f kubelet - ExecStartPre=docker run -d \ - --name=kubelet \ - --restart=unless-stopped \ - --log-driver=journald \ - --network=host \ - --pid=host \ - --privileged \ - -v /dev:/dev:rw \ - -v /etc/cni/net.d:/etc/cni/net.d:ro \ - -v /etc/kubernetes:/etc/kubernetes:ro \ - -v /etc/machine-id:/etc/machine-id:ro \ - -v /lib/modules:/lib/modules:ro \ - -v /run:/run:rw \ - -v /sys:/sys:rw \ - -v /opt/cni/bin:/opt/cni/bin:ro \ - -v /usr/lib/os-release:/etc/os-release:ro \ - -v /var/lib/calico:/var/lib/calico:ro \ - -v /var/lib/cni:/var/lib/cni:rw \ - -v /var/lib/docker:/var/lib/docker:rw \ - -v /var/log/pods:/var/log/pods:rw \ - --mount type=bind,source=/mnt,target=/mnt,bind-propagation=rshared \ - --mount type=bind,source=/var/lib/kubelet,target=/var/lib/kubelet,bind-propagation=rshared \ - $${KUBELET_IMAGE_URL}:$${KUBELET_IMAGE_TAG} \ - --anonymous-auth=false \ - --authentication-token-webhook \ - --authorization-mode=Webhook \ - --client-ca-file=/etc/kubernetes/ca.crt \ - --cluster_dns=${cluster_dns_service_ip} \ - --cluster_domain=${cluster_domain_suffix} \ - --cni-conf-dir=/etc/cni/net.d \ - --config=/etc/kubernetes/kubelet.config \ - --exit-on-lock-contention \ - --hostname-override=${domain_name} \ - --kubeconfig=/var/lib/kubelet/kubeconfig \ - --bootstrap-kubeconfig=/etc/kubernetes/kubeconfig \ - --rotate-certificates \ - --lock-file=/var/run/lock/kubelet.lock \ - --network-plugin=cni \ - --node-labels=$${NODE_LABELS} \ - --pod-manifest-path=/etc/kubernetes/manifests \ - --read-only-port=0 \ - --register-with-taints=$${NODE_TAINTS} \ - --volume-plugin-dir=/var/lib/kubelet/volumeplugins - ExecStart=docker logs -f kubelet - ExecStop=docker stop kubelet - ExecStopPost=docker rm kubelet - Restart=always - RestartSec=5 - [Install] - WantedBy=multi-user.target - - name: bootkube.service - contents: | - [Unit] - Description=Bootstrap a Kubernetes control plane with a temp api-server - ConditionPathExists=!/opt/bootkube/init_bootkube.done - [Service] - Type=oneshot - RemainAfterExit=true - WorkingDirectory=/opt/bootkube - ExecStart=/opt/bootkube/bootkube-start - ExecStartPost=/bin/touch /opt/bootkube/init_bootkube.done -storage: - files: - - path: /etc/kubernetes/kubelet.env - filesystem: root - mode: 0644 - contents: - inline: | - KUBELET_IMAGE_URL=quay.io/kinvolk/kubelet - KUBELET_IMAGE_TAG=v1.19.4 - NODE_LABELS="node.kubernetes.io/master,node.kubernetes.io/controller=true" - NODE_TAINTS="node-role.kubernetes.io/master=:NoSchedule" - - path: /etc/kubernetes/etcd.env - filesystem: root - mode: 0644 - contents: - inline: | - IMAGE_TAG=v3.4.14 - IMAGE_URL=quay.io/coreos/etcd - SSL_DIR=/etc/ssl/etcd - USER=etcd - ETCD_DATA_DIR=/var/lib/etcd - ETCD_NAME=${etcd_name} - ETCD_ADVERTISE_CLIENT_URLS=https://${domain_name}:2379 - ETCD_INITIAL_ADVERTISE_PEER_URLS=https://${domain_name}:2380 - ETCD_LISTEN_CLIENT_URLS=https://0.0.0.0:2379 - ETCD_LISTEN_PEER_URLS=https://0.0.0.0:2380 - ETCD_LISTEN_METRICS_URLS=http://0.0.0.0:2381 - ETCD_INITIAL_CLUSTER=${etcd_initial_cluster} - ETCD_STRICT_RECONFIG_CHECK=true - ETCD_TRUSTED_CA_FILE=/etc/ssl/etcd/etcd/server-ca.crt - ETCD_CERT_FILE=/etc/ssl/etcd/etcd/server.crt - ETCD_KEY_FILE=/etc/ssl/etcd/etcd/server.key - ETCD_CLIENT_CERT_AUTH=true - ETCD_PEER_TRUSTED_CA_FILE=/etc/ssl/etcd/etcd/peer-ca.crt - ETCD_PEER_CERT_FILE=/etc/ssl/etcd/etcd/peer.crt - ETCD_PEER_KEY_FILE=/etc/ssl/etcd/etcd/peer.key - ETCD_PEER_CLIENT_CERT_AUTH=true - - path: /etc/hostname - filesystem: root - mode: 0644 - contents: - inline: - ${domain_name} - - path: /etc/sysctl.d/max-user-watches.conf - filesystem: root - contents: - inline: | - fs.inotify.max_user_watches=16184 - - path: /opt/bootkube/bootkube-start - filesystem: root - mode: 0544 - user: - id: 500 - group: - id: 500 - contents: - inline: | - #!/bin/bash - # Wrapper for bootkube start - set -e - # Move experimental manifests - [ -n "$(ls /opt/bootkube/assets/manifests-*/* 2>/dev/null)" ] && mv /opt/bootkube/assets/manifests-*/* /opt/bootkube/assets/manifests && rm -rf /opt/bootkube/assets/manifests-* - exec docker run \ - -v /opt/bootkube/assets:/assets:ro \ - -v /etc/kubernetes:/etc/kubernetes:rw \ - --network=host \ - quay.io/kinvolk/bootkube:v0.14.0-helm4 \ - /bootkube start --asset-dir=/assets - - path: /etc/kubernetes/configure-kubelet-cgroup-driver - filesystem: root - mode: 0744 - contents: - inline: | - #!/bin/bash - set -e - readonly docker_cgroup_driver="$(docker info -f '{{.CgroupDriver}}')" - cat </etc/kubernetes/kubelet.config - apiVersion: kubelet.config.k8s.io/v1beta1 - kind: KubeletConfiguration - cgroupDriver: "$${docker_cgroup_driver}" - EOF - - path: /etc/tmpfiles.d/etcd-wrapper.conf - filesystem: root - mode: 0644 - contents: - inline: | - d /var/lib/etcd 0700 etcd etcd - - - - path: /etc/docker/daemon.json - filesystem: root - mode: 0500 - contents: - inline: | - { - "live-restore": true, - "log-opts": { - "max-size": "100m", - "max-file": "3" - } - } -passwd: - users: - - name: core - ssh_authorized_keys: ${ssh_keys} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/worker.yaml.tmpl b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/worker.yaml.tmpl deleted file mode 100644 index cba638d13..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/worker.yaml.tmpl +++ /dev/null @@ -1,149 +0,0 @@ ---- -systemd: - units: - - name: docker.service - enable: true - - name: locksmithd.service - mask: true - - name: iscsid.service - enabled: true - dropins: - - name: 00-iscsid.conf - contents: | - [Service] - ExecStartPre=/bin/bash -c 'echo "InitiatorName=$(/sbin/iscsi-iname -p iqn.2020-01.io.kinvolk:01)" > /etc/iscsi/initiatorname.iscsi' - - name: kubelet.path - enable: true - contents: | - [Unit] - Description=Watch for kubeconfig - [Path] - PathExists=/etc/kubernetes/kubeconfig - [Install] - WantedBy=multi-user.target - - name: wait-for-dns.service - enable: true - contents: | - [Unit] - Description=Wait for DNS entries - Wants=systemd-resolved.service - Before=kubelet.service - [Service] - Restart=on-failure - RestartSec=5s - Type=oneshot - RemainAfterExit=true - ExecStart=/bin/sh -c 'while ! /usr/bin/grep '^[^#[:space:]]' /etc/resolv.conf > /dev/null; do sleep 1; done' - [Install] - RequiredBy=kubelet.service - - name: kubelet.service - contents: | - [Unit] - Description=Kubelet - Wants=rpc-statd.service - [Service] - EnvironmentFile=/etc/kubernetes/kubelet.env - ExecStartPre=/bin/mkdir -p /var/lib/kubelet/volumeplugins - ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests - ExecStartPre=/usr/bin/bash -c "grep 'certificate-authority-data' /etc/kubernetes/kubeconfig | awk '{print $2}' | base64 -d > /etc/kubernetes/ca.crt" - ExecStartPre=/etc/kubernetes/configure-kubelet-cgroup-driver - ExecStartPre=-docker rm -f kubelet - ExecStartPre=docker run -d \ - --name=kubelet \ - --restart=unless-stopped \ - --log-driver=journald \ - --network=host \ - --pid=host \ - --privileged \ - -v /dev:/dev:rw \ - -v /etc/cni/net.d:/etc/cni/net.d:ro \ - -v /etc/kubernetes:/etc/kubernetes:ro \ - -v /etc/machine-id:/etc/machine-id:ro \ - -v /lib/modules:/lib/modules:ro \ - -v /run:/run:rw \ - -v /sys:/sys:rw \ - -v /opt/cni/bin:/opt/cni/bin:ro \ - -v /usr/lib/os-release:/etc/os-release:ro \ - -v /var/lib/calico:/var/lib/calico:ro \ - -v /var/lib/cni:/var/lib/cni:rw \ - -v /var/lib/docker:/var/lib/docker:rw \ - -v /var/log/pods:/var/log/pods:rw \ - --mount type=bind,source=/mnt,target=/mnt,bind-propagation=rshared \ - --mount type=bind,source=/var/lib/kubelet,target=/var/lib/kubelet,bind-propagation=rshared \ - $${KUBELET_IMAGE_URL}:$${KUBELET_IMAGE_TAG} \ - --anonymous-auth=false \ - --authentication-token-webhook \ - --authorization-mode=Webhook \ - --client-ca-file=/etc/kubernetes/ca.crt \ - --cluster_dns=${cluster_dns_service_ip} \ - --cluster_domain=${cluster_domain_suffix} \ - --cni-conf-dir=/etc/cni/net.d \ - --config=/etc/kubernetes/kubelet.config \ - --exit-on-lock-contention \ - --hostname-override=${domain_name} \ - --kubeconfig=/var/lib/kubelet/kubeconfig \ - --bootstrap-kubeconfig=/etc/kubernetes/kubeconfig \ - --rotate-certificates \ - --lock-file=/var/run/lock/kubelet.lock \ - --network-plugin=cni \ - --node-labels=$${NODE_LABELS} \ - --pod-manifest-path=/etc/kubernetes/manifests \ - --read-only-port=0 \ - --volume-plugin-dir=/var/lib/kubelet/volumeplugins - ExecStart=docker logs -f kubelet - ExecStop=docker stop kubelet - ExecStopPost=docker rm kubelet - Restart=always - RestartSec=5 - [Install] - WantedBy=multi-user.target -storage: - files: - - path: /etc/kubernetes/kubelet.env - filesystem: root - mode: 0644 - contents: - inline: | - KUBELET_IMAGE_URL=quay.io/kinvolk/kubelet - KUBELET_IMAGE_TAG=v1.19.4 - NODE_LABELS="${join(",", [for k, v in kubelet_labels : "${k}=${v}"])}" - - path: /etc/hostname - filesystem: root - mode: 0644 - contents: - inline: - ${domain_name} - - path: /etc/sysctl.d/max-user-watches.conf - filesystem: root - contents: - inline: | - fs.inotify.max_user_watches=16184 - - path: /etc/kubernetes/configure-kubelet-cgroup-driver - filesystem: root - mode: 0744 - contents: - inline: | - #!/bin/bash - set -e - readonly docker_cgroup_driver="$(docker info -f '{{.CgroupDriver}}')" - cat </etc/kubernetes/kubelet.config - apiVersion: kubelet.config.k8s.io/v1beta1 - kind: KubeletConfiguration - cgroupDriver: "$${docker_cgroup_driver}" - EOF - - path: /etc/docker/daemon.json - filesystem: root - mode: 0500 - contents: - inline: | - { - "live-restore": true, - "log-opts": { - "max-size": "100m", - "max-file": "3" - } - } -passwd: - users: - - name: core - ssh_authorized_keys: ${ssh_keys} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf new file mode 100644 index 000000000..1b56b20d7 --- /dev/null +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf @@ -0,0 +1,15 @@ +module "controller" { + source = "../../../controller" + count = length(var.controller_names) + cluster_name = var.cluster_name + controllers_count = length(var.controller_names) + dns_zone = var.k8s_domain_name + count_index = count.index + cluster_dns_service_ip = module.bootkube.cluster_dns_service_ip + ssh_keys = var.ssh_keys + apiserver = format("%s.%s", var.cluster_name, var.k8s_domain_name) + ca_cert = module.bootkube.ca_cert + kubelet_labels = lookup(var.node_specific_labels, var.controller_names[count.index], {}) + clc_snippets = lookup(var.clc_snippets, var.controller_names[count.index], []) + set_standard_hostname = true +} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf new file mode 100644 index 000000000..a4dab57c8 --- /dev/null +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf @@ -0,0 +1,17 @@ +module "controller_profile" { + source = "../../../matchbox-flatcar" + count = length(var.controller_names) + node_name = var.controller_names[count.index] + node_mac = var.controller_macs[count.index] + download_protocol = var.download_protocol + os_channel = var.os_channel + os_version = var.os_version + http_endpoint = var.matchbox_http_endpoint + kernel_args = var.kernel_args + install_disk = var.install_disk + install_to_smallest_disk = var.install_to_smallest_disk + container_linux_oem = var.container_linux_oem + ssh_keys = var.ssh_keys + ignition_clc_config = module.controller[count.index].clc_config + cached_install = var.cached_install +} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf deleted file mode 100644 index dcd4282a4..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf +++ /dev/null @@ -1,43 +0,0 @@ -resource "matchbox_group" "install" { - count = length(var.controller_names) + length(var.worker_names) - - name = format( - "install-%s", - concat(var.controller_names, var.worker_names)[count.index] - ) - - profile = var.cached_install == true ? matchbox_profile.cached-flatcar-linux-install[count.index].name : matchbox_profile.flatcar-install[count.index].name - selector = { - mac = concat(var.controller_macs, var.worker_macs)[count.index] - } -} - -resource "matchbox_group" "controller" { - count = length(var.controller_names) - name = format( - "%s-%s", - var.cluster_name, - var.controller_names[count.index] - ) - profile = matchbox_profile.controllers[count.index].name - - selector = { - mac = var.controller_macs[count.index] - os = "installed" - } -} - -resource "matchbox_group" "worker" { - count = length(var.worker_names) - name = format( - "%s-%s", - var.cluster_name, - var.worker_names[count.index] - ) - profile = matchbox_profile.workers[count.index].name - - selector = { - mac = var.worker_macs[count.index] - os = "installed" - } -} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf deleted file mode 100644 index 13e23adee..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf +++ /dev/null @@ -1,133 +0,0 @@ -// Flatcar Container Linux install profile (from release.flatcar-linux.net) -resource "matchbox_profile" "flatcar-install" { - count = length(var.controller_names) + length(var.worker_names) - name = format( - "%s-flatcar-install-%s", - var.cluster_name, - concat(var.controller_names, var.worker_names)[count.index] - ) - - kernel = "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe.vmlinuz" - - initrd = [ - "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe_image.cpio.gz", - ] - - args = flatten([ - "initrd=flatcar_production_pxe_image.cpio.gz", - "ignition.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", - "flatcar.first_boot=yes", - "console=tty0", - "console=ttyS0", - var.kernel_args, - ]) - - container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { - os_channel = var.os_channel - os_version = var.os_version - ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) - install_disk = var.install_disk - container_linux_oem = var.container_linux_oem - ssh_keys = jsonencode(var.ssh_keys) - install_to_smallest_disk = var.install_to_smallest_disk - # only cached-container-linux profile adds -b baseurl - baseurl_flag = "" - }) -} - -// Flatcar Container Linux Install profile (from matchbox /assets cache) -// Note: Admin must have downloaded os_version into matchbox assets/flatcar. -resource "matchbox_profile" "cached-flatcar-linux-install" { - count = length(var.controller_names) + length(var.worker_names) - name = format( - "%s-cached-flatcar-linux-install-%s", - var.cluster_name, - concat(var.controller_names, var.worker_names)[count.index] - ) - - kernel = "/assets/flatcar/${var.os_version}/flatcar_production_pxe.vmlinuz" - - initrd = [ - "/assets/flatcar/${var.os_version}/flatcar_production_pxe_image.cpio.gz", - ] - - args = flatten([ - "initrd=flatcar_production_pxe_image.cpio.gz", - "ignition.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", - "flatcar.first_boot=yes", - "console=tty0", - "console=ttyS0", - var.kernel_args, - ]) - - container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { - os_channel = var.os_channel - os_version = var.os_version - ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) - install_disk = var.install_disk - container_linux_oem = var.container_linux_oem - ssh_keys = jsonencode(var.ssh_keys) - install_to_smallest_disk = var.install_to_smallest_disk - # profile uses -b baseurl to install from matchbox cache - baseurl_flag = "-b ${var.matchbox_http_endpoint}/assets/flatcar" - }) -} - -// Kubernetes Controller profiles -resource "matchbox_profile" "controllers" { - count = length(var.controller_names) - name = format( - "%s-controller-%s", - var.cluster_name, - var.controller_names[count.index] - ) - raw_ignition = data.ct_config.controller-ignitions[count.index].rendered -} - -data "ct_config" "controller-ignitions" { - count = length(var.controller_names) - content = templatefile("${path.module}/cl/controller.yaml.tmpl", { - domain_name = var.controller_domains[count.index] - etcd_name = var.controller_names[count.index] - etcd_initial_cluster = join( - ",", - formatlist( - "%s=https://%s:2380", - var.controller_names, - var.controller_domains, - ), - ) - cluster_dns_service_ip = module.bootkube.cluster_dns_service_ip - cluster_domain_suffix = var.cluster_domain_suffix - ssh_keys = jsonencode(var.ssh_keys) - }) - pretty_print = false - - snippets = lookup(var.clc_snippets, var.controller_names[count.index], []) -} - -// Kubernetes Worker profiles -resource "matchbox_profile" "workers" { - count = length(var.worker_names) - name = format( - "%s-worker-%s", - var.cluster_name, - var.worker_names[count.index] - ) - raw_ignition = data.ct_config.worker-ignitions[count.index].rendered -} - -data "ct_config" "worker-ignitions" { - count = length(var.worker_names) - content = templatefile("${path.module}/cl/worker.yaml.tmpl", { - domain_name = var.worker_domains[count.index] - cluster_dns_service_ip = module.bootkube.cluster_dns_service_ip - cluster_domain_suffix = var.cluster_domain_suffix - ssh_keys = jsonencode(var.ssh_keys) - kubelet_labels = merge({ "node.kubernetes.io/node" = "" }, var.labels), - }) - pretty_print = false - - snippets = lookup(var.clc_snippets, var.worker_names[count.index], []) -} - diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf index a14e04189..2d6e82f3a 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf @@ -5,9 +5,7 @@ resource "null_resource" "copy-controller-secrets" { # Without depends_on, remote-exec could start and wait for machines before # matchbox groups are written, causing a deadlock. depends_on = [ - matchbox_group.install, - matchbox_group.controller, - matchbox_group.worker, + module.controller_profile, ] connection { @@ -18,12 +16,7 @@ resource "null_resource" "copy-controller-secrets" { } provisioner "file" { - content = templatefile("${path.module}/cl/bootstrap-kubeconfig.yaml.tmpl", { - token_id = random_string.bootstrap_token_id_controller.result - token_secret = random_string.bootstrap_token_secret_controller.result - ca_cert = module.bootkube.ca_cert - server = "https://${var.k8s_domain_name}:6443" - }) + content = module.controller[count.index].bootstrap_kubeconfig destination = "$HOME/kubeconfig" } @@ -92,42 +85,6 @@ resource "null_resource" "copy-controller-secrets" { } } -# Secure copy kubeconfig to all workers. Activates kubelet.service -resource "null_resource" "copy-worker-secrets" { - count = length(var.worker_names) - - # Without depends_on, remote-exec could start and wait for machines before - # matchbox groups are written, causing a deadlock. - depends_on = [ - matchbox_group.install, - matchbox_group.controller, - matchbox_group.worker, - ] - - connection { - type = "ssh" - host = var.worker_domains[count.index] - user = "core" - timeout = "60m" - } - - provisioner "file" { - content = templatefile("${path.module}/cl/bootstrap-kubeconfig.yaml.tmpl", { - token_id = random_string.bootstrap_token_id_worker.result - token_secret = random_string.bootstrap_token_secret_worker.result - ca_cert = module.bootkube.ca_cert - server = "https://${var.k8s_domain_name}:6443" - }) - destination = "$HOME/kubeconfig" - } - - provisioner "remote-exec" { - inline = [ - "sudo mv $HOME/kubeconfig /etc/kubernetes/kubeconfig", - ] - } -} - # Secure copy bootkube assets to ONE controller and start bootkube to perform # one-time self-hosted cluster bootstrapping. resource "null_resource" "bootkube-start" { @@ -136,7 +93,6 @@ resource "null_resource" "bootkube-start" { # while no Kubelets are running. depends_on = [ null_resource.copy-controller-secrets, - null_resource.copy-worker-secrets, ] connection { diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf index a05774532..4d96e6536 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf @@ -203,3 +203,9 @@ variable "install_to_smallest_disk" { type = bool default = false } + +variable "node_specific_labels" { + type = map(map(string)) + description = "Map of node specific labels map." + default = {} +} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf new file mode 100644 index 000000000..b42de956d --- /dev/null +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf @@ -0,0 +1,15 @@ +module "worker" { + source = "../../../worker" + count = length(var.worker_names) + count_index = count.index + cluster_dns_service_ip = module.bootkube.cluster_dns_service_ip + ssh_keys = var.ssh_keys + cluster_domain_suffix = var.cluster_domain_suffix + ca_cert = module.bootkube.ca_cert + apiserver = format("%s.%s", var.cluster_name, var.k8s_domain_name) + kubelet_labels = merge(lookup(var.node_specific_labels, var.worker_names[count.index], {}), var.labels) + cluster_name = var.cluster_name + clc_snippets = lookup(var.clc_snippets, var.worker_names[count.index], []) + set_standard_hostname = true +} + diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf new file mode 100644 index 000000000..14ba7f2d6 --- /dev/null +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf @@ -0,0 +1,17 @@ +module "worker_profile" { + source = "../../../matchbox-flatcar" + count = length(var.worker_names) + node_name = var.worker_names[count.index] + node_mac = var.worker_macs[count.index] + download_protocol = var.download_protocol + os_channel = var.os_channel + os_version = var.os_version + http_endpoint = var.matchbox_http_endpoint + kernel_args = var.kernel_args + install_disk = var.install_disk + install_to_smallest_disk = var.install_to_smallest_disk + container_linux_oem = var.container_linux_oem + ssh_keys = var.ssh_keys + ignition_clc_config = module.worker[count.index].clc_config + cached_install = var.cached_install +} diff --git a/assets/terraform-modules/controller/main.tf b/assets/terraform-modules/controller/main.tf index 96123492f..f0b2d32e0 100644 --- a/assets/terraform-modules/controller/main.tf +++ b/assets/terraform-modules/controller/main.tf @@ -45,12 +45,12 @@ data "ct_config" "config" { cluster_domain_suffix = var.cluster_domain_suffix kubelet_image_name = var.kubelet_image_name kubelet_image_tag = var.kubelet_image_tag - host_dns_ip = var.host_dns_ip kubelet_docker_extra_args = [] - kubelet_labels = { + hostname = var.set_standard_hostname == true ? "${var.cluster_name}-controller-${var.count_index}" : "" + kubelet_labels = merge(var.kubelet_labels, { "node.kubernetes.io/master" = "", "node.kubernetes.io/controller" = "true", - } + }) kubelet_taints = { "node-role.kubernetes.io/master" = ":NoSchedule" } diff --git a/assets/terraform-modules/controller/variables.tf b/assets/terraform-modules/controller/variables.tf index 71b01cb63..dfd41822c 100644 --- a/assets/terraform-modules/controller/variables.tf +++ b/assets/terraform-modules/controller/variables.tf @@ -78,8 +78,14 @@ variable "kubelet_image_tag" { default = "v1.20.4" } -variable "host_dns_ip" { - type = string - description = "IP address of DNS server to configure on the nodes." - default = "8.8.8.8" +variable "set_standard_hostname" { + type = bool + description = "Sets the hostname if true. Hostname is set as -controller-" + default = false +} + +variable "kubelet_labels" { + type = map(string) + description = "Node labels passed to kubelet --node-labels flag. E.g. { { \"node.kubernetes.io/node\" = \"\" }" + default = {} } diff --git a/assets/terraform-modules/matchbox-flatcar/groups.tf b/assets/terraform-modules/matchbox-flatcar/groups.tf new file mode 100644 index 000000000..6f994a29b --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/groups.tf @@ -0,0 +1,25 @@ +resource "matchbox_group" "install" { + name = format( + "install-%s", + var.node_name + ) + + profile = var.cached_install == true ? matchbox_profile.cached-flatcar-linux-install.name : matchbox_profile.flatcar-install.name + selector = { + mac = var.node_mac + } +} + +resource "matchbox_group" "node" { + name = format( + "%s", + var.node_name + ) + profile = matchbox_profile.node.name + + selector = { + mac = var.node_mac + os = "installed" + } +} + diff --git a/assets/terraform-modules/matchbox-flatcar/profiles.tf b/assets/terraform-modules/matchbox-flatcar/profiles.tf new file mode 100644 index 000000000..7d2734181 --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/profiles.tf @@ -0,0 +1,78 @@ +resource "matchbox_profile" "flatcar-install" { + name = format( + "flatcar-install-%s", + var.node_name + ) + + kernel = "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe.vmlinuz" + + initrd = [ + "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe_image.cpio.gz", + ] + + args = flatten([ + "initrd=flatcar_production_pxe_image.cpio.gz", + "ignition.config.url=${var.http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", + "flatcar.first_boot=yes", + "console=tty0", + "console=ttyS0", + var.kernel_args, + ]) + + container_linux_config = templatefile("${path.module}/templates/install.yaml.tmpl", { + os_channel = var.os_channel + os_version = var.os_version + ignition_endpoint = format("%s/ignition", var.http_endpoint) + install_disk = var.install_disk + container_linux_oem = var.container_linux_oem + ssh_keys = jsonencode(var.ssh_keys) + install_to_smallest_disk = var.install_to_smallest_disk + # only cached-container-linux profile adds -b baseurl + baseurl_flag = "" + }) +} + +// Flatcar Container Linux Install profile (from matchbox /assets cache) +// Note: Admin must have downloaded os_version into matchbox assets/flatcar. +resource "matchbox_profile" "cached-flatcar-linux-install" { + name = format( + "cached-flatcar-linux-install-%s", + var.node_name + ) + + kernel = "/assets/flatcar/${var.os_version}/flatcar_production_pxe.vmlinuz" + + initrd = [ + "/assets/flatcar/${var.os_version}/flatcar_production_pxe_image.cpio.gz", + ] + + args = flatten([ + "initrd=flatcar_production_pxe_image.cpio.gz", + "ignition.config.url=${var.http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", + "flatcar.first_boot=yes", + "console=tty0", + "console=ttyS0", + var.kernel_args, + ]) + + container_linux_config = templatefile("${path.module}/templates/install.yaml.tmpl", { + os_channel = var.os_channel + os_version = var.os_version + ignition_endpoint = format("%s/ignition", var.http_endpoint) + install_disk = var.install_disk + container_linux_oem = var.container_linux_oem + ssh_keys = jsonencode(var.ssh_keys) + install_to_smallest_disk = var.install_to_smallest_disk + # profile uses -b baseurl to install from matchbox cache + baseurl_flag = "-b ${var.http_endpoint}/assets/flatcar" + }) +} + +resource "matchbox_profile" "node" { + name = format( + "node-%s", + var.node_name + ) + raw_ignition = var.ignition_clc_config +} + diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl b/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl similarity index 90% rename from assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl rename to assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl index 2182ced0f..c395fd304 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl +++ b/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl @@ -12,9 +12,9 @@ systemd: ExecStart=/opt/installer [Install] WantedBy=multi-user.target - # Avoid using the standard SSH port so terraform apply cannot SSH until + # Avoid using the standard SSH port so Terraform apply cannot SSH until # post-install. But admins may SSH to debug disk install problems. - # After install, sshd will use port 22 and users/terraform can connect. + # After install, sshd will use port 22 and users/Terraform can connect. - name: sshd.socket dropins: - name: 10-sshd-port.conf diff --git a/assets/terraform-modules/matchbox-flatcar/variables.tf b/assets/terraform-modules/matchbox-flatcar/variables.tf new file mode 100644 index 000000000..77d3e6e0e --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/variables.tf @@ -0,0 +1,72 @@ +variable "http_endpoint" { + type = string + description = "Matchbox HTTP read-only endpoint (e.g. http://matchbox.example.com:8080)." +} + +variable "os_channel" { + type = string + description = "Flatcar Container Linux channel to install from (stable, beta, alpha, edge)." + default = "stable" +} + +variable "os_version" { + type = string + description = "Flatcar Container Linux version to install (for example '2191.5.0' - see https://www.flatcar-linux.org/releases/)." + default = "current" +} + +variable "download_protocol" { + type = string + description = "Protocol iPXE should use to download the kernel and initrd. Defaults to https, which requires iPXE compiled with crypto support. Unused if cached_install is true." + default = "https" +} + +variable "cached_install" { + type = bool + description = "Whether the operating system should PXE boot and install from matchbox /assets cache. Note that the admin must have downloaded the os_version into matchbox assets." + default = false +} + +variable "install_disk" { + type = string + description = "Disk device to which the install profiles should install the operating system (e.g. /dev/sda)." + default = "/dev/sda" +} + +variable "container_linux_oem" { + type = string + description = "DEPRECATED: Specify an OEM image id to use as base for the installation (e.g. ami, vmware_raw, xen) or leave blank for the default image." + default = "" +} + +variable "kernel_args" { + type = list(string) + description = "Additional kernel arguments to provide at PXE boot." + default = [] +} + +variable "install_to_smallest_disk" { + type = bool + description = "Install Flatcar Container Linux to the smallest disk." + default = false +} + +variable "ssh_keys" { + type = list(string) + description = "SSH public keys for user 'core'." +} + +variable "ignition_clc_config" { + type = string + description = "Ignition CLC snippets to include in the configuration." +} + +variable "node_name" { + type = string + description = "Name of the node/machine." +} + +variable "node_mac" { + type = string + description = "MAC address identifying the node/machine (e.g. 52:54:00:a1:9c:ae)." +} diff --git a/assets/terraform-modules/matchbox-flatcar/versions.tf b/assets/terraform-modules/matchbox-flatcar/versions.tf new file mode 100644 index 000000000..878d1c33a --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/versions.tf @@ -0,0 +1,18 @@ +terraform { + required_version = ">= 0.13" + + required_providers { + template = { + source = "hashicorp/template" + version = "2.2.0" + } + matchbox = { + source = "poseidon/matchbox" + version = "0.4.1" + } + random = { + source = "hashicorp/random" + version = "3.0.0" + } + } +} diff --git a/assets/terraform-modules/node/main.tf b/assets/terraform-modules/node/main.tf index d9d782ec6..83d91d0f4 100644 --- a/assets/terraform-modules/node/main.tf +++ b/assets/terraform-modules/node/main.tf @@ -12,11 +12,8 @@ data "ct_config" "config" { kubelet_labels = var.kubelet_labels kubelet_taints = var.kubelet_taints kubelet_docker_extra_args = var.kubelet_docker_extra_args - host_dns_ip = var.host_dns_ip + hostname = "" }) - snippets = concat(var.clc_snippets, [ - # Allow to pass unique snippets per controller node. For example, to set the hostname. - var.clc_snippet_index != "" ? format(var.clc_snippet_index, count.index) : "", - ]) + snippets = var.clc_snippets } diff --git a/assets/terraform-modules/node/templates/node.yaml.tmpl b/assets/terraform-modules/node/templates/node.yaml.tmpl index 01d0cb616..61674625d 100644 --- a/assets/terraform-modules/node/templates/node.yaml.tmpl +++ b/assets/terraform-modules/node/templates/node.yaml.tmpl @@ -144,14 +144,26 @@ storage: --entrypoint=/usr/local/bin/kubectl \ ${kubelet_image_name}:${kubelet_image_tag} \ --kubeconfig=/var/lib/kubelet/kubeconfig delete node $(hostname) - - path: /etc/systemd/resolved.conf.d/dns_servers.conf + - path: /etc/docker/daemon.json + filesystem: root + mode: 0500 + contents: + inline: | + { + "live-restore": true, + "log-opts": { + "max-size": "100m", + "max-file": "3" + } + } + %{~ if hostname != "" ~} + - path: /etc/hostname filesystem: root mode: 0644 contents: inline: | - [Resolve] - DNS=${host_dns_ip} - Domains=~. + ${hostname} + %{~ endif ~} passwd: users: - name: core diff --git a/assets/terraform-modules/node/variables.tf b/assets/terraform-modules/node/variables.tf index b4d4605df..da097956c 100644 --- a/assets/terraform-modules/node/variables.tf +++ b/assets/terraform-modules/node/variables.tf @@ -63,9 +63,3 @@ variable "cluster_domain_suffix" { description = "Cluster domain suffix. Passed to kubelet as --cluster_domain flag." default = "cluster.local" } - -variable "host_dns_ip" { - type = string - description = "IP address of DNS server to configure on the nodes." - default = "8.8.8.8" -} diff --git a/assets/terraform-modules/platforms/tinkerbell/controllers/main.tf b/assets/terraform-modules/platforms/tinkerbell/controllers/main.tf index 7eacfaacc..6906e3121 100644 --- a/assets/terraform-modules/platforms/tinkerbell/controllers/main.tf +++ b/assets/terraform-modules/platforms/tinkerbell/controllers/main.tf @@ -10,20 +10,21 @@ module "controller" { cluster_dns_service_ip = module.bootkube.cluster_dns_service_ip ssh_keys = var.ssh_keys cluster_domain_suffix = var.cluster_domain_suffix - host_dns_ip = var.host_dns_ip apiserver = format("%s.%s", var.cluster_name, var.dns_zone) ca_cert = module.bootkube.ca_cert - + set_standard_hostname = true clc_snippets = concat(var.clc_snippets, [ < 0 ? var.kubelet_labels : { "node.kubernetes.io/node" = "" diff --git a/assets/terraform-modules/worker/variables.tf b/assets/terraform-modules/worker/variables.tf index 0ecedc1a2..9e166da72 100644 --- a/assets/terraform-modules/worker/variables.tf +++ b/assets/terraform-modules/worker/variables.tf @@ -4,6 +4,10 @@ variable "ca_cert" { description = "Kubernetes CA certificate needed in the kubeconfig file." } +variable "cluster_name" { + type = string + description = "Cluster name." +} variable "apiserver" { type = string description = "Apiserver private endpoint needed in the kubeconfig file." @@ -64,8 +68,8 @@ variable "cluster_domain_suffix" { default = "cluster.local" } -variable "host_dns_ip" { - type = string - description = "IP address of DNS server to configure on the nodes." - default = "8.8.8.8" +variable "set_standard_hostname" { + type = bool + description = "Sets the hostname if true. Hostname is set as -worker-" + default = false } diff --git a/ci/baremetal/baremetal-cluster.lokocfg.envsubst b/ci/baremetal/baremetal-cluster.lokocfg.envsubst index eb9bdd24f..5544e8fdc 100644 --- a/ci/baremetal/baremetal-cluster.lokocfg.envsubst +++ b/ci/baremetal/baremetal-cluster.lokocfg.envsubst @@ -9,7 +9,7 @@ cluster "bare-metal" { matchbox_endpoint = "matchbox.example.com:8081" matchbox_http_endpoint = "http://matchbox.example.com:8080" cluster_name = "mercury" - k8s_domain_name = "node1.example.com" + k8s_domain_name = "example.com" controller_domains = [ "node1.example.com", ] @@ -41,6 +41,20 @@ cluster "bare-metal" { "roleofnode" = "testing", } + node_specific_labels = { + "node1" = { + "testkey": "testvalue" + } + + "node2" = { + "ingressnode": "yes" + } + + "node3" = { + "storagenode": "yes" + } + } + conntrack_max_per_core = 65000 install_to_smallest_disk = "true" diff --git a/docs/configuration-reference/platforms/baremetal.md b/docs/configuration-reference/platforms/baremetal.md index 33e7d3623..5b903ad10 100644 --- a/docs/configuration-reference/platforms/baremetal.md +++ b/docs/configuration-reference/platforms/baremetal.md @@ -80,6 +80,20 @@ cluster "bare-metal" { "testlabel" = "" } + node_specific_labels = { + "node1" = { + "key1": "value1" + } + + "node2" = { + "key2": "value2" + } + + "node3" = { + "key3": "value3" + } + } + network_mtu = 1500 controller_domains = var.controller_domains @@ -144,41 +158,47 @@ os_version = var.custom_default_os_version ## Attribute reference -| Argument | Description | Default | Type | Required | -|-----------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------|--------------|----------| -| `asset_dir` | Location where Lokomotive stores cluster assets. | - | string | true | -| `cached_install` | Whether the operating system should PXE boot and install from matchbox /assets cache. Note that the admin must have downloaded the `os_version` into matchbox assets. | "false" | string | false | -| `cluster_name` | Name of the cluster. | - | string | true | -| `controller_domains` | Ordered list of controller FQDNs. Example: ["node1.example.com"] | - | list(string) | true | -| `controller_macs` | Ordered list of controller identifying MAC addresses. Example: ["52:54:00:a1:9c:ae"] | - | list(string) | true | -| `controller_names` | Ordered list of controller names. Example: ["node1"] | - | list(string) | true | -| `k8s_domain_name` | Controller DNS name which resolves to a controller instance. Workers and kubeconfig's will communicate with this endpoint. Example: "cluster.example.com" | - | string | true | -| `labels` | Map of extra Kubernetes Node labels for worker nodes. | - | map(string) | false | -| `matchbox_ca_path` | Path to the CA to verify and authenticate client certificates. | - | string | true | -| `matchbox_client_cert_path` | Path to the server TLS certificate file. | - | string | true | -| `matchbox_client_key_path` | Path to the server TLS key file. | - | string | true | -| `matchbox_endpoint` | Matchbox API endpoint. | - | string | true | -| `matchbox_http_endpoint` | Matchbox HTTP read-only endpoint. Example: "http://matchbox.example.com:8080" | - | string | true | -| `network_mtu` | Physical Network MTU. | 1500 | number | false | -| `worker_names` | Ordered list of worker names. Example: ["node2", "node3"] | - | list(string) | true | -| `worker_macs` | Ordered list of worker identifying MAC addresses. Example ["52:54:00:b2:2f:86", "52:54:00:c3:61:77"] | - | list(string) | true | -| `worker_domains` | Ordered list of worker FQDNs. Example ["node2.example.com", "node3.example.com"] | - | list(string) | true | -| `ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | -| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | -| `os_channel` | Flatcar Container Linux channel to install from ("stable", "beta", "alpha", "edge"). | "stable" | string | false | -| `encrypt_pod_traffic` | Enable in-cluster pod traffic encryption. If true `network_mtu` is reduced by 60 to make room for the encryption header. | false | bool | false | -| `ignore_x509_cn_check` | Ignore check of common name in x509 certificates. If any application is built pre golang 1.15 then API server rejects x509 from such application, enable this to get around apiserver. | false | bool | false | -| `install_to_smallest_disk` | Installs Flatcar Container Linux to the smallest disk. | false | bool | false | -| `install_disk` | Disk device where Flatcar Container Linux should be installed. | "/dev/sda" | string | false | -| `kernel_args` | Additional kernel args to provide at PXE boot. | ["kvm-intel.nested=1"] | list(string) | false | + + + + + +| Argument | Description | Default | Type | Required | +|-----------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------|-------------------|----------| +| `asset_dir` | Location where Lokomotive stores cluster assets. | - | string | true | +| `cached_install` | Whether the operating system should PXE boot and install from matchbox /assets cache. Note that the admin must have downloaded the `os_version` into matchbox assets. | "false" | string | false | +| `cluster_name` | Name of the cluster. | - | string | true | +| `controller_domains` | Ordered list of controller FQDNs. Example: ["node1.example.com"] | - | list(string) | true | +| `controller_macs` | Ordered list of controller identifying MAC addresses. Example: ["52:54:00:a1:9c:ae"] | - | list(string) | true | +| `controller_names` | Ordered list of controller names. Example: ["node1"] | - | list(string) | true | +| `k8s_domain_name` | Domain name which will be used for cluster DNS entries. E.g. If you set it to "example.com", then .example.com must be set to point to controller IP addresses. Example: "mercury.example.com" | - | string | true | +| `labels` | Map of extra Kubernetes Node labels for worker nodes. | - | map(string) | false | +| `node_specific_labels` | Map of map of extra Kubernetes Node labels specific to a Node. Node specific labels provided will be appended along with `labels`. | - | map(map(string)) | false | +| `matchbox_ca_path` | Path to the CA to verify and authenticate client certificates. | - | string | true | +| `matchbox_client_cert_path` | Path to the server TLS certificate file. | - | string | true | +| `matchbox_client_key_path` | Path to the server TLS key file. | - | string | true | +| `matchbox_endpoint` | Matchbox API endpoint. | - | string | true | +| `matchbox_http_endpoint` | Matchbox HTTP read-only endpoint. Example: "http://matchbox.example.com:8080" | - | string | true | +| `network_mtu` | Physical Network MTU. | 1500 | number | false | +| `worker_names` | Ordered list of worker names. Example: ["node2", "node3"] | - | list(string) | true | +| `worker_macs` | Ordered list of worker identifying MAC addresses. Example ["52:54:00:b2:2f:86", "52:54:00:c3:61:77"] | - | list(string) | true | +| `worker_domains` | Ordered list of worker FQDNs. Example ["node2.example.com", "node3.example.com"] | - | list(string) | true | +| `ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | +| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | +| `os_channel` | Flatcar Container Linux channel to install from ("stable", "beta", "alpha", "edge"). | "stable" | string | false | +| `encrypt_pod_traffic` | Enable in-cluster pod traffic encryption. If true `network_mtu` is reduced by 60 to make room for the encryption header. | false | bool | false | +| `ignore_x509_cn_check` | Ignore check of common name in x509 certificates. If any application is built pre golang 1.15 then API server rejects x509 from such application, enable this to get around apiserver. | false | bool | false | +| `install_to_smallest_disk` | Installs Flatcar Container Linux to the smallest disk. | false | bool | false | +| `install_disk` | Disk device where Flatcar Container Linux should be installed. | "/dev/sda" | string | false | +| `kernel_args` | Additional kernel args to provide at PXE boot. | ["kvm-intel.nested=1"] | list(string) | false | | `download_protocol` | Protocol iPXE uses to download the kernel and initrd. iPXE must be compiled with crypto support for https. Unused if `cached_install` is true. Use `http` if the iPXE boot using `https` is slow or does not work due to SSL settings. | "https" | string | false | -| `network_ip_autodetection_method` | Method to detect host IPv4 address. Accepted values include 'first-found', 'can-reach=', 'interface=', 'skip-interface=, 'cidr='. | "first-found" | string | false | -| `oidc` | OIDC configuration block. | - | object | false | -| `oidc.issuer_url` | URL of the provider which allows the API server to discover public signing keys. Only URLs which use the https:// scheme are accepted. | - | string | false | -| `oidc.client_id` | A client id that all tokens must be issued for. | "clusterauth" | string | false | -| `oidc.username_claim` | JWT claim to use as the user name. | "email" | string | false | -| `oidc.groups_claim` | JWT claim to use as the user’s group. | "groups" | string | false | -| `conntrack_max_per_core` | Maximum number of entries in conntrack table per CPU on all nodes in the cluster. If you require more fain-grained control over this value, set it to 0 and add CLC snippet setting `net.netfilter.nf_conntrack_max` sysctl setting per node pool. See [Flatcar documentation about sysctl](https://docs.flatcar-linux.org/os/other-settings/#tuning-sysctl-parameters) for more details. | 32768 | number | false | +| `network_ip_autodetection_method` | Method to detect host IPv4 address. Accepted values include 'first-found', 'can-reach=', 'interface=', 'skip-interface=, 'cidr='. | "first-found" | string | false | +| `oidc` | OIDC configuration block. | - | object | false | +| `oidc.issuer_url` | URL of the provider which allows the API server to discover public signing keys. Only URLs which use the https:// scheme are accepted. | - | string | false | +| `oidc.client_id` | A client id that all tokens must be issued for. | "clusterauth" | string | false | +| `oidc.username_claim` | JWT claim to use as the user name. | "email" | string | false | +| `oidc.groups_claim` | JWT claim to use as the user’s group. | "groups" | string | false | +| `conntrack_max_per_core` | Maximum number of entries in conntrack table per CPU on all nodes in the cluster. If you require more fain-grained control over this value, set it to 0 and add CLC snippet setting `net.netfilter.nf_conntrack_max` sysctl setting per node pool. See [Flatcar documentation about sysctl](https://docs.flatcar-linux.org/os/other-settings/#tuning-sysctl-parameters) for more details. | 32768 | number | false | ## Applying diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index e2af56afc..e09513e90 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -5918,55 +5918,23 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf": &vfsgen۰CompressedFileInfo{ name: "bootkube.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1283, + uncompressedSize: 1382, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\x31\x8f\xdb\x3c\x0c\x86\x77\xfd\x0a\xe2\x6e\xf9\x3e\xe0\x9a\x76\x29\xd0\x0e\xd9\xba\x75\xec\x78\x38\x10\x8a\x44\x3b\x82\x65\xd1\x20\xe9\x34\x87\xa2\xff\xbd\x50\xec\x5c\x8c\xc4\x49\x90\xed\x7d\x1e\x53\x22\xa9\x67\xf8\x45\xb9\xf9\xb4\x67\x35\x8a\xf0\x73\xdc\x91\x14\x32\x52\xf0\xaa\x64\x0a\xff\x75\xe3\x8e\x02\x97\x26\xb5\x2f\xd0\xfb\x92\x1a\x52\xd3\xff\x5d\xcf\x71\xcc\x04\x4f\x3b\x66\xab\xc8\x13\xfc\x71\x00\xca\xa3\x04\x82\x2d\x3c\x6d\x36\x9f\xa7\xff\x07\xe0\x1c\x40\xc8\xa3\x1a\x09\x16\xdf\x13\xac\xfc\xb6\x70\xf0\xb2\x59\x52\x0e\xc0\x0f\x09\x95\xe4\x40\xa2\x6b\x0e\x6c\xe1\xb5\x5a\xdd\x37\xc5\xc8\xbd\x4f\xe5\x24\xbe\x39\x00\xb2\x10\x1f\xa9\x73\x39\x2e\x26\x9c\x33\xc9\xec\xeb\x59\xa5\x12\x07\x4e\xc5\x56\xe4\x2d\xbc\xd6\x0a\xa7\x2e\x61\x4c\xb2\x7a\xb2\x73\x85\x0f\xca\x01\x14\xb2\xdf\x2c\x1d\xf6\x36\x3e\x30\x16\xd4\xc2\x49\x03\xfa\xd1\x38\x92\x51\xb0\xc4\x05\x7b\xb2\x3d\xc7\x2b\xe7\x0e\xe5\x00\x06\x8e\x18\x52\xbc\x77\xd8\xf9\x3b\x67\xaa\xce\x93\xe4\x90\x02\xdd\x95\x26\x61\x49\x2d\x86\x3c\x0f\x43\xc7\xa6\x49\xc7\xdb\xae\xaf\x51\xb5\xf1\xc5\xef\x32\xa1\xd0\xc0\x62\xa9\xb4\xeb\x25\xaf\xa9\x8b\xe8\xdb\x56\xa8\xf5\xf5\xe2\x0f\xc4\x05\xe5\x00\xea\x7e\xa2\x1f\xd2\xb4\x2a\x48\x47\x13\x8f\x4d\xf6\xad\x2e\xd5\xfb\xd4\x69\xb5\x49\x4c\xf1\xe0\x73\x8a\xc9\xde\x71\x20\x49\x1c\x71\xcf\xa3\xe8\xf9\xc6\xf7\x89\xfa\x81\x67\xf8\x91\xb4\x1e\x0e\x6c\x4f\xa0\x94\x1b\x98\x5f\x65\x2d\x9c\xc9\x36\x0e\x20\x4e\x08\xd6\x18\xa7\x18\xe7\x78\xae\xf2\x80\xa8\x55\xea\x73\x54\x13\x3f\xa0\x71\x47\x45\xcf\xcb\x9c\x39\xf8\xbc\x7c\x0a\x57\xe0\x0b\x4c\x44\xdd\xb0\xdb\xf4\xed\xd2\x7f\xcb\x7a\x49\x61\x0b\x26\x23\x9d\xd2\x20\xef\x83\x61\x5d\x2e\x13\xdf\x34\x29\x5c\x46\x72\x13\xd5\x93\xa6\xb6\xb0\x10\x1e\xbf\x7e\xf9\x8e\xa1\x60\xd8\x53\xe8\x66\x63\x2d\x3a\xcd\x80\x4b\x31\xf1\xa1\xc3\xde\x1f\x6b\x83\x31\xb0\xd0\xe5\x99\xaf\x84\xee\xaf\xfb\x17\x00\x00\xff\xff\x1f\x31\xbe\x76\x03\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x94\x41\x6f\xdb\x3c\x0c\x86\xef\xfa\x15\x44\x8a\x02\xed\x87\x7e\x5e\x2f\x03\xb6\x43\x6e\xdb\x69\xc7\x1d\x8b\x82\x50\x24\xda\x11\x62\x8b\x06\x49\x67\x29\x86\xfd\xf7\x41\xb1\x93\x78\x8d\xd3\x20\x97\xe8\x7d\x5e\x91\x14\xc9\xdc\xc1\x4f\x6a\xeb\xff\xb7\xac\x46\x11\x7e\x0c\x1b\x92\x4c\x46\x0a\x5e\x95\x4c\xe1\x61\x37\x6c\x28\x70\xae\x53\xf3\x04\x9d\xcf\xa9\x26\x35\x7d\x74\x1d\xc7\xa1\x25\x58\x6d\x98\xad\x20\x2b\xf8\xed\x00\x94\x07\x09\x04\x6b\x58\x55\xd5\xa7\xf1\x7b\x06\x9c\x03\x08\xed\xa0\x46\x82\xd9\x77\x85\xda\x7b\xa9\xe6\x47\x0e\xc0\xf7\x09\x95\x64\x4f\xa2\x00\x6b\x78\xa9\x59\x3a\x6f\x0f\xab\x7b\xad\xee\x75\xf5\x74\x65\x19\x4f\x76\x5f\x14\x23\x77\x3e\xe5\xe3\xe1\xe3\xab\x03\xb8\x83\xef\x3e\x6c\x21\x65\x35\x9f\x03\x01\xd7\x10\x38\x9b\x70\xdb\x92\xc0\x94\x7f\x43\x99\xc4\x97\x7a\x6d\x4b\xa0\x25\x2d\x25\x2b\x2c\x59\x88\xa7\x4c\x2a\x07\xff\xfc\x86\x85\xcf\x7a\xba\xb2\xba\x04\x79\x79\x7e\xad\xe6\xb6\xd3\x2d\x94\x63\xcf\x29\xdb\xc2\x3d\x6b\x78\x29\xb9\x1f\x1f\x1f\x63\x92\xa5\x48\x47\xac\x54\x7d\xa6\x1c\x40\x26\xfb\xc5\xb2\xc3\xce\x86\x0f\x1c\x33\x6a\xe6\x49\x3d\xfa\xc1\x38\x92\x51\xb0\xc4\x19\x3b\xb2\x2d\xc7\x77\x9e\x1b\x94\x03\xe8\x39\x62\x48\xf1\x56\xb2\xd3\x3d\x27\xaa\x8c\x09\xc9\x3e\x05\xba\x69\x1a\x0d\x73\x6a\x36\x3b\x53\x9f\x75\xa8\xeb\x74\xb8\x32\x2d\x52\xe5\xe1\xb3\xdf\xb4\x84\x42\x3d\x8b\xa5\xdc\x2c\x87\x7c\x4f\x5d\x8c\xbe\x69\x84\x1a\x5f\x0a\xff\xc0\x38\xa3\x1c\x40\x19\x7b\xf4\x7d\x1a\xdb\x8f\x74\x30\xf1\x58\xb7\xbe\xd1\xb9\xf5\x36\x75\xdc\x18\x12\x53\xdc\xfb\x36\xc5\x64\x6f\xd8\x93\x24\x8e\xb8\xe5\x41\xf4\x54\xf1\x6d\xc2\x1d\xd7\xe0\x5b\xd2\x92\xdc\x38\xe1\xd4\xd6\x30\x2d\x7b\x09\xdc\x92\x95\xe1\x8e\x23\x82\x45\xc6\x51\xc6\x49\x9e\xa2\x7c\x40\x94\x28\x65\xcb\xd5\xc4\xf7\x68\xbc\xa3\xac\x53\x7d\x81\x73\xf0\xf6\x70\xb5\x19\xd5\x7f\xd5\x3b\xc7\xd3\x69\x7d\xca\xac\x2d\x01\x8f\x97\x5e\x58\xab\x78\x56\x61\x0d\x26\x03\x1d\xd5\x20\x6f\xbd\x61\x19\x34\x13\x5f\xd7\x29\x5c\xda\x73\x25\x95\xac\x53\x93\x59\x08\x0f\x9f\x9f\xbf\x62\xc8\x18\xb6\x14\x76\x93\x63\x49\x3a\xf6\x83\x73\x36\xf1\x61\x87\x9d\x3f\x94\xc7\xc6\xc0\x72\xfe\x2f\x5b\x14\xdd\x1f\xf7\x37\x00\x00\xff\xff\x89\x1e\xe9\x48\x66\x05\x00\x00"), }, - "/terraform-modules/bare-metal/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: 1030, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x91\xcb\x4e\x2b\x31\x0c\x86\xf7\x79\x8a\x5f\x73\x36\x87\xcd\x48\x6c\xd8\x75\xcd\x63\x44\x69\xc6\x4c\xa3\x9a\x38\x72\x3c\x42\x15\x9a\x77\x47\x9d\x20\x2e\x43\x05\x94\x8b\xc4\x2e\x89\x9c\xcf\x9f\x7f\xb3\xc4\xc0\x15\xf7\x0e\x88\x92\x4d\x85\x99\xd4\x6f\x45\xac\x9a\x86\xe2\x4d\xf6\x94\xb1\x59\x0a\x80\xe5\xe6\xd3\x70\x3c\x63\x03\x0d\x79\x90\x5b\x5f\x4d\x53\x1e\xfb\xd5\x27\x9f\x06\xff\x8c\xec\x95\xea\xc4\xf6\x82\x52\x29\x2a\xd9\x87\x94\x56\x76\x92\x34\x3b\x07\xdc\x89\xee\x7f\xd0\xb8\xe1\xbe\x6b\xbb\xa6\xcc\x6e\x76\xee\x1f\xae\x29\x93\x06\x23\x04\x44\x3d\x14\x93\x51\x43\xd9\xa5\x18\x98\x0f\x8f\xe0\xd6\x0e\x69\xc0\xff\x32\x6d\x39\xc5\x8b\xde\x29\x55\x99\x34\x12\xba\x57\xcd\x3b\x74\xef\x46\xde\x2d\x11\x30\xe5\xd1\x76\xc7\xd9\xaf\x1c\x30\x95\x42\xba\x24\x71\x13\xb8\x92\x03\x6a\xa1\x98\x02\x3f\xbd\x9c\x29\xda\x06\x3e\xc7\xf1\xcd\x42\xd7\x9e\x97\xbf\x22\xfa\xf5\x44\xdb\x32\xff\x76\x9a\xa7\x1d\x3f\x9d\xe4\x43\x00\x00\x00\xff\xff\x12\xac\x1f\x24\x06\x04\x00\x00"), - }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl": &vfsgen۰DirInfo{ - name: "cl", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/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/bare-metal/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: 8561, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x1a\x7f\x6f\xdb\xb6\xf2\xff\x7e\x8a\x9b\x67\x2c\xed\x50\xda\xce\x96\xfd\xd2\x9b\x0a\xb8\x8e\xda\x19\x4d\xd3\xc2\x76\x56\x3c\x64\x9d\x41\x4b\x67\x9b\xb3\x44\x6a\x24\xe5\xc4\xf3\xf2\xdd\x1f\x48\xc9\xb6\x44\xc9\x49\xba\x15\x0f\x01\x64\x91\xbc\xdf\x47\xde\x1d\x4f\x21\x84\x3c\x51\x1b\xa5\x31\x89\xbc\x27\x00\x19\x67\x5a\x99\x17\x00\x02\x9c\x26\xe8\x01\xea\x30\xea\x28\x94\x6b\x16\xa2\x5d\x00\x40\x4e\x67\x31\x7a\xa0\x65\xb6\x9b\x0a\x05\xd7\xc8\xb5\xf2\xe0\xef\x62\x06\xe0\xfa\x8a\x33\xfd\x71\x3f\x3c\x47\x15\x4a\x96\x6a\x26\xb8\x6f\x88\xc2\xd3\xb1\x65\x0c\xfd\x34\x8d\x59\x48\xcd\x02\x0c\x04\xd7\x94\x71\x94\xcf\x0e\x78\x22\xcc\x12\xe4\xda\x02\xf8\x4b\xad\x53\xe5\x75\xbb\x0b\xa6\x97\xd9\xac\x13\x8a\xa4\x6b\x88\x11\x26\xec\xef\x1e\xeb\x03\xe5\x5a\xf9\x91\x08\x57\x28\x1d\xf1\x01\xfa\x73\x8d\xf2\xd8\xe2\xf5\x38\x9f\x38\x48\x3e\xd9\xa4\xe8\x2b\x96\xa4\xf1\x01\x6a\x84\x4a\x53\xa9\x7d\x1a\xdf\xd0\x8d\x72\xa7\xc7\x18\xfa\xdf\x1d\x66\x27\x2c\x41\x91\xe9\xf1\x6e\xa9\xb7\x5f\xb9\x60\x09\xd3\x97\xef\x5e\x0d\x2f\x02\xff\xac\xd7\xeb\x1d\x56\x02\xbe\x66\x52\x70\xa3\xf9\x2b\x16\xa3\x6f\xd4\xeb\xae\xb2\x19\x4a\x8e\x1a\x95\xd5\xb6\x83\x7c\x7d\x40\xb8\xc5\xd0\x72\x78\x2f\xd1\x27\xb9\x72\x20\x13\x20\x73\xa8\x58\xa6\x02\xa7\x96\x40\x42\x68\xed\xa0\x33\x0e\x24\x82\xdf\xf6\xb0\x00\x84\x98\x6d\x90\x3b\xac\x3a\x2f\x0b\x0b\x64\x3c\x46\xa5\x88\xd2\x22\x4d\xd1\x05\x8a\xc5\x82\x44\x92\xad\x51\xfa\x7f\x88\x4c\x72\x1a\xd7\xc8\xa3\xbe\x11\x72\xe5\x2f\x85\xd2\xd5\xa5\x0c\xda\x4f\x59\x64\x7e\x7f\x6b\xb5\xdb\xdb\xab\x71\x30\xba\xfb\xad\xf5\xcc\x6b\x9c\xad\xa2\xae\xa1\xdd\xde\x06\x93\xc1\xf9\xf4\xbc\x3f\xe9\x4f\xcf\x87\xa3\x3b\xaf\x3e\x23\x6f\x1a\xb0\xc6\xe3\x8b\x3d\xfc\xfe\x5d\x0a\x47\x6a\xe4\x6b\x32\x67\x31\xc2\x31\xb7\x54\xe0\xdb\xed\xed\xf0\x6d\xff\x75\x30\xbd\x1a\x5d\x58\xc2\xf9\x68\xd2\x7f\x7d\xd7\xaa\xfb\xa5\xd8\x98\x10\x8b\x85\x3a\xe2\x3d\x91\xee\x80\x8c\xd9\x9b\x21\xde\x0b\xb5\x27\x25\x93\x2a\xcc\xf5\x90\x2b\x4d\xe3\xf8\x63\xe5\xbc\x60\xf4\x72\xe3\x27\x59\xac\x19\xc9\x14\xca\x8e\xa6\x72\x81\xba\x12\x0d\x1a\xcf\x4c\x2d\x1e\xec\xa0\x63\x11\xae\x54\xc2\xf4\xd2\x8d\x20\x09\x55\xab\x06\x78\x63\xc7\x18\x75\x27\xa5\x7a\xf9\xd9\x62\xcd\x07\xaa\xc3\x25\xcc\x85\xb4\xe4\x43\xc1\xe7\x6c\x71\xc0\x7b\x4f\xf5\xf2\x80\x67\x46\xc1\x2d\x53\x5a\xd5\xce\x5b\x13\xf2\x3f\xb5\xe2\x0d\x65\x9a\xcc\x85\x24\x11\x57\x9f\x3d\xb6\x7e\xa0\x4c\x5b\x75\xcf\x2f\xc7\x80\x5c\x4b\x86\xca\x09\x8b\x45\xc4\x37\x47\x58\xc4\x6b\x74\xbd\x03\xf0\x12\xe7\x42\xa2\xbf\xf3\xc7\xc3\x21\x72\x17\x0e\x05\x27\x73\xca\xe2\x4c\xd6\x22\xa5\x1b\x12\x4d\x4c\x15\x1c\xd5\x52\xe8\x12\x68\x42\x19\xb7\xd1\x39\xb8\x65\xda\x2f\x19\xa1\x7c\x3e\xba\x33\xc6\xbb\x79\xe4\x3a\xb9\x59\x9a\x53\xf8\x05\x74\x33\x25\xed\xfc\x42\x62\x0a\x27\xbf\x5f\xff\xfe\xe5\xb5\xa7\x52\x1a\xa2\xf7\xf1\xe3\x49\x7e\x4c\x73\x75\x3b\xc6\x8b\xf0\x02\xba\x11\xae\xbb\x3c\x8b\xe3\xff\x40\x24\x40\xc5\x88\x29\x9c\x9a\x77\x8e\x27\xf7\xb8\x78\x84\x7f\x66\x4c\x5a\x27\x1f\x33\x4f\x09\xc4\xe6\xa6\x04\x93\x99\x73\x68\xdc\x1d\x5f\x25\xf1\x89\x1e\x7f\x93\x13\x71\x9c\x2c\xd3\x90\x28\x4d\x75\xdd\xbb\x75\xf7\x3d\x94\x6c\x76\x62\x1e\xcd\x37\xd6\xf4\xc9\x2a\x62\x12\x48\x0a\xdd\x35\x95\xdd\x98\xcd\x76\x78\xdd\xb5\x88\xb3\x04\xd3\x38\x5b\x30\xae\x1e\x45\xc1\x11\x20\xa1\x9c\xcd\x51\xe9\x63\xc8\x3b\xef\xcf\x68\x91\xd1\xf2\x6d\x10\xa2\xd4\x6c\x6e\x8a\x0b\x24\x34\xd3\x4b\x21\x99\xde\x90\x88\x6a\x7a\x52\x63\x71\x38\xe0\xf0\x37\xd0\x9b\x15\x9c\x6c\x53\xc9\xb8\x86\xf6\x37\x77\x27\xf0\x37\xcc\xa8\xc2\xef\xcf\x4c\x7e\x7c\x51\xc3\x0d\x69\x27\x94\xba\x21\x96\x5b\xe1\x5c\x60\xcb\x24\x93\x48\x0a\xf3\x90\x70\x21\x45\x96\x16\x89\xf2\x31\x09\x7d\xe5\x78\xbc\x02\xfa\x60\x32\x2f\xb0\xff\xdf\xf9\x9c\xa4\x2c\x6a\x9c\x96\x6c\xcd\x62\x5c\xb8\xcc\xd6\xf6\x88\x7a\xf6\x51\x4f\xd5\xd6\xaa\x21\x67\x5d\x8e\xba\x13\x79\xce\xd0\x4d\xd8\x6b\xd7\x65\x9e\x3b\x3e\x82\x91\xd0\x70\xc9\x38\x12\x56\xb0\x28\x8d\x1b\x30\xcc\x9e\x4f\x44\x94\xc5\x86\x41\x79\xd0\x00\x2b\x33\xee\xd9\x47\x83\x6e\x6a\xa3\x3c\xfb\x68\x58\x13\xa9\xb6\x8a\xce\x18\xf7\x2a\x83\x06\x1e\xe6\x58\x18\x31\x84\x22\x12\x63\xa4\x0a\x73\x2d\x4a\xe3\x06\xac\xdd\xe9\x0d\x69\xcc\x42\xe1\xb9\xe3\xfb\x30\x38\xf3\x2a\x83\x06\xf9\x77\xcb\xf9\x36\xf5\xdc\xf1\x31\x0c\xb1\xe8\xa6\x22\x52\x5e\x75\xe4\x42\x93\x44\x64\x5c\x83\x36\xd9\x65\xc6\x78\xf4\x5c\x89\x4c\x86\xe8\x77\x13\xae\x9f\xe7\x99\x38\x7f\x37\x8b\x24\x95\x22\xa5\x8b\xfc\x62\x21\xd5\x92\xca\xda\x7e\x3f\x46\xce\x09\x70\x7b\xd2\xee\xfc\xa3\xd8\xb4\xdb\xdb\x37\x57\x2f\x83\x8b\x60\x32\xad\x96\x89\xd5\x59\x53\x2e\x3a\xe2\x51\x2e\xf8\x26\x11\x99\xb2\xd1\xcd\x9f\xd3\x58\xa1\x0b\x92\xe9\x25\x72\x5d\x5c\xb0\x88\x16\x2b\xe4\xe4\x06\x67\x4b\x21\x56\x0d\xa0\x42\xb2\xbf\x72\xc8\x44\x44\xe8\x7f\x68\x04\x0c\x63\x86\x5c\x93\x90\xda\x1a\xb8\x1e\xe0\x6c\x34\xac\xe1\x64\x4a\xa3\x9c\x46\x5c\xf9\xed\x6d\x69\x34\x2d\xd2\xd3\x94\xa5\xae\x7a\x7b\x28\x61\xea\x82\x32\x9a\x9d\x98\xaa\x6c\x3e\x67\xb7\x35\x2c\xce\x88\x89\xb1\x24\x62\xd2\xaf\xc6\x05\x17\xd2\x46\xe2\xa3\xd9\xae\xc8\x06\x4e\xe5\x7f\xcb\x34\x11\x9c\x98\xda\x96\x14\x89\xda\xdc\x5c\xab\x50\x26\xcc\x99\x58\x4b\xc4\x1a\xa5\x64\x11\xfa\xed\x6d\x21\xb4\x99\x76\x45\x3e\xe4\x9e\xda\x16\x2a\xe7\xa5\x2a\xd2\x4c\x08\xad\xb4\xa4\x69\x05\xfd\x78\x56\x73\xc2\xbd\xd0\x26\x2b\x96\x32\xa4\xaa\xc5\xfa\x70\x55\x38\xd8\xc8\x24\x33\xde\x35\x53\x7b\xf3\x98\x41\x73\xf0\x27\x79\xa6\xf7\x43\xce\x5c\x00\x11\x21\x89\xe9\x0c\x63\xe5\xb7\xdb\xdb\xcb\x77\xe7\xc1\xf4\xa2\xff\x32\xb8\x18\xbb\x26\x49\x45\x44\x76\x59\x9f\x98\x0b\x41\x4d\xb5\x7d\x4d\x50\x4b\x64\x34\x22\x82\xc7\x1b\x92\x0a\xa9\xfd\x5e\x6d\x79\xc1\xcc\x26\x22\x37\x4c\x2f\x89\xa6\xcc\x14\x4b\x3b\x59\x26\xfd\xe1\xe5\xa4\x26\x4b\x5e\xbe\x14\x5a\xe5\xdb\xea\x13\x2b\x1c\xf7\x4e\xd7\x9c\xc0\x9d\x6b\xdd\x31\x20\xe7\x66\xe7\x82\x3d\xa2\x35\xf1\xef\xaf\x30\x66\xf3\x19\xc6\xff\xae\x72\x7d\xb9\xdb\xc2\x40\xe1\xcd\xde\xb3\x96\x8a\x14\x31\xa4\x31\xe5\x08\xc6\x4f\x40\x41\x63\x92\x02\x4d\x19\x31\x1c\x4b\x65\xd2\x40\xf0\x88\x19\x6a\xa5\xcb\xdb\x17\x36\x31\xee\x64\xec\x32\xce\xf4\x74\x2f\xb1\xa9\xf0\x1f\xea\xf6\x7c\xd2\xcd\xe4\x83\x90\x2b\xc6\x17\xe7\x4c\x62\xa8\x85\xdc\xf8\x15\xee\x4d\x17\x98\x8a\x74\xbb\x17\x62\xfd\xd3\x50\xd3\x19\x77\xdb\xea\x56\x8b\x2c\x5c\xc2\x83\xba\x29\x2d\x24\x5d\xa0\xf7\x04\xc0\x1c\xdf\x7d\x43\xcf\x9c\x22\xaf\xb1\xee\xad\xd6\xf6\x16\xc9\x5e\x11\x3d\x90\x62\x6f\x05\x93\x10\x3c\xe8\x7d\x7f\x76\xe6\x3a\x7b\x2f\x33\xe3\x31\xe3\x58\x76\x3e\x40\x2d\xb5\xf9\x7f\x66\x74\xd3\x61\xa2\xbb\x62\x7c\x2d\xe2\x7d\x40\x39\x8a\x33\xe9\xbf\xf6\xd7\xa7\x9d\xd3\x9f\x3a\x67\x25\x98\x52\xec\xf0\x5b\x26\xae\x74\x0e\x4a\x19\xea\x09\x35\xa7\xfc\x79\xc3\x4a\xb1\xbd\x62\x94\xd6\x8f\x2d\x97\x68\x1e\x04\x72\xa2\x44\x8a\xb8\x99\xb2\xef\x5d\x8a\x71\xb8\x44\x53\xe0\xb5\xee\xb5\xb0\xd3\xaa\xfb\xbc\xe6\x2d\x99\xe8\xdb\xce\x59\xe7\xf4\xac\xb6\x56\x36\x79\x28\x24\x0a\x55\x6d\x95\x02\x14\x7d\xae\x3c\xc2\x2a\x15\xbb\xeb\x57\xe3\x60\xe4\x3b\x73\x95\x5e\xda\x21\x1e\x36\x41\x5d\xf6\xdf\x06\x7e\x7b\x6b\x96\xf2\xec\xe7\x02\xf4\xcf\x7f\x0d\x46\x93\xe1\x38\x98\x0e\x2e\x86\xc1\xe5\xc4\x88\x3c\xde\xb7\x7a\xab\x99\xd3\xfb\xe6\xdb\x1f\x7e\x72\x09\x0c\x2f\x87\x93\x61\xff\xa2\x44\xe8\x7d\x10\x8c\x1e\x20\xf3\x63\xcf\x25\x73\x31\x1c\x4f\x82\xcb\x46\x21\x7a\x1d\xfb\xd7\xc8\xbd\x40\xab\xb3\x3c\x20\x1d\xe5\xf5\x36\x98\x8c\x86\x83\xf1\x01\xaf\x8a\x76\x7a\x4c\xd3\xc1\xc5\xd5\x78\x12\x8c\x76\x66\x35\x51\x80\xd1\x78\x5a\x14\x48\x35\x0b\x8f\x0d\x97\xc9\x74\x14\x0c\xde\x5d\xbe\x1a\xbe\x9e\x0e\x7e\x09\x06\x6f\xaa\x51\xac\x80\x9c\x8c\x0c\xe1\xf3\xe9\xa0\x3f\xb5\x5d\xe9\xca\x9e\xc8\x1f\x79\x00\x26\x79\x99\xe7\xe2\x0f\x82\xd1\xe4\x01\xcc\x26\xb4\x37\xc1\x7f\x1f\xc2\x5a\xe1\xa6\xc6\x2c\xf7\x94\xe5\xd9\xbf\x9a\xfc\xd2\xa8\x91\xf5\xcb\x23\xd4\x4a\xf1\xa8\x52\x96\xc4\xbd\x9a\x19\xe4\xa3\x98\xf7\x29\x67\x11\x1b\x54\xcb\x59\x1e\xd5\xaf\x12\x6b\x76\xd5\xe6\xe7\x0a\x30\xe5\xbb\x49\xe5\xd4\xd4\x59\xab\x8d\x0a\x75\xdc\x89\xba\x09\xbd\xb5\xc5\x02\xb9\xa1\x3a\x5c\xa2\xb2\xd5\xf3\xfd\x02\x3d\x2e\xc0\xcd\x55\x87\x71\xa1\xd9\x7c\xd3\x49\xe8\xed\xd4\xf0\x98\x16\x3c\xfc\xd3\xef\x4f\x7f\x3c\xab\x0a\xf5\x70\x6a\xbd\xdf\x3c\xdf\xed\xcd\x63\x38\x95\x44\x8b\x3c\xf8\x6e\xff\x7d\xc6\x36\x6c\x8e\x2d\x3e\x4e\xaf\x2f\xbf\xd8\x77\xac\xca\xb3\xf0\x41\xd2\x34\x45\x69\x5b\xb8\x3b\xf9\xa1\x5a\x1a\x00\x28\xd4\x40\xb0\x82\xf7\x56\xac\x11\xf0\x36\x45\xc9\xec\xe7\xb2\x18\xea\x4d\x33\x80\x6b\x20\x1c\x5a\xed\xa7\xb1\x72\x4c\x45\x95\x42\x5d\x2a\xaa\xc9\xd7\xdd\xaf\xe1\x9b\x17\xfb\x2e\xe9\xb3\x16\x7c\x84\xaf\xbe\x82\x64\xfd\x18\xc4\xfb\x41\x0c\x1d\x99\x00\x91\xf3\x07\x69\x95\x44\xc7\x5b\x0c\xa1\xd4\xdc\x2a\xd7\xe8\x87\xd6\x88\x43\xcb\xdb\xfd\x3a\x5d\x8b\xc7\xf5\x84\x6e\x5c\x9c\xe3\xed\x2d\x00\xb7\xac\xd9\x49\xe2\xad\x7b\x9d\xd3\xb3\x4e\x8f\x2c\x31\x4e\xce\x1c\xa4\x6e\xd5\xc5\xe6\x16\x6e\xe4\xcd\x2f\x19\xb9\xe8\xf7\xd6\x16\x8f\x6b\x26\xde\xbf\xe5\x7f\xf8\xc4\x92\xa3\x79\xe7\xd6\xb6\xa4\xb9\x87\x99\x6b\x58\xe1\xb3\x69\x2e\xd8\xb4\x68\x1f\xb6\xda\x4f\x0b\x5f\x32\x3e\x17\xe6\x4e\x74\xb2\xdd\x76\x06\x16\xe6\xdc\x82\xdc\xdd\x9d\x3c\x2b\xd7\x66\x21\xd5\xf0\xf3\xcf\xc1\xbb\x57\xf0\xe2\xfe\x1b\x7b\x09\x87\xa6\xec\x57\x94\x8a\x09\x7e\xe8\xb5\xe7\x40\x9d\xd5\x8f\xb6\x98\x5b\x9f\xce\x50\xd3\x72\x9e\x5d\x31\x1e\x79\x50\x34\xd5\x07\x85\x7d\x6d\x4f\xa4\x2c\x4c\x49\x50\x0f\x5a\x6d\x13\x27\xeb\x5a\xde\x95\xe5\x0f\xde\xbd\xaa\xbb\x52\x27\xa9\x75\x4e\x27\x4f\x07\xe4\x26\x3f\xfd\x8f\x88\x9e\xff\xb0\x5e\x8c\xec\xae\x2b\x97\x6b\xd0\xfb\xa1\xd7\xb3\xdf\x07\xf3\x07\x01\x52\x97\x33\xd7\xae\x1b\x51\x4c\x04\xef\xfc\xa1\xf6\xc6\x78\x20\x9a\x7e\x62\x50\xdc\x56\x0e\x47\x2b\x66\x6b\xb4\x8d\x69\x21\xb1\x95\x7f\x14\x7b\xee\x40\x88\x05\x11\xa9\x56\x2d\xcf\xc1\x05\x68\x99\x94\xa4\xd8\x5f\x06\xb3\x75\xda\xeb\x25\xad\xe7\x4d\x10\x46\x01\x03\xf1\x6d\xab\xb2\x5a\x2e\xa1\xee\x9e\xa4\x54\xa9\x9b\xfc\x5f\x24\x14\x4a\xe7\x5f\x24\x4c\x51\x5d\x40\x2b\xb5\x9c\xee\xda\x68\x18\x4d\x57\xb8\x51\x1e\xb4\xb7\x66\xda\xbc\xdf\x3d\xf9\x5f\x00\x00\x00\xff\xff\x62\xab\x53\x70\x71\x21\x00\x00"), - }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl": &vfsgen۰CompressedFileInfo{ - name: "install.yaml.tmpl", + "/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf": &vfsgen۰CompressedFileInfo{ + name: "controller.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1407, + uncompressedSize: 776, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x8f\xe3\x36\x0c\xbd\xcf\xaf\x60\x67\xd3\x9e\x6a\x27\x1b\xa0\x17\x03\x41\xb1\x5b\x14\x68\x81\x9e\x9a\x7e\x1c\xb6\x0b\x43\xb1\xe8\x44\x1d\x99\xf2\x90\xd4\xcc\xb8\x6e\xf6\xb7\x17\x72\x62\x27\x99\x64\xd0\x9b\x4c\x3e\x3e\x3d\x92\xcf\xca\xb2\xec\x4e\x3a\x51\x6c\x6c\x71\x07\x10\xc9\xa9\xa4\x03\x40\x06\x64\x1a\x2c\xc0\x91\xa8\xf1\x1e\x39\x17\xe4\x27\x57\xe1\x90\x05\x40\x32\x1b\x8f\x05\x28\xc7\x31\x54\x05\x52\x24\x95\x02\xfe\x3d\x46\x00\x3e\xfd\x4e\x4e\x3f\x4f\x9f\xbf\xe2\x63\x74\x8c\xb2\x22\xd4\xe7\xc0\x0f\x59\x20\xef\x08\x73\x35\xbc\x45\x9d\x60\x1f\x6a\x45\xfe\x1f\xcc\xa7\xf5\x41\xcf\x89\xfc\xb7\xae\xc5\x95\xb8\xa6\xf5\x38\xc5\x7e\x7c\xc1\x6a\xad\x86\x75\x35\x0f\xad\xce\xa7\x6e\x4e\x34\x3f\x1f\x42\x27\x9a\x3f\x0d\x29\xda\x8f\xdd\xaa\x89\x5e\x5d\x16\x05\xf9\xfc\xee\x77\xf0\xe1\x29\x38\x0b\x51\x1c\x6d\x41\x77\x08\xa2\x86\xac\x61\x0b\xeb\xf5\x4f\xd0\x06\x56\x90\x00\x8a\xcc\xa6\x0e\xdc\x80\x69\x5b\xdf\x41\x65\x88\x82\x0e\x90\x48\xea\xfc\x91\xab\x0d\xa2\xd9\x51\x55\x0e\x1f\xa3\x82\xb1\x8d\x23\x81\xc6\x74\x03\x58\x03\x58\xdc\xc4\x2d\x58\x27\x0f\xe3\x36\xa0\xe5\xb0\xf1\xd8\x48\x3e\x4a\x4a\x03\x1b\xb3\xdf\x82\xc8\xce\xc2\xb3\xf3\x1e\xa2\xe0\x41\xd2\x72\x09\x86\x92\x6a\x64\x99\x9f\xc4\x55\x86\xd2\xde\x08\x2b\xcd\x2f\xf6\x9e\x28\x72\x09\xd5\xc3\x34\x72\xcb\xa1\x75\x74\xb4\xc7\x39\xf4\xfd\x22\x4b\xe8\x2c\xdd\x93\x57\x81\xea\x09\x71\xdb\x13\x87\xed\x0d\xd4\x9f\x2f\x82\xbf\x38\x51\xa4\xb5\x32\x9a\x66\xf5\x76\x66\xb9\x5c\x2e\xef\x44\x03\x9b\x2d\x26\x35\xb5\xf3\x38\xb9\xb6\x35\xba\x2b\xe0\xe6\xb2\x07\xdc\x60\xf6\x02\x38\x84\xb1\xaf\x26\x58\x2c\x60\xf1\xdd\x62\xf1\xda\xc7\x93\x04\x37\x38\xf0\xb2\x87\x77\x5f\xcd\x37\x8e\xe6\x1b\x23\x3b\xc8\xf0\xe5\xbc\xe7\xc8\x1e\xb2\x8c\x51\xb9\x83\xf7\x0b\xb8\x9f\xf5\x6e\x4b\x4e\x5d\xa0\x12\xc9\xb6\xc1\x91\xee\xbf\xef\xfb\x9c\xf1\x31\xa2\x68\xce\xe6\xb9\x7c\x8c\xc8\xdd\x7e\xff\x4d\x90\xd5\xa8\xdb\xde\x43\x16\x60\x2c\xcd\xff\x96\x40\x67\xb7\xd4\xde\x68\x65\x78\x34\x0f\xfc\x75\x31\xb0\xaf\xfb\x2f\xe0\xea\xd1\x11\xa5\x86\x52\x9a\xc4\x29\x5a\x0e\x46\xfa\xb2\xbf\x80\x67\x72\xa3\x1e\xbd\xe0\x15\xd0\xc2\xac\x1f\x59\x13\xd3\xfe\x56\x21\x59\x57\x5f\x55\xfe\x00\xb3\x3e\x48\x59\xed\x0c\x11\xfa\xd7\x75\xd9\x1f\x87\xf4\x13\xb2\xb8\x40\x57\xe9\x90\xc6\x98\x36\x63\x1c\x21\x97\xde\x51\x7c\x29\x03\x36\xfb\xfb\x57\xc8\x59\xbf\x31\x82\x91\x7d\x59\x7b\xb3\xbd\xe2\x71\x6f\x0e\x34\x5a\x7c\x32\xb6\x01\x41\xd5\xb3\x17\x04\xe0\xe0\x99\x4a\x3d\x30\x6e\x92\x6f\x5a\x23\xf2\x7c\x78\x30\xd3\xef\x74\xf9\x60\x56\x81\xc7\x62\x91\x5d\x69\xa2\xee\x02\xbb\x7f\xd0\x96\x0f\xd8\x49\x01\xb3\x3e\x85\xd3\x79\x7f\xf7\x5f\x00\x00\x00\xff\xff\xfc\xb6\x38\x0b\x7f\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xd1\x6a\xc3\x30\x0c\x7c\xcf\x57\x88\x40\xa1\x83\xe2\xbd\xee\x25\x5f\x52\x8a\x71\x6d\x75\x35\x71\xac\x60\xc9\x65\x5b\xe9\xbf\x8f\x24\x2d\x75\x93\xc0\x16\xf2\x92\xe8\x4e\x77\x3a\xa9\x23\x97\x03\x42\x6d\x29\x4a\xa2\x10\x30\xd5\x70\xad\x00\x98\x72\xb2\x08\xf3\xa7\x81\x5a\xa9\xf7\xe9\x2d\x28\x15\x80\xa5\x1c\x65\x81\x87\x06\x02\xc6\x4f\x39\x6f\x2f\x26\xa9\x27\x43\x47\xd3\x21\xbf\x0d\xbc\x90\x59\xee\x3f\x5e\x78\x23\xa1\x28\x8e\x1a\x0f\x3e\xeb\x42\xef\x4f\x0d\x17\x59\xff\x50\x9c\x8f\x33\x69\xb4\x1f\xac\x1d\x75\xc6\xc7\xa7\x4c\x8e\xa2\x7d\x74\xf8\xf5\x0a\x1f\x0b\x6a\x2c\x14\xce\x87\xee\x8c\xe9\xe2\x2d\x6a\xdf\x43\x03\x53\xa6\xea\x48\x24\x6d\x3e\xa2\x5a\x07\x0e\x21\xf3\x59\xb7\xf8\xcd\xab\xbe\x1e\xc5\x0a\xc0\xf4\x7e\xe0\x61\x9a\xe3\x4e\x94\x3a\x23\xdb\x7a\xc3\x6a\xc3\xf5\x6e\x91\xd9\x6e\x6d\xc2\x31\x75\xa3\x2d\xa6\xc5\xbe\x56\xbc\x4f\xc0\x0a\x60\xf8\x0c\x28\x3a\x98\x23\x06\x2e\x17\x4c\xd4\xe6\x7e\x0c\x3f\x92\x43\xcd\x3d\x5a\x7f\xf2\xf6\x8e\xbc\xbb\x9a\xad\x65\x5f\x64\x79\xd8\xc1\xf5\x36\xdd\x82\xd5\x1c\x7d\xdf\xa3\xf0\xeb\x0d\x3d\x25\x4a\xcc\xbf\x5a\xef\x0f\x43\x6b\x46\xd1\x2c\x26\x3a\x93\x9c\x3e\x13\xcb\x74\x6f\x0d\x48\xca\x58\xdd\xaa\xdf\x00\x00\x00\xff\xff\x6b\xfd\x08\x61\x08\x03\x00\x00"), }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/worker.yaml.tmpl": &vfsgen۰CompressedFileInfo{ - name: "worker.yaml.tmpl", + "/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf": &vfsgen۰CompressedFileInfo{ + name: "controller_profiles.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5175, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5f\x93\xd3\x38\x12\x7f\xe7\x53\x68\xbd\xa9\x0a\x54\x8d\xec\x84\x9b\xe5\xf6\x7c\xeb\xad\x1a\x96\x40\x51\xcb\x01\xc5\xc0\xf1\x30\xc7\xa6\x14\xbb\x93\x34\xb1\xd5\x46\x92\x3d\x93\x0d\xf9\xee\x57\xf2\x9f\xc4\x91\x9d\x39\xd8\xba\x97\x94\x25\xfd\x7e\xea\x56\x77\xab\xbb\x15\xce\xf9\x03\xbd\xd5\x06\xb2\x24\x7c\xc0\x58\x21\xd1\x68\xfb\xc1\x18\x67\x52\x64\x10\xb2\x84\xe2\x0d\x28\x5f\x83\x2a\x31\x86\x6a\x89\x31\x90\x62\x91\x42\xc8\x8c\x2a\xe0\x04\x9d\x52\xbc\xd1\x19\x9a\x75\xe2\x30\x32\xa1\x37\x03\x78\xd4\xb1\x46\x17\x5b\xef\x9e\x74\xe0\x8c\x25\x8a\x72\x94\x8d\x6e\x47\xfe\x64\xc2\x9b\x2d\x62\x92\xcb\x66\x91\xb1\x98\xa4\x01\x69\x74\xc8\xbe\x1e\xe6\x18\xbb\xb9\xae\xc5\x7c\xea\xcc\xcd\xee\x20\xbe\x36\x42\x99\xb7\x0a\xa2\x60\x81\x32\x58\x08\xbd\x66\x3c\x66\x63\x88\xd7\xc4\xbc\x97\x12\x0d\x0a\x43\xea\xb5\xc8\x20\x1a\x3d\x0c\xb4\x05\x55\x42\x39\x5a\x25\x18\xcf\x19\x7e\x91\xfe\xe3\xc9\xe3\x09\x9f\x4c\x7d\x24\x7f\x83\xb2\xa4\x74\x13\x4e\xa6\x8f\x3c\xf6\x2b\x0b\xc0\xc4\x35\x23\xc0\x76\x37\xcb\xf4\xab\xb9\xf1\x89\x41\x36\xc5\x02\x52\x30\x7e\x2e\xcc\xfa\x9c\xb1\x87\xcf\x77\xf3\x41\xa2\x39\x1e\xed\x19\xe8\x58\x61\x6e\x90\x64\xf4\x51\x98\x78\xcd\x96\xa4\xaa\xed\xad\xa5\x70\x75\xe4\xbd\x15\x66\x7d\xe4\xd9\xd1\xec\x0e\xb5\xd1\x51\xa5\xb7\x65\x28\x09\x06\x74\x30\x44\x7e\x29\xb5\x11\x69\x7a\xe4\x7f\x14\xd2\x40\xf2\x74\x1b\x65\x45\x6a\x90\x17\x1a\x94\x6f\x84\x5a\x81\x39\x39\xe7\xad\x40\xc3\x97\xa4\x78\x22\xf5\xff\x0a\xae\xbf\x70\x5e\x34\xd5\x71\x9f\xbd\xbe\x66\x20\x8d\x42\xd0\x27\x0a\xea\xa8\x09\x7a\xae\x40\x53\x5a\x82\x1b\x82\x8c\x3d\x85\x25\x29\x88\x5a\x7f\xb8\xcb\xfd\x58\x7a\x07\xda\xc6\x51\x44\x92\x2f\x05\xa6\x85\x02\x77\xe9\x1a\xe2\xe8\xa7\xa3\x22\xef\xb7\x39\x44\x24\x41\xaf\xc9\x74\xa0\x99\x40\x79\xb5\x34\xa0\x66\x77\x68\xa2\x8e\x11\x3a\xc1\x5a\x47\x6a\x13\xa7\xb7\x6b\x4c\x81\xfd\xc0\x82\x42\xab\x6a\x7e\xa5\x20\x67\xe3\x3f\x6e\xfe\xf8\xf1\x26\xd4\xb9\x88\x21\xfc\xf4\x69\x5c\x47\x61\x7d\xdc\xea\xb2\xd8\xc0\x4c\xa0\x0c\x64\x91\xa6\xff\x64\x09\x31\x9d\x02\xe4\x6c\x6a\xbf\x25\x8c\xef\x71\xf1\x3b\xf8\x52\xa0\xaa\x9c\x3c\x64\x1e\x37\x94\x4f\x4d\xf7\x9d\xae\xfc\xbd\xde\xc4\xf1\x9e\xca\x63\xae\x8d\x30\x7d\xb7\xf5\xfd\x32\x93\x25\x2a\x92\x19\x48\xf3\x1c\x53\x18\x8c\x6a\xab\x26\xc8\xb2\x6f\xe8\x43\x56\xc8\x36\x09\x2a\x7b\xd5\x83\x52\xa8\x20\xc5\x45\xcb\x0b\x4a\x4a\x8b\x0c\xf2\xb4\x58\xa1\xd4\xdf\xb4\x83\xa3\x40\x26\x24\x2e\x41\x9b\x73\xe4\xd6\xad\x6d\x62\xf2\x6a\xff\xc6\xa0\x0c\x2e\x31\x16\x06\xb8\x28\xcc\x9a\x14\x9a\x2d\x4f\x84\x11\xe3\x9e\x88\xe3\xcd\x65\x5f\x99\xb8\xdd\xb0\xf1\x2e\x57\x28\x0d\x1b\x3d\xde\x8f\xd9\x57\xb6\x10\x1a\x9e\x5c\x32\x9e\xb4\xd9\xaa\xc3\x8d\x85\x1f\x2b\xe3\x9d\x51\xce\x05\x57\x42\x0a\x05\xbc\x31\x0f\x8f\x57\x8a\x8a\x9c\x27\x0a\x4b\x50\xc3\x9b\xf0\xba\xc6\x30\x95\x31\xbe\x6c\xc3\x66\x18\xda\x22\x0b\x69\x95\xfd\x4f\x27\x91\x73\x6e\xa3\xae\x0d\x48\x67\x49\x35\x77\xb3\x90\x29\x68\xcd\xb5\xa1\x3c\x07\x97\x9f\xd2\xaa\x51\x33\xfa\x4c\x85\x92\x22\xed\x49\x00\x73\x4b\x6a\x13\xad\x49\xbb\x12\x72\x4c\x06\xa7\x15\x96\x98\xc2\xca\x15\x56\x56\x77\x2f\xac\x7e\xd4\x6d\x6f\xcd\x5a\x35\x96\x18\x48\x30\x7e\x12\x3a\x43\x45\x83\xf8\xa3\x17\x42\x77\x7c\x86\x91\x89\x78\x8d\x12\x38\x36\x22\x3a\xe3\x01\x86\x8d\xf9\x8c\x92\x22\xb5\x02\xba\x83\x01\xac\x2a\x64\x58\xfd\x0c\x9c\x4d\x6f\x75\x58\xfd\x0c\xac\x51\x6e\xaa\x83\x2e\x50\x86\x27\x83\x01\x19\xf6\x5a\x58\x35\x48\x73\x05\x29\x08\x0d\xf5\x29\x3a\xe3\x01\x56\x7b\x7b\x63\x91\x62\x4c\xa1\x3b\xbe\x8f\x21\x31\x3c\x19\x0c\xe8\xdf\x2e\xd7\x61\x1a\xba\xe3\x73\x0c\x5a\x05\x39\x25\x3a\x3c\x1d\xb9\x68\x9e\x51\x21\x0d\x33\xb6\x6c\x2c\x50\x26\x17\x9a\x0a\x15\x43\x14\x64\xd2\x5c\xd4\x25\xb6\xfe\xb6\x8b\x3c\x57\x94\x8b\x95\xa8\x92\xa8\xd2\x6b\xa1\x7a\xf1\x7e\x6e\x3b\x27\xc1\x1d\xb6\x76\xe7\xbf\x49\xcc\x68\xb4\xfb\xfd\xc3\xd3\xd9\xab\xd9\xfb\xf9\xcb\x7f\x5d\xbd\x98\xcd\x3f\xbc\x7b\xb5\x0f\x7b\xb3\xef\xaf\x5e\xec\x1d\xf5\x84\x24\xb9\xcd\xa8\xd0\x55\x76\x8b\x96\x22\xd5\xe0\x42\x0a\xb3\x06\x69\x6c\x0e\x44\x92\xdc\xd0\x06\x24\xbf\x85\xc5\x9a\x68\x33\x00\x25\x85\x7f\xd6\xc8\x8c\x12\x88\x3e\x0e\x02\xe3\x14\x41\x1a\x1e\x0b\xbe\x1c\xaa\x16\x75\x36\xec\x71\x0a\x6d\x40\xcd\x13\xa9\xa3\xd1\xae\x33\x9a\x37\xe5\x69\x8e\xb9\x7b\xbc\x03\x8a\x6c\xc1\xef\xd2\xaa\x89\xb9\x2e\x96\x4b\xbc\xeb\xb1\x24\x72\x9b\x63\x79\x82\x2a\x3a\xcd\x0b\x2e\xb2\xca\xc4\x67\xab\x5d\x53\x0d\x4e\x39\x70\x87\x86\x93\xe4\xb6\x8b\xe7\x4d\xa1\x46\x92\x0e\xca\xa6\x39\x9b\x6b\x39\x95\xa0\x14\x26\x10\x8d\x76\x8d\xd2\x76\xda\x55\xf9\x58\x7b\x7a\x21\xd4\xad\x4b\xa7\xa4\x05\x91\xd1\x46\x89\xfc\x84\x7e\xbe\xaa\x39\xe9\x9e\x8c\xad\x8a\x9d\x0a\xa9\x7b\xb9\x3e\xde\x34\x0e\xb6\x3a\xa9\x42\x06\x76\xea\x60\x1e\x3b\x18\x4e\xfe\xbc\xae\xf4\x51\x2c\xd1\x05\x50\x02\x3c\x15\x0b\x48\x75\x34\x1a\xed\x5e\xbf\x79\x36\x9b\xbf\xba\x7a\x3a\x7b\x75\xed\x9a\x24\xa7\x84\xb7\x55\x9f\xdb\x4e\xbf\x77\xb4\x43\x4f\xd0\x2b\x64\x22\xe1\x24\xd3\x2d\xcf\x49\x99\x68\xe2\x2c\xd7\xbd\x48\xa3\x62\x1d\x23\xdf\xd9\xae\xb4\x15\x36\xa5\x95\x3e\x5f\x8d\x29\x6f\x71\xb6\x94\x9e\x05\xbd\x25\x7d\xd8\x50\x65\x3d\x58\xdb\x31\x8b\xf4\x56\x6c\xf5\x60\xb7\xfc\xd7\x1e\x1a\xda\x90\x12\x2b\xb0\x8f\x45\xeb\xe3\xc3\x8b\xd6\x9a\x3a\x1c\x6c\x8e\x4e\x1b\xc0\x8a\x54\x3d\x10\x42\xa6\xe8\xd0\x9d\xdb\xac\x11\xb2\xc9\x93\xcb\x4b\xb7\x97\x3d\x28\x85\x32\x45\x09\xa7\xcf\xce\x5e\xfe\x8b\xbe\x14\x62\xeb\x23\x05\xcd\x3b\x31\x70\x0d\xe3\x72\xde\x5f\xbd\x88\xca\xa9\x3f\xfd\x87\x7f\xd9\xc1\x74\x02\x2c\xf2\x46\xbb\xcf\x84\xf2\xa1\x77\xe1\x5d\xb0\x9b\xea\xa5\x77\xc1\x4a\x86\xb2\x35\xfa\xbc\x0e\x4c\x16\x32\x6f\xb4\xdb\xec\xa3\xd1\xae\xdc\x7b\x9f\x1e\xed\xbd\xbe\x69\xda\xfb\xfd\xff\x32\x46\xb7\x1a\x9c\x24\x8a\xbe\x68\xbd\xd5\xb1\x49\xfd\x24\xc8\xc4\x5d\xe5\x51\x7e\x6b\x9f\xae\xa0\xbb\xcf\xfb\x33\x0a\x7d\x9b\x33\x96\xda\x47\x49\x06\x97\x5b\x3f\x13\x77\x73\x2b\x63\xde\xc8\x88\xa6\x4f\xa6\x3f\x5f\xde\x1b\x2a\xdf\xd6\xde\xde\x6f\xb1\xbf\x7f\x67\xf8\xfc\xf8\xc3\xa1\xfb\xef\xcc\x6a\x30\x8c\x43\x67\xc2\x66\x06\x9b\x18\x9a\x3f\x6c\xe6\xb5\x62\xf3\xa6\xa1\xf5\x46\x0f\x9b\x7b\x88\x72\x49\xf6\x62\x8f\x77\x3b\xff\xb7\x0a\xf3\xac\x82\xec\xf7\xe3\x47\x5e\x67\xbf\x58\x18\xf6\xcb\x2f\xb3\x37\xcf\xd9\xaf\xf7\xd7\x90\x0e\x47\xe4\xf8\x6f\x50\x1a\x49\x1e\x5f\x7f\x35\xc8\xdf\xfc\xac\x6d\xc4\x97\xd3\x05\x18\x31\xed\x70\x36\x28\x93\x90\x35\xcf\xbc\xdf\x1a\xfb\x56\x55\xba\xab\x4c\x47\x51\x1b\xc1\x36\x8e\xfa\xa7\xdc\x77\xf5\x9f\xbd\x79\xde\x77\x65\xcd\x0a\x12\x01\x19\x49\xff\xb3\x3e\x08\xb9\xdf\x65\x3f\x4d\x26\xdf\xe5\xb2\x5d\xe7\x9b\x31\x2f\xc5\x12\xaa\x27\x08\x29\xf0\xea\xff\x35\x2e\x1c\x04\xad\x38\xe5\x46\x7b\xa1\xc3\x65\xcc\xb3\x57\x41\xe3\x9f\x96\xe9\x4d\x27\x93\xcc\xbb\x18\x42\xd8\x03\x58\xc4\xdf\xbc\x93\xd5\xfd\x83\xee\x77\x2e\xb4\xbe\xad\xff\xe8\xd3\xa0\x9c\x3f\xfa\x62\x3a\xfc\x63\xa1\xf5\x7a\xde\x36\x4c\x90\xcc\x37\xb0\xd5\x21\x1b\xed\xec\xb4\xfd\xde\x3f\xf8\x6f\x00\x00\x00\xff\xff\x71\x7e\xa1\xb0\x37\x14\x00\x00"), - }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf": &vfsgen۰CompressedFileInfo{ - name: "groups.tf", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1078, + uncompressedSize: 830, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x51\x6a\xf3\x30\x10\x84\xdf\x75\x8a\x41\x10\xc8\xcf\x1f\xe7\x00\x05\xd1\x83\x94\x12\x54\x45\x49\x4c\x65\x6d\x58\x49\xad\xa1\xe4\xee\xc5\x8a\xeb\xd8\xb1\x5d\x1c\xfa\x66\x24\xcd\x8c\xf7\x9b\x65\x1b\x28\xb1\xb1\x90\x95\x8e\xe6\xf4\x46\xf5\xee\xc8\x94\xce\x12\xb2\xf4\x21\x6a\xe7\x24\xbe\x04\x60\x28\xf9\x08\x05\x67\xfd\x31\x9e\xd6\x1f\x9a\xb7\x86\x7c\x64\x72\xce\xf2\xce\xeb\xca\x86\x7f\xf8\xdf\xbf\xfe\x24\x7e\xef\xae\x84\x00\x9a\x2f\x28\x1c\x88\x2b\x1d\xd7\x02\x40\x97\x51\xac\x82\xdc\xe4\x13\x43\xde\xe8\x38\xe9\xbf\xc1\xc8\xf6\x25\xff\xd6\xb6\xf4\x7b\x5b\xbf\x0a\x20\xe7\x9c\x99\x0e\xa5\x6b\xa2\xb2\x8b\x36\x27\xbb\xdf\xb5\x41\x50\x0a\x91\x93\xc5\x33\xba\x79\xdb\xf7\xed\xcb\xe2\xe0\x74\x34\x9a\x0b\x57\xfa\x54\x17\xad\x6e\x10\xb4\xcd\x93\x3c\x8d\x1d\x7e\xa4\xb3\x22\x01\x04\xeb\xac\x89\xc4\x50\x99\x2b\x50\x69\x03\x35\x33\x77\xa5\xcd\x70\xec\xe6\x60\x34\xf5\x45\x5c\x84\xf8\xa5\xc8\x9b\xe1\xf2\x2e\x67\xfa\x5a\x85\x5b\x55\x59\xe7\x52\x88\xad\xa8\x77\x7a\xe7\x36\xae\xa9\xdf\xd2\xb8\x88\x4e\x1e\x26\x10\xce\x33\x9c\x80\x77\x9f\x0c\x50\x00\x54\xb7\x78\x76\x2f\x17\x00\xbc\xc2\x9f\x85\x37\xdc\xf4\xbf\x80\xeb\x3b\x3d\x08\xed\x2a\x7d\x1c\x58\x6f\xb1\x96\xc3\xfa\x0e\x00\x00\xff\xff\xc6\x0e\xa7\x44\x36\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdd\x6e\x83\x30\x0c\x85\xef\xf3\x14\x16\x57\xdb\xc5\xd8\x13\xf4\x49\xa6\x29\xf2\x12\x17\xa2\x1a\xbb\x4a\x4c\xd7\x69\xda\xbb\x4f\x94\xa2\xf2\x57\xc4\x0d\xfa\xce\xa7\x13\x62\x77\x1a\x7b\x26\xa8\x82\x8a\x65\x65\xa6\xec\xcf\x59\x8f\x89\xa9\x82\x5f\x07\x50\xb4\xcf\x81\x60\xfb\x1c\xa0\xaa\xeb\xf7\xf1\xed\xd0\x42\xfb\xa5\xd7\xb7\x23\xa3\x05\xcc\x95\x03\x08\xda\x8b\xed\x78\x70\x00\x26\x69\xac\x7d\xb9\x60\xae\x67\xb5\x82\x1d\x95\x57\x07\x20\x1a\xe9\xf6\xb5\x35\xf7\x94\x8f\x5b\x53\x9d\x24\xd2\xf5\x73\xd2\x3b\x0c\x3b\xc5\x2b\xbd\xc3\xb0\xb1\xa3\x7e\x0b\x2b\xc6\xe1\x16\x4c\x83\xf2\xd2\xde\x60\x07\xa0\xc5\x87\x16\x45\x88\x77\x0b\x1f\x78\xcc\x5e\x28\x97\xa4\xf2\x2c\x7b\xc7\x0e\xa0\x35\x3b\x7b\x92\x78\xd6\xb4\xbc\xc9\x31\x3b\x5d\xba\x5f\xe4\x1c\xc0\x89\xb2\x10\x7b\xcc\x4d\xd9\xeb\x98\x61\x07\x90\xa4\x18\x32\xfb\x98\xca\x69\x27\x3c\xc7\xb3\xb4\xa9\x2f\x1d\x32\x53\xb1\xd1\x5c\xa6\xd7\xf8\xb6\x0e\x62\x98\x84\xb2\xe7\x24\xfd\xd5\x2b\x75\xeb\xa9\xac\xf0\xb0\x7c\xa5\xf5\x27\xfa\x29\x4f\x46\x39\xe1\xe1\x60\x8d\x24\x4b\x2a\x3e\x70\xf0\x41\xe5\x98\x9a\x29\x39\x6e\xf8\x6c\xee\x8b\x91\xd7\x0f\x61\x38\x25\x86\x96\xa2\xbf\xff\xc7\x76\x77\x16\xd8\xfd\xb9\xff\x00\x00\x00\xff\xff\xe1\x5a\x80\xd8\x3e\x03\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -5975,26 +5943,19 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xd0\x51\x6a\xc3\x30\x0c\xc6\xf1\x77\x9f\x42\x74\xcf\xc9\x0d\x76\x96\xa1\xca\xea\x6a\x22\x5b\xc6\x96\x03\x65\xf4\xee\x23\x94\x31\x37\x5b\x8a\xdf\xff\xdf\x4f\x89\xb5\x59\x6e\x06\xa7\xa5\x9d\x99\x34\x5d\xc2\xe7\x84\x3e\x86\x74\x82\x2f\x07\xb0\xa2\x34\x86\x77\x88\xea\x9b\xf0\x7c\x56\xb5\x2d\x9c\xf7\xb5\xbb\x3b\xf7\xf6\xa8\xeb\x7c\xc3\x28\x40\x9a\x8c\x93\xc1\x45\x0b\xa0\x08\x78\xce\xa2\x37\xf6\x40\x57\x2c\x56\x67\xf7\x73\x38\xab\x9f\xe8\xca\xb4\x64\x0d\xc9\xb8\x7c\x3c\x94\xd7\xf7\x0f\x46\xdb\x67\xf4\x3f\x34\x61\x0e\x95\xcb\x3a\xa8\xfe\x3b\xd9\x9b\x25\xb1\x71\x1d\xf6\x9e\xf2\xbd\x25\x6c\xc3\xd0\x6f\xdb\x2b\x84\x12\x48\x87\x90\xa7\xb4\x37\x44\x17\x8d\x6a\x61\xe5\x21\xe7\x4f\xde\x5b\x5b\x55\xad\x60\x9e\x2a\x53\x61\x1b\x7b\xa8\xa3\x95\xbb\xbb\xef\x00\x00\x00\xff\xff\x10\x0c\x7c\xdd\xa0\x02\x00\x00"), }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf": &vfsgen۰CompressedFileInfo{ - name: "profiles.tf", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4792, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\xd1\x6b\xe3\xc6\x13\x7e\xd7\x5f\x31\xe8\x97\xfc\xb0\xa9\x2d\x1d\x6d\x29\x25\x20\x4a\x29\x14\x4a\x4b\x5f\xfa\xd0\x87\x10\x96\xf5\xee\xd8\xde\x7a\xb5\x2b\x76\x47\x89\x7d\x41\xff\x7b\x59\xad\x24\x5b\x89\xec\xf8\x8e\xe3\x4a\xe9\xf9\x21\x71\x34\xf3\xcd\xcc\xce\xcc\xf7\x69\x93\xe7\xf0\xb3\xe6\x24\xb8\x83\x9f\xac\x21\xae\x0c\x3a\xf8\x4d\x99\x7a\x0f\xca\x78\xe2\x5a\x43\xe5\xec\x5a\x69\x84\xd9\xda\xd9\x12\x1c\x6a\xe4\x1e\xb3\x75\x44\x2d\x75\xf0\xcd\x0c\xd2\x3c\x71\xe8\x6d\xed\x04\x42\x5a\x72\x12\xdb\x95\xdd\xb3\x0e\x9b\x42\xda\xfb\x77\x51\x53\x78\x4e\x00\x84\xad\x0d\x41\x01\x1a\xcd\x86\xb6\xb3\x47\xee\x32\x61\x0d\x39\xab\x35\x3a\x66\x78\x89\x7e\x0e\x5f\x9d\x9a\x9f\xac\xdb\x0d\xa6\x04\x20\x7c\x81\x02\xd6\xd6\x95\x9c\x66\x09\x00\x40\x7a\xeb\x97\x2f\xb2\x2d\x6f\x7d\xba\x68\x8d\x6d\x0a\x5d\x7b\xea\x82\xc4\xa7\xc2\x1a\xc1\x69\x32\xff\x02\x5e\xa5\xbd\x6f\xcb\xce\x94\x91\xb8\x7f\x48\x00\xe6\x49\x02\xb0\x43\x67\x50\x43\x01\xe9\xcd\x73\x40\x48\xfb\x64\xb4\xe5\x32\xb4\x80\xac\xb0\xba\xb9\xcb\xf3\x68\xb2\x9e\x89\x2d\x37\x06\x75\x93\x9d\x6d\x67\xce\x4b\xf9\xdd\xb7\xcb\xda\xbb\x23\xea\x11\x9d\x57\xd6\x34\x79\xe7\x1d\x62\xcb\x5a\x90\xb2\x86\x55\x7b\xcc\x1e\xcb\x00\x7f\x9f\x86\x7a\x94\x51\xe4\x24\x14\x70\x1f\x9b\xf2\x8f\x55\xc5\x54\xc9\x37\x98\x89\x4a\xd9\x6c\xf3\xbe\x1d\xc3\x43\x28\x90\xbb\x8d\x0f\x93\xd3\x9c\x08\xcd\xac\x2b\x33\x96\x5d\x5c\x1d\x2a\x40\x36\x46\x05\x8f\x30\xba\xb5\xda\x64\xb5\xd3\x45\x2c\x6e\x58\xc3\x2d\x51\xc5\xd0\xc8\xca\x2a\x43\x4d\xde\x23\x7e\xa8\x6b\x25\x8b\x9b\x9b\xe7\xf0\xbb\xf9\x7f\xc9\x45\xf8\xa3\xe4\xe2\x6e\x8b\xfb\xed\xa1\x6a\xfa\x14\x5d\x39\xd9\x5a\x39\x4f\x6c\x65\x2d\x15\x07\xec\x57\x2a\x15\xd6\x78\xab\xb1\x20\x3a\xbc\x9b\x78\xf6\xc7\xbb\x93\xdd\x8b\x6b\xc2\xc2\xe1\xdb\x4e\xb4\xbb\x23\x7a\xe6\xb1\xb6\xd1\x2c\x1e\x04\x0a\x20\x2c\x2b\xcd\x09\x03\x87\x66\xe9\xcd\x73\xc5\x69\x9b\x95\x56\xd6\x1a\x9b\x5c\xe8\xbc\x5b\xef\xec\xc0\x4b\x9d\x51\x59\xe9\x74\xd1\xf2\x0a\xe0\x38\x4d\x18\x7f\x0a\x18\x0f\xbb\xf7\xee\xa6\x78\xce\xbb\x33\xb7\xde\x7d\xfb\x86\x8e\x1e\xbd\x3b\x1e\xa6\xb7\x7e\x68\x72\x1a\x19\x34\x3d\x8b\x79\x0c\x18\x8f\xc1\xa4\xf2\xbb\x89\xf4\xa7\xe6\x9e\xae\xa3\x7e\x59\x2c\x4f\xfd\x27\xcc\x2d\xcc\xfb\x2d\xdb\xe1\xc1\xc3\xcb\x4f\x01\x7f\x79\x6b\xd0\x08\x2b\xb1\x15\x81\xde\x73\x5c\x1e\x59\xe6\x4b\xae\x35\x7a\x8a\xa5\x8e\xcb\x7b\x69\x6e\xb1\xff\x03\x6b\xf4\x01\x04\x17\x5b\x94\xcb\xa1\xb2\xc8\xa8\x41\x5a\xb9\x94\x1e\x96\x2b\x58\x71\x8f\xb5\x8b\x33\xe9\xbe\xb3\xb5\xe6\x61\x15\xd2\x34\x01\x68\xe6\x49\x93\x24\x17\x34\xfb\x97\x49\xcd\xee\x7b\x0f\x39\xf7\x1e\xc9\xc7\x72\xe6\x21\xd0\xef\x96\xf0\x0e\x7e\x94\xa5\x32\x50\xd6\x9e\x60\xcb\x1f\x11\x7a\x99\x40\x79\xba\x1a\xca\x90\x3d\xc6\x8a\xa1\x7a\xd2\x67\x97\xd5\xbf\x3b\xff\x48\x4f\x3e\xd3\xab\xe0\x52\xea\xcf\xfa\x5e\xc8\xc7\x1d\xfb\x34\xb2\xfe\xb1\x41\xbf\xa8\xf2\x17\x55\xfe\x2f\xab\x72\x2f\x90\xb5\xc7\x53\xe5\x05\xb2\xc3\xbd\x77\x2c\x9d\xad\x8c\x4c\x0a\xf3\x72\x05\x97\x17\x7b\x4c\xd1\x91\x8e\xff\x5a\xaf\xc2\xea\x11\xfa\x56\xca\xa3\xc0\xf4\xc5\xf9\x37\x34\x75\x00\xf8\xeb\x25\xf4\x82\x4e\x0e\xae\x6f\xa9\xe2\x54\xe0\xd7\xda\x07\xe0\xf8\x13\xeb\xf7\x0d\x0a\x90\x9c\x78\x26\xa8\xe3\xd1\x49\x84\x65\xef\x34\x8e\x92\x39\x34\x12\x1d\xca\xd0\xab\x00\x86\x74\x40\x8f\x8e\x7f\xc4\x7f\x50\x1f\xc2\x33\x6c\x1d\xdf\x22\xf4\x11\x3d\xc1\x69\x69\x4b\xae\x0c\xeb\xba\xfa\x22\x59\x34\xbe\xea\x0e\x00\x92\x90\x11\x03\xaf\x51\x93\x1d\xed\x30\x41\x8a\x15\xd7\xac\x1b\x4b\x60\x89\x55\x26\x8e\x11\x20\x5d\x74\x93\x83\x6e\xbe\x5a\x79\xea\x8d\xed\x9c\x8b\xb0\x9c\xfe\x2e\xcf\x6f\xfd\xdd\xd7\xdf\x7c\xff\x6e\xf0\x9f\x9e\xeb\x59\x6b\x77\xb2\xde\x3e\x8f\x5f\x22\x35\xfb\x95\x91\xc6\x33\x8f\xee\x51\x09\x64\xaa\x82\x02\x62\x4f\xb3\x20\xd5\xbb\x7a\x85\xd9\xb4\xe3\x38\x46\x6c\xaf\xaf\xd7\x6b\xb5\x1f\x7a\x35\x65\xbc\xa4\x26\x17\xb5\xa4\x09\x3f\x2a\x87\x44\x07\x56\x39\xd5\xae\xc4\x9a\x6b\x8f\xe1\x2d\xe0\x8d\xaa\xaa\x70\x67\x2a\x40\x5b\xbb\xab\xab\xb8\x4f\x5a\xb0\xde\xb2\x78\x7b\x7c\x0b\xb8\x7f\x98\xa0\xfc\x9f\xed\xed\xe1\x4a\xba\xc7\xab\xc6\xf9\x15\xbf\xf2\x3a\x14\xdd\xae\xa1\xf8\x69\xc0\x0f\xa7\x77\x97\xe7\xa3\xa8\xfd\x12\x7b\xf5\x99\xaf\xa7\x74\x44\xbe\x41\xe7\x57\xef\xbc\x2e\xdf\x59\x56\xff\xcb\x16\x1f\x20\x14\xa3\x91\x98\xe6\x2b\xd4\xfe\x04\x55\xa2\xdb\xe0\xec\x19\x52\x63\x25\x66\xbb\x61\x67\x33\x65\xf3\xf0\x28\x6d\xff\x25\x81\x26\x2e\x7f\x84\xb7\x1a\xf0\x49\xc8\x74\x76\xf5\x06\x22\xfd\x1d\x00\x00\xff\xff\x30\xe6\x8f\xad\xb8\x12\x00\x00"), - }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf": &vfsgen۰CompressedFileInfo{ name: "ssh.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5263, + uncompressedSize: 3866, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x5b\x6f\xdb\xb8\x12\x7e\xf7\xaf\x18\x28\x45\xd1\x1e\x58\x92\x93\xb6\x69\x91\x83\x3c\x9c\x87\x02\x07\xd8\x4b\x81\xb6\x8b\x3e\x14\x81\x41\x53\x63\x8b\x6b\x8a\x14\x66\x46\x76\x8c\x36\xff\x7d\x41\x4a\xf2\x0d\x76\xe2\xdd\xfa\x61\xb1\xd8\x97\x18\x12\x87\xdf\xf0\x9b\xcb\xc7\x89\x2e\xe0\x13\xea\x86\x10\xb4\xaf\x57\x80\xa2\x0b\xf8\xfc\xf3\x27\x50\xcc\x28\x0c\xca\x15\x30\x6f\x26\xa8\xbd\x9b\x9a\x19\x88\x07\xed\x9d\x90\xb7\x16\x89\x33\xf8\x9f\x16\xb3\x50\x82\x1c\x8d\x2c\x4a\xc6\x48\x0b\xa3\x71\x40\xc8\xbe\x21\x8d\x90\xb8\xc6\xda\x71\xff\x98\x40\x12\xfc\xa4\x1b\x94\x94\x51\x13\x0a\x27\xf0\x6d\x00\xa0\x7d\xe3\x04\x6e\xc1\xa2\x9b\x49\xf9\x62\xa1\x28\xdb\x98\x8e\x9d\xaa\x90\x5f\x0e\x06\x00\x17\xf0\xc5\x48\xe9\x1b\x81\x02\x6b\x74\x05\x8f\xbd\x1b\x02\x61\xe5\x05\x53\xbc\x47\x1d\x90\x6c\x01\x2c\x8a\x24\xb2\x58\x2a\x23\x30\xf5\x04\x95\xd2\xa5\x71\xc8\x30\xc1\xa9\x27\x8c\x60\x95\x12\x5d\x4e\xfc\x3d\xcc\xc8\x37\x35\x83\x22\x84\x25\x19\x11\x74\x43\xd0\xaa\x61\xe3\x66\xa0\xa0\x40\x55\x58\xaf\xe7\xd9\x00\xb6\xfc\xc2\x2d\x7c\x1d\x00\xc0\x1a\x65\x1c\x51\x32\xe3\x58\x94\xb5\xc3\x43\x6b\x1b\x52\x07\x97\x97\x9e\xe6\xed\xd2\xdd\x20\x46\xc5\x39\xd4\x62\xbc\x8b\x41\x02\x90\x55\x8d\xe1\xf7\x16\x12\xe6\x32\x89\xef\x4a\xcf\xd2\xbe\xdb\x8b\x5a\xe1\x2b\x65\x1c\x7f\x8d\xb1\xcd\x8c\x2b\xf0\xfe\x2e\xee\x68\x18\xa9\x43\xd1\x9e\xb0\x85\x11\x53\x61\x88\xeb\x2d\x24\xd7\xa3\x2a\xbc\x7b\x08\x47\xa8\xc9\x2f\x0c\x1b\xef\x90\x20\x99\x1a\x8b\x49\x77\x94\xe0\x08\x63\xce\x04\xab\xda\x2a\xc1\xb0\xfa\x22\x79\xf6\xad\x56\x52\x66\x95\x2f\x1a\x8b\x0f\xb9\xb6\xf9\xc4\x7b\x61\x21\x55\xa7\x9b\x8a\xca\x56\xaa\xb2\x99\x54\xb5\x4d\x86\x1d\x20\x80\xf8\x39\xba\xb1\x29\xa0\x3d\x1c\x29\x57\xf8\x6a\xcc\x42\xc6\xcd\xb2\x35\xca\xb8\x37\x1b\x6f\xb8\x66\x84\xdc\x58\xd9\xc1\x69\xeb\xeb\x49\x9c\xd6\xec\x28\x96\x56\x63\x8d\x24\xd0\x9d\xa9\xa5\x15\x41\x02\x99\xac\x5b\xee\x8c\x43\x13\xb4\xa1\x6d\xa3\x5b\x8a\xd4\x7c\x93\xe7\xcf\xbe\x85\xd4\xcc\xdf\x71\x97\x93\x58\xd0\x0f\x37\xd7\xaf\x5f\xbf\x6a\x83\xff\xf0\x32\xfe\x14\xc8\x62\x9c\x8a\x09\xbf\x85\xe4\xd9\xff\x3f\xfc\xf2\x3e\xdf\x04\xed\xf4\xa4\x1c\x3e\x6c\x68\xf2\xf1\xf6\x89\x0f\xfa\x0b\x56\xa9\xb6\x06\x9d\xa4\x5a\x65\x9a\xe4\x3c\x7e\x23\xe2\xe9\xbe\xcf\xed\x78\x8e\xab\xd3\xfc\xce\x71\x75\x16\xbf\x6d\x31\x9c\x42\xb8\xb5\x3c\x1b\xe1\xce\xf1\xd3\x84\x3b\xbf\xe7\x22\x5c\xe3\x69\x74\x83\xdd\xd9\xc8\x46\xa7\x4f\x53\x8d\x3e\x8f\x12\xdd\xba\x3f\x7a\xd7\xc6\x59\xe3\x70\x2d\xf1\x00\x09\xa3\x40\x8a\xc9\x70\xfd\xdc\x14\x1e\xaa\x05\xec\x77\x29\x04\x8f\xf1\x99\x1c\x0a\xf2\x76\x03\xef\x6e\xd6\xa5\x5f\x3a\x20\xef\xe5\x26\xfc\xf9\x33\x1b\x2b\x5f\xc0\xf5\x68\x74\xca\x96\x0b\xf8\x2d\x5e\x63\x49\x08\x44\x9e\x25\xe1\xc2\x37\xc8\x20\x25\xc6\x6b\x3f\x87\xa9\xb7\x05\x12\x50\x98\x07\xd8\x2c\xd0\xae\xc0\x38\x50\x0e\x4c\x81\x55\xed\x43\x0a\xd6\x58\x4b\xb5\xca\xe0\x13\x22\xf4\xda\xd6\x38\x73\x9f\xb1\x28\x3d\xc7\x7b\x5d\x2a\x37\xc3\x4c\xfb\x2a\x57\xf9\xd5\xd5\xbb\xeb\x57\x6f\xe3\xd5\x5b\xa0\x28\x63\x39\xeb\x49\x7c\x85\xb4\x68\x8f\xce\x6c\x63\x82\xe0\x0e\x9e\x3f\x87\x96\x5c\x0d\xe9\xc7\xdd\xd5\x3c\xdb\x7d\xce\xbc\x2d\xd6\xf6\x54\x41\x4a\xd3\x5d\x83\xfd\x2c\xcd\x0b\x43\x90\xd6\x7b\xa8\x87\x2c\x17\xb0\xa5\x05\xff\xd9\xdb\xb0\x9f\x86\x43\x80\xbb\xd2\x79\xc0\x20\x6f\xdb\xae\xd7\xd6\xc3\xfe\x37\x92\x70\x1c\xe1\xe9\xed\x73\x5c\x3d\xb2\x3d\xb4\xc3\x59\x08\x85\xe6\x7a\x9c\x4e\xdf\xf2\xc7\x76\x3f\xb5\xf5\x08\x91\x75\x57\x1f\xea\xab\xf4\x63\x04\xb8\x89\xe5\xf5\x58\x75\xb4\xdd\x94\x7e\x84\x37\x7d\x43\x1d\x31\xe4\x15\x0b\x56\x5a\x2c\x10\xb6\x03\xe6\x96\xd1\x5d\xaf\x2c\x42\x66\x36\x43\x62\xb8\xed\xa4\x64\xfb\xda\x3d\xf5\x66\xde\xbf\x41\x4e\xbd\x64\x76\x85\xf8\x34\xad\x7e\x18\x3c\x0c\x06\xbb\xff\x0e\xec\x8e\xfe\xca\x5a\x68\x27\xd3\x1f\x19\xfd\x5b\x84\x27\xc7\xfe\xd6\xec\xdf\x91\xff\xf4\x91\xbf\x8b\xd8\x3f\x7e\xdc\x6f\x79\xfe\xf8\xa8\x7f\x08\xe7\xef\x3f\xe6\x9f\x36\xa3\xfc\xe5\x99\xe4\xee\xb0\x10\xf4\x11\xe8\xbf\x0b\x88\x87\x0f\xbf\xbe\xdf\xfa\x18\x10\x1b\xae\x6d\xbd\xb5\xad\x78\xa8\x91\xa6\x9e\xaa\xc1\x05\x78\x87\x69\x28\x36\x60\xb4\xd3\x34\x54\x2e\x16\xa0\x6d\xc3\x82\x04\xeb\x0c\xd5\x21\x5f\x8f\x28\x48\x8f\x9d\x46\x57\x6d\x00\x0e\x0b\x83\x94\x86\x77\xd4\xa1\x52\xab\xfe\x80\x51\x05\xe2\xe0\xb3\x15\x9a\xc0\x33\x8b\x70\x9f\x91\x48\x85\x63\x83\x77\x76\x05\x85\x47\x0e\xc7\x07\x51\x3c\x07\x25\xa0\x62\xd7\x0c\x81\x3d\x18\x81\x65\x54\x1d\xa1\x55\xe0\xbb\x26\x12\x81\x96\xa5\xb1\x08\xce\xc3\x4f\xad\x44\xb6\x2a\x43\x8d\x73\x91\xe6\x41\x45\xd9\x61\x9c\x1d\xf9\x58\x32\x3c\x66\xba\x2b\xae\x67\xfe\x80\x30\x3a\x4d\x47\x2e\xdf\x9c\xa0\x23\x5d\x82\x61\xe3\x30\x56\xd6\xb8\x30\x74\xbc\x37\xda\xe2\x3b\x5b\x5f\x74\xb5\x9c\xfb\x5a\xf2\xbe\xb0\x76\xc6\x65\x04\x96\x62\xd2\x4c\x43\x66\x0b\xc3\x6a\x62\xdb\xaa\x99\x34\xd3\x29\x52\x97\xde\x9a\x8c\x93\x70\x59\x58\x3f\x8b\x8d\x51\xa9\x39\x02\x87\xd6\xc1\x05\xd2\x4a\xca\xb0\x68\x18\x84\x94\xe3\x2a\xdc\x30\x05\x4c\x94\x9e\x83\xf8\xb5\xaf\x4d\xc9\x75\xc5\xb9\x44\x20\x94\x86\x1c\x20\x91\xa7\x0c\xbe\x20\x70\x19\x4b\x2d\x74\x61\x3c\x89\x8f\xf5\xbd\xc0\x50\x85\xde\x69\x5c\xa3\xf5\x42\x34\x33\x52\x36\x93\x38\x87\x97\x8a\x4b\xa3\x3d\xd5\xb9\xf4\xae\x72\xc3\xdc\x20\xe7\x57\x6f\x2f\xaf\x2e\x21\x76\x0b\x7b\xbb\xc0\x22\x3b\x32\xed\xec\xb5\xf7\xf7\xef\xf0\xa2\x8b\x4f\x6a\x46\x90\xfa\x11\xa4\x38\x6a\x87\xf1\xdf\x7d\x43\x4e\xd9\xb0\x2b\x6d\x36\x5b\xd2\xd4\xf9\xb4\x56\x33\xa4\xff\x02\xde\x1b\x81\xcb\x97\x7b\xba\xf3\x47\x00\x00\x00\xff\xff\x1d\x31\x01\xeb\x8f\x14\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xdd\x6e\xdb\x46\x13\xbd\xd7\x53\x1c\xd0\x1f\x82\xe4\x83\x49\xda\x2e\x92\x14\x29\x74\xd1\x8b\x00\x05\xfa\x13\x20\x49\x91\x8b\xc0\x10\x56\xcb\x91\xb8\x15\xb9\x4b\xcc\x0e\x25\x0b\x8d\xdf\xbd\xd8\xa5\x28\x89\xaa\x64\xab\xad\x6e\x6c\x90\x9c\x99\x33\x67\x77\x7e\x8e\xae\xf0\x89\x74\xcb\x04\xed\x9a\x35\x48\x74\x81\xcf\xbf\x7c\x82\xf2\x9e\xc4\x43\xd9\x02\x8b\x76\x4a\xda\xd9\x99\x99\x43\x1c\xb4\xb3\xc2\xae\xaa\x88\x7d\x86\x1f\xb5\x98\xa5\x12\xf2\xd1\xa8\x22\xc9\x3c\xf1\xd2\x68\x1a\x31\x79\xd7\xb2\x26\x24\xb6\xad\xaa\x49\xff\x98\x20\x09\x38\xe9\x2e\x4a\xea\x49\x33\x89\x4f\xf0\xe7\x08\xd0\xae\xb5\x82\x31\x2a\xb2\x73\x29\x5f\x2e\x15\x67\x3b\xd3\x89\x55\x35\xf9\x57\xa3\x11\x70\x85\x2f\x46\x4a\xd7\x0a\x0a\x6a\xc8\x16\x7e\xe2\xec\x35\x98\x6a\x27\x94\xd2\x03\xe9\x10\xa9\x2a\xe0\x45\xb1\x44\x16\x2b\x65\x04\x33\xc7\xa8\x95\x2e\x8d\x25\x8f\x29\xcd\x1c\x53\x0c\x56\x2b\xd1\xe5\xd4\x3d\x60\xce\xae\x6d\x3c\x14\x13\x56\x6c\x44\xc8\x5e\x43\xab\xd6\x1b\x3b\x87\x42\x41\xaa\xa8\x9c\x5e\x64\x23\xec\xe1\x62\x8c\xaf\x23\x00\xa8\x5d\xd1\x56\xb4\x9f\x70\xc3\x6e\x66\x2a\xba\x1e\x01\xf7\xa3\x48\xcf\x5a\xd2\x62\x9c\x8d\x6c\x01\x59\x37\x14\xfe\x8f\x91\x78\x5f\x26\xf1\x5d\xe9\xbc\x74\xef\x0e\xe8\x17\xae\x56\xc6\xfa\xaf\xf1\x90\x32\x63\x0b\x7a\xb8\x8f\x1e\xad\x27\xde\x44\xd1\x8e\xa9\x0b\x23\xa6\xa6\x70\x40\x63\x24\x6f\x6e\xea\xf0\xee\x31\xa4\xd0\xb0\x5b\x1a\x6f\x9c\x25\x46\x12\x92\x4b\x36\xa9\x04\x20\xb2\x11\x19\xe3\xbf\x73\x19\xa0\x66\x53\xe7\xc4\x0b\xab\x66\xb2\xab\x8e\x18\xa5\x20\x2f\xc6\xaa\x48\x71\x8c\xe4\x7f\x3f\x7d\xf8\xf5\x7d\xbe\xb3\xf9\x97\x69\x04\xb8\x10\x24\x0b\xf5\x39\xd1\x6a\xa2\x89\xe5\x34\x5e\xb0\x4a\x75\x65\xc8\x4a\xaa\x55\xa6\x59\x2e\x83\x1b\x23\x9e\x8f\x7d\x69\xe0\x05\xad\xcf\xc3\x5d\xd0\xfa\x22\xb8\xa1\x99\x89\xcf\x21\xdc\x59\x5e\x8c\xf0\x06\xf8\x79\xc2\x1b\xdc\x4b\x11\x6e\xe8\x3c\xba\xc1\xee\x62\x64\x23\xe8\xf3\x54\x23\xe6\x49\xa2\x7b\xa3\xaf\x87\x36\xb6\x32\x96\xb6\xd3\x09\x48\x3c\x09\x52\x4a\xae\xb7\xcf\x6d\xe1\x50\x2f\x71\xd8\xa5\x08\x88\xf1\x99\x2d\x09\xf9\xfd\x06\x1e\x3a\xeb\xd2\xad\x2c\xd8\x39\x79\x17\xfe\xfc\x13\xc7\xda\x15\x78\x73\x73\x73\x8e\xcb\x15\x7e\x8f\x13\x38\x09\x07\x91\x67\x49\xd8\x55\x86\x3c\xa4\xa4\xb8\xb1\x72\xcc\x5c\x55\x10\x83\xc3\x2a\xf3\x66\x49\xd5\x1a\xc6\x42\x59\x98\x82\xea\xc6\x85\x2b\xd8\xc6\x5a\xa9\x75\x86\x4f\x44\x28\x45\x1a\xff\x2e\xcf\x5b\x6b\x1e\x32\x2f\x4a\x2f\xe8\x41\x97\xca\xce\xc3\xdc\xab\x73\x95\xdf\xdd\x7d\xff\xe6\xbb\xb7\x71\x6b\x14\x24\xca\x54\x3e\xeb\x49\x7c\x45\x5a\x74\xa9\x7b\x5f\xc5\x0b\xc2\x3d\x5e\xbc\x40\x47\xae\x41\xfa\x71\xf8\x35\xcf\x86\xcf\x99\xab\x8a\xad\x3d\xd7\x48\x79\x36\x34\x38\xbc\xa5\x45\x61\x18\x69\x73\x10\xf5\x98\xe5\x12\x7b\xb3\xe0\xff\x07\x0e\x87\xd7\x70\x2c\xe0\x70\x74\x1e\x31\xc8\xbb\xb6\xeb\x67\xeb\x71\xfc\xdd\x48\x38\x1d\xe1\x79\xf7\x05\xad\x9f\x70\x0f\xed\x70\x11\x42\xa1\xb9\x9e\xa6\xd3\xb7\xfc\x29\xef\xe7\x5c\x4f\x10\xd9\x76\xf5\xb1\xbe\x4a\x3f\xc6\x00\xef\x62\x79\x3d\x55\x1d\x5d\x37\xa5\x1f\xf1\xba\x6f\xa8\x13\x86\x7e\xed\x85\x6a\x2d\x15\x98\x3a\x6d\xb4\x67\x74\xdf\x4f\x16\x61\x33\x9f\x13\x7b\x8c\x37\xa3\x64\x7f\xed\x9e\xbb\x99\x0f\x37\xc8\xb9\x4b\x66\x38\x88\xcf\x9b\xd5\x8f\xa3\xc7\xd1\x68\xa8\x64\x7b\xe3\x5e\xc9\x8a\xc3\x87\xdf\xde\xef\xc9\xd7\xa8\x0a\xbb\x33\xd8\xda\x8a\x43\x43\x3c\x73\x5c\x8f\xae\xe0\x2c\xa5\x41\x44\xc1\x53\x35\x4b\x83\x2a\xa3\x02\xba\x6a\xbd\x10\x63\x2b\x80\x1a\x63\xe7\xd9\x13\x72\xb7\x8f\x9d\x46\xa8\x6e\x36\x1f\x57\xaf\x52\x1a\x3f\x90\xb0\xb5\x5a\xf7\x09\x46\xa9\x1a\xe7\xdd\xde\x94\x0e\x3c\xb3\x18\xee\x33\x31\xab\x90\x36\x9c\xad\xd6\x28\x1c\xf9\x90\x3e\x44\xf9\x05\x94\x40\x45\x35\x78\x0d\xef\x60\x04\xab\x28\x8d\x85\xd7\x81\xef\x96\x48\x0c\xb4\x2a\x4d\x45\xb0\x0e\x3f\x77\x7a\xbe\x93\xc2\xdc\x5a\x1b\x69\x1e\x95\xbd\x03\xc6\xd9\x09\x79\x7f\x61\x09\x7c\x73\x9e\xf0\xbd\x7d\x7d\x86\xf0\xdd\xdc\x1c\x76\x80\xb1\x64\x26\x85\xe1\xd3\x2b\xb9\xab\xaa\xff\xb2\x8b\x07\xbb\x77\x53\xa4\xb9\x6b\x24\xef\x2b\x66\xb0\xfe\x08\x5e\x8a\x69\x3b\x0b\x57\x56\x18\xaf\xa6\x55\x57\x0e\xd3\x76\x36\x23\xde\xdc\x5b\xc3\xc6\x4a\x58\x94\x95\x9b\xc7\x8a\xaf\xd5\x82\xe0\x43\x4f\xd0\x92\x78\x2d\x65\xf8\x68\x3c\x84\x95\xf5\x75\xf8\x7d\x53\x60\xaa\xf4\x02\xe2\xb6\x58\xbb\x5a\xda\x54\xdd\x8a\xc0\x24\x2d\x5b\x10\xb3\xe3\x0c\x5f\x08\xbe\x8c\x35\x14\xda\x2b\x66\xe2\x62\xe1\x2e\x29\x94\x97\xb3\x9a\xb6\xd1\xfa\x1d\x3b\x37\x52\xb6\xd3\xb8\x57\x4b\xe5\x4b\xa3\x1d\x37\xb9\xf4\x50\xb9\xf1\xbe\x25\x9f\xdf\xbd\xbd\xbd\xbb\x45\x6c\x03\xef\xaa\x25\x15\xd9\x89\xe9\x75\xd0\xb7\xdf\xbe\xe1\xe5\xe6\x7c\x52\x73\x83\xd4\xdd\x20\xa5\x9b\x6e\xb9\xfe\xe1\x5a\xb6\xaa\x0a\x5e\x69\xbb\x73\x49\x53\xeb\xd2\x46\xcd\x89\x7f\x00\x3d\x18\xc1\xed\xab\xc1\x18\x7c\x1c\xfd\x15\x00\x00\xff\xff\x9a\x2f\xe9\xea\x1a\x0f\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5813, + uncompressedSize: 5953, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x6f\xe3\xb6\x12\x7e\xf7\xaf\x18\x64\x1f\x92\x00\xb1\xe2\x64\xbb\x37\xa3\x7d\x58\x38\x29\xba\x38\x4d\x36\xed\x66\x4f\x0f\x50\x14\xc2\x98\x1c\x59\x84\x29\x52\xe5\x50\xbe\xa0\xe8\x7f\x3f\x20\x25\xd9\xb2\x2d\xef\x49\x4e\x93\x97\x00\x36\x39\xf3\xcd\x37\xdf\x5c\xe8\x05\x3a\x85\x53\x4d\x70\x22\x74\xc5\x9e\x5c\x6a\xb0\xa0\x13\xf8\x6b\x00\xe0\xd7\x25\x41\xf3\xf7\x03\xb0\x77\xca\xcc\x06\x00\x92\x58\x38\x55\x7a\x65\x0d\xfc\x00\x27\x5f\x8d\xfa\xb3\x22\x68\xae\x43\xbc\x3e\xf8\x7b\x30\x78\x05\x53\x74\x34\x2c\xc8\xa3\x1e\x0c\xb6\x7e\x0a\xf4\x22\x9f\xda\x55\x9a\x7b\x5f\xa6\x64\x64\x69\x95\xf1\xcf\xf1\x78\xd7\x58\x80\x9f\x1e\x1f\x1f\xc0\x11\xca\xa1\x35\x7a\x0d\xad\x2d\x38\xa3\x64\x96\x40\xb0\x3f\xbe\xbc\x6c\xfd\x25\xb4\xc2\xa2\xd4\x94\x08\x5b\x8c\xdf\x8f\xde\x8f\xce\x23\xcc\x2d\x30\xcb\xa9\xc8\xd1\x18\xd2\xff\x03\x4c\x86\x95\xf6\xcd\xc7\x27\xec\xc3\xed\x93\x43\x94\x3f\x6a\xf4\x02\x1d\x4c\xac\xf1\xa8\x0c\x39\xf8\x59\x99\x6a\x05\x8d\x0f\xf0\x16\x94\x61\x8f\x5a\x43\xe6\x6c\x01\x67\xb5\xa5\x0b\x98\x92\xc7\x0b\x40\x5d\xe6\x78\x01\x24\x67\xd4\x03\x74\x41\x8e\x95\x35\xcf\x01\x2a\x2a\xe7\xc8\xf8\x67\x20\x6d\x9c\x74\x91\x9e\x65\xd6\x41\x43\x24\x9c\x5e\x5f\x7d\xb8\x4a\xde\x24\xa3\x53\x18\x02\x13\x45\xc6\x79\x7c\x79\xb9\x5c\x2e\x93\xac\x36\x3a\xd4\xc1\x54\x62\xdd\xec\xd2\x91\x26\x64\xe2\xcb\xf3\x46\x1f\x05\x8a\x5c\x19\xe2\xc1\x2b\x78\x24\xe7\x30\xb3\xae\x38\x65\x10\xae\x92\x04\x27\x31\x2a\x5e\xb3\xa7\xe2\x04\xa4\x25\x06\x63\x3d\x94\xce\x96\xe4\xf4\x1a\xb8\x2a\x4b\xeb\x3c\x68\xc5\x9e\xc1\x66\x50\x60\xc9\xc0\x16\x96\x04\xd2\x82\xcf\x15\x27\x5d\xd2\x84\x35\xde\x59\xad\x1b\x85\x73\x1f\x75\xc1\xd6\x59\xcd\xdf\xf9\x21\x4d\x9f\x9d\x24\x47\x32\x9e\x0a\x0e\xb7\x16\xa3\xe8\xb9\x91\xdd\xef\xc6\x4a\xba\xfa\x63\x3f\x69\x1d\xff\x05\x8a\x97\x75\xaf\x24\x19\xaf\xb2\xb5\x32\x33\xb8\xfb\x38\x01\x94\xd2\x11\xf3\x16\xd2\x9b\xeb\xf1\x9b\xef\xc6\xa3\xd1\x18\xaf\xc6\x1f\xc4\x18\xe9\x5b\xf0\xa4\x2d\x50\x99\x97\x45\xf8\xe3\x2f\x37\xf7\xbb\x04\x75\xcb\xf1\x00\xcd\xd2\xba\xf9\xcb\x25\xaa\xb6\x76\x98\xa4\xeb\x0b\x08\xff\x5e\x1f\x73\xff\x32\x79\x6a\xbc\x3f\x3d\x47\xd3\xeb\xf1\x75\x36\x7e\xff\xf6\x02\x36\x1f\x89\xd7\xe3\xb7\x57\xe3\x77\xef\x8e\x21\x7d\xb1\x94\x35\x60\x0f\xd2\x75\xdd\x4d\x57\x43\xdb\x37\x33\x28\xb4\x48\xd9\xa8\xb2\x24\xdf\x0b\xab\xc0\xf2\xac\x0b\xad\x07\xdb\x1d\x96\x75\x67\x6c\xfa\x44\x93\x40\x6f\xb7\x35\xbf\xdf\xb1\x26\xd6\x64\x6a\x06\x1b\xc7\x07\x5d\xf0\xaf\xbf\x77\x61\x6a\x9c\x92\x3e\x0a\xf0\x28\x6d\x01\x9a\xcd\xa0\xbe\x0d\xa1\x27\xb6\x1a\xb3\x92\x38\x39\xe6\xf7\x55\x28\x89\x4c\xcd\x2a\x87\xc1\x52\x17\xc8\xfc\x3d\x37\x59\xec\x0c\xe0\x3d\xaf\x93\x6d\x3d\xdd\xdc\x7f\x89\x74\xc0\x32\x57\x22\x07\x47\x6c\xf5\xa2\x26\x07\x77\x3a\x43\xe8\xdb\x46\x50\x02\xbf\x45\x80\x0c\x68\x24\xcc\xab\x29\xd5\x48\x4e\x19\x96\x4a\x6b\x10\xb6\x28\x2a\xa3\x04\x7a\x82\xa5\xf2\x79\xec\x9f\xfb\x03\xb5\x19\xf1\xdd\xbc\x9f\x9f\x1c\x9b\x3f\x3b\x34\x33\xe7\xe9\x9c\xd6\xff\x87\x40\xbf\x7c\xf9\x09\xca\x6a\xaa\x95\x80\x60\x20\x72\x5d\x31\x39\x38\x15\xd6\xd1\xe9\x9e\xea\x90\x99\x7c\x2a\x95\xeb\xe5\xef\x01\x43\x60\x81\x21\xa9\x1c\x09\x6f\xdd\x1a\x96\x39\x39\x82\x19\x19\x72\xe8\x49\x42\xb4\xc0\xc0\xb9\xad\xb4\x84\x29\x41\xa9\x51\x90\x84\x33\x51\x4b\x8d\x81\x49\x38\xf2\xfc\xc4\xc8\x0d\xf9\x20\x8d\xb4\xf0\x55\x3f\xa6\x7c\xcd\x4a\xa0\x86\xfb\xfa\x20\xdc\x3d\x7e\x4d\x0e\x4d\x9b\xaa\x98\x92\xeb\x37\xad\xca\x14\x2b\x6f\x25\x79\x12\xc1\x6c\x5a\x90\xcf\xad\xec\x75\x77\x17\xbf\x8a\x24\x6c\xae\x80\xcf\x09\x72\xcb\x1e\x3e\x3d\x2c\xbe\x6b\x1b\xd3\xd1\xf0\x0e\x16\x8b\x4c\x39\xf6\xc3\xcc\x56\x46\xee\xa5\xa3\xb4\x32\x15\x4a\xf6\x67\x63\xf2\xe9\xe6\xd7\xda\xa3\x43\x33\xa3\x88\x89\x59\xcd\x0c\xfc\xab\x9a\x92\x33\xe4\x89\xa1\xb4\xf2\x19\x48\xae\x46\xc9\x75\x32\x4a\x46\x97\x57\x6f\xf7\x90\x30\xb9\x85\x12\x74\x14\xcd\xf7\xdf\xdf\x7e\xbe\x19\x3c\x09\x52\x63\x8a\x93\xc1\x63\x4e\x70\x15\x69\xab\x8b\x68\x4a\xa1\x10\xc9\x2d\x48\x46\x9d\x86\x32\x4b\xb1\x54\xf1\x23\x77\x11\x79\xbe\x1a\xf9\xfc\xe8\x85\x20\x69\x69\x38\x19\x04\x30\x83\x4e\xd8\x3d\x21\xd7\xe1\xbe\xee\x86\xfb\x0a\x6c\x8c\x67\x77\xdf\x6e\xf7\xfa\xa6\xbb\x70\x95\x65\x6a\xd5\x9b\x91\x5f\x2a\x72\x8a\xea\x1a\x6b\x26\x4a\xdb\x0c\x08\xea\x7b\x1b\xdc\x68\x78\x19\x27\xc7\x74\xbd\x81\x0d\x37\x0d\x36\xc5\x9b\x5e\xa1\x6d\x10\x77\xdd\x3f\x32\x6b\x93\x06\x7e\xc2\x0b\x91\xec\x9c\x39\x87\xa7\xe7\x79\xe7\xe2\x5e\xa6\xa5\x5d\x1a\x6d\x51\xa6\xa5\xb3\xde\x0a\xfb\xac\x65\x3e\x2e\xb0\x3d\x1b\xf2\x43\x63\x0b\xd4\xc3\x7f\x6e\xdb\xe6\x50\x71\x54\x48\xeb\x30\xb2\x34\x0f\x2a\xd1\xb1\xc9\x2a\xa3\xbc\x93\x1b\x52\x62\x6f\x8e\xf6\x2f\x36\x4d\xfb\xcf\x4a\x39\xe2\xda\xa8\xb0\x45\xa9\x34\xc9\x9a\x71\xe1\xd6\xa5\xb7\xed\x92\x9b\xc0\x57\x53\x31\x49\x50\x19\x08\x14\x39\xc9\xb4\x5d\xc8\x15\x83\x77\x15\x25\xfb\xe3\x77\xe7\x54\x1f\x05\x53\x6b\xf5\x01\x01\x19\x6a\xa6\xc3\xf0\x7f\xcb\xc9\xe7\xe4\x62\x84\x61\xfd\x46\x1f\xb6\x98\x7a\x37\x6f\xd9\x08\x31\x4c\xad\xf5\x4d\xec\x9d\x87\x4d\xfb\x00\x83\xcb\xa6\xb9\x46\x70\x09\xdc\x5b\x4f\xe0\x73\xac\x1b\x10\xca\x42\x19\x28\x2a\xf6\x90\xe3\x82\x36\xb4\x52\x4d\xec\xf6\xcd\x03\xca\x78\xbb\x35\x5a\xdb\xdc\x8f\xbf\x01\x90\x4a\xc5\xf3\xe7\x08\xe0\x52\xd2\xe2\x92\x25\xf6\x68\xe0\x46\xf1\x1c\x24\x85\xda\x0f\xa9\xac\x73\x18\xa0\xb5\xc1\x96\xce\x66\x4a\xd3\x66\x78\xb4\x9f\xf7\xb2\x56\x57\x44\xeb\xae\x6f\x1b\x8f\x7b\x4d\x1a\x9f\x4f\xa9\x0d\x6f\xa0\xa7\x47\xd1\x87\xfe\xf6\xe1\xd7\xdb\xc9\xc7\xc7\xdb\x9b\x31\x7c\x29\x49\xa8\x6c\x0d\x68\xe0\xf3\xed\x1d\xa8\x02\x67\x04\x2a\x4e\x85\xa0\x69\x64\x98\x22\x53\x6c\x03\x9d\xf8\xe2\xca\xd2\xe0\xc6\x42\x5d\xc0\xa2\x58\xa2\xa3\xd4\xe1\xf2\x02\x56\x64\xce\xc1\x3a\xd0\x14\x72\x37\xd5\x68\xe6\x9b\xfb\x2d\xb8\xe8\x67\x2f\xd0\xba\x5e\x52\x74\x33\xee\x6d\x49\x1f\xa5\x54\x75\x4b\xdb\x94\x96\x9b\x55\x05\x99\xba\x9e\x4a\x67\x17\x4a\x12\xa0\xdf\xe8\xaf\x67\x78\x1e\x6c\x18\x5d\xb2\x7e\xff\x63\x17\x11\x99\xf0\x3f\x75\x14\x0a\x4f\x99\xd9\x37\x6b\x67\x07\xeb\x6d\xbc\x09\x15\x07\x3a\xad\x03\x34\xa8\xd7\x5e\x09\x86\x8d\xb1\x48\x71\xc9\xde\x11\x16\x0c\x67\x13\xd4\x4a\xd8\xf3\xc3\x75\xb1\xae\xc3\x3e\x5c\x38\x9b\x39\x9a\xc5\x5c\xf4\x12\xd6\x80\x08\xbc\x77\x66\xd6\xc7\xed\x2d\xf8\x19\xd7\xe4\xe0\x4c\x76\xda\x52\xe8\x20\x3d\xfb\x4c\x6f\x8b\x08\x67\xf7\x3a\xae\xe2\x08\x8d\x49\x67\x69\xd8\x23\x48\xa6\x61\xf4\x69\xf2\xbd\x10\x6f\xea\xf3\xf5\x54\x21\x9d\x41\x7d\x07\x9a\x3b\xad\xde\xea\xd9\xd2\x38\x3f\x02\x2e\x0e\xbd\x09\x39\xaf\xb2\xb8\xbb\xf2\x4e\x11\x91\xf3\x9c\x2e\x50\x2b\xa9\xfc\x3a\x2d\xc9\x29\x2b\xd3\xdc\x56\xae\x5f\x6b\xff\x6e\x4e\x86\xcd\xbe\xad\x5b\xd1\xb1\x0d\xca\x40\x7d\xfb\xd8\x7a\xb6\xcf\xd5\xfb\x77\x6f\x47\x7b\x7a\xdf\x59\x09\x52\x5a\x79\x87\x69\xa6\xf1\x88\xfc\x6f\xc3\xf7\x10\xbf\x87\x32\x74\xba\x58\xa4\x81\xb4\x61\x87\xb4\xe1\xc6\xe0\x3f\x17\x7f\x1c\x3c\x69\x58\xdc\xbc\xc3\x2c\x53\xe2\x5b\x2a\x53\x66\xd8\xfe\xec\x57\x86\xad\xb2\xbe\x01\x8d\x15\x65\x4d\x0f\x9e\x6f\xcc\x9d\xdd\x0e\x3e\x33\xd6\x51\xba\x7a\x33\xfa\x90\x0a\x93\x8a\x9c\xc4\xbc\x17\xcb\xa7\x78\x10\x26\xf7\x10\xcf\xc4\x34\x85\x5b\x3b\xb9\xfb\x07\x40\x84\x35\xc6\x3b\x14\xf3\xb4\xc0\x55\x50\x51\x1a\xf6\x9d\x5e\x28\xc3\xe1\xe6\xf0\xb0\xc0\xd5\xb0\x24\x37\x0c\x87\x61\x81\xba\xa2\xcd\x4e\x38\x2c\x9d\x5d\xad\x13\xb8\xc3\x95\x2a\xaa\xa2\x51\x4f\x90\xdd\xfd\xc7\xc7\xf0\x7a\x33\xf5\x22\xdf\xd4\x26\x8a\x39\x94\xe4\x60\xf2\xf0\x35\xae\x5a\x70\x36\x8a\x8f\xe0\xd8\x6a\x83\x48\xb5\x2a\x94\x07\xe4\xa1\xaa\x9f\x77\x35\x75\xb5\x7e\xb7\x78\x94\xe9\x38\x8f\x9a\x3a\x7f\xe2\x43\xa3\x1d\xa6\xde\xa6\x5c\x84\xca\x64\xdf\x19\xac\xfb\xe9\x68\xa6\xde\xb1\x1f\x15\x43\x48\xa1\xf0\x1b\x43\x10\x0c\x3d\x37\x3b\xff\x0d\x00\x00\xff\xff\x8a\x0a\x11\x06\xb5\x16\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x6f\xe3\xb6\x12\x7e\xf7\xaf\x18\x64\x1f\x92\x00\xb1\xe2\xa4\xdd\x9b\xd1\x3e\x2c\x9c\x14\x5d\x9c\x26\x9b\x76\xb3\xa7\x07\x28\x0a\x61\x4c\x8e\x2c\xc2\x14\xa9\x72\x28\x5f\x50\xf4\xbf\x1f\x90\x92\x6c\xd9\x96\x73\x92\xb3\x9b\x97\x00\x36\x67\xe6\x9b\x6f\xee\x5e\xa0\x53\x38\xd5\x04\x27\x42\x57\xec\xc9\xa5\x06\x0b\x3a\x81\xbf\x07\x00\x7e\x5d\x12\x34\x7f\x3f\x02\x7b\xa7\xcc\x6c\x00\x20\x89\x85\x53\xa5\x57\xd6\xc0\x8f\x70\xf2\xc5\xa8\xbf\x2a\x82\x46\x1c\xa2\xf8\xe0\x9f\xc1\xe0\x15\x4c\xd1\xd1\xb0\x20\x8f\x7a\x30\xd8\xda\x29\xd0\x8b\x7c\x6a\x57\x69\xee\x7d\x99\x92\x91\xa5\x55\xc6\xbf\xc4\xe2\x5d\xa3\x01\x7e\x7e\x7c\x7c\x00\x47\x28\x87\xd6\xe8\x35\xb4\xba\xe0\x8c\x92\x59\x02\x41\xff\xf8\xf2\xb2\xb5\x97\xd0\x0a\x8b\x52\x53\x22\x6c\x31\x7e\x37\x7a\x37\x3a\x8f\x30\xb7\xc0\x2c\xa7\x22\x47\x63\x48\xff\x0f\x30\x19\x56\xda\x37\x1f\x9f\xb0\x0f\xd2\x27\x87\x28\x7f\xd2\xe8\x05\x3a\x98\x58\xe3\x51\x19\x72\xf0\x8b\x32\xd5\x0a\x1a\x1b\xe0\x2d\x28\xc3\x1e\xb5\x86\xcc\xd9\x02\xce\x6a\x4d\x17\x30\x25\x8f\x17\x80\xba\xcc\xf1\x02\x48\xce\xa8\x07\xe8\x82\x1c\x2b\x6b\x5e\x02\x54\x54\xce\x91\xf1\x2f\x40\xda\x18\xe9\x22\x3d\xcb\xac\x83\x86\x48\x38\xbd\xbe\x7a\x7f\x95\xbc\x4e\x46\xa7\x30\x04\x26\x8a\x8c\xf3\xf8\xf2\x72\xb9\x5c\x26\x59\xad\x74\xa8\x83\xaa\xc4\xba\xd9\xa5\x23\x4d\xc8\xc4\x97\xe7\x4d\x7e\x14\x28\x72\x65\x88\x07\xaf\xe0\x91\x9c\xc3\xcc\xba\xe2\x94\x41\xb8\x4a\x12\x9c\x44\xaf\x78\xcd\x9e\x8a\x13\x90\x96\x18\x8c\xf5\x50\x3a\x5b\x92\xd3\x6b\xe0\xaa\x2c\xad\xf3\xa0\x15\x7b\x06\x9b\x41\x81\x25\x03\x5b\x58\x12\x48\x0b\x3e\x57\x9c\x74\x49\x13\xd6\x78\x67\xb5\x6e\x32\x9c\xfb\xa8\x0b\xba\xce\x6a\xfe\xce\x0f\x69\xfa\xe4\x24\x39\x92\xf1\x55\x30\xb8\xd5\x18\x93\x9e\x9b\xb4\xfb\xc3\x58\x49\x57\x7f\xee\x07\xad\x63\xbf\x40\xf1\x6d\xcd\x2b\x49\xc6\xab\x6c\xad\xcc\x0c\xee\x3e\x4c\x00\xa5\x74\xc4\xbc\x85\xf4\xfa\x7a\xfc\xfa\xfb\xf1\x68\x34\xc6\xab\xf1\x7b\x31\x46\x7a\x0a\x9e\xb4\x05\x2a\xf3\x6d\x11\xfe\xf4\xeb\xcd\xfd\x2e\x41\xdd\x72\x3c\x40\xb3\xb4\x6e\xfe\xed\x02\x55\x6b\x3b\x0c\xd2\xf5\x05\x84\x7f\xdf\x1d\x33\xff\x6d\xe2\xd4\x58\x7f\x7e\x8c\xa6\xd7\xe3\xeb\x6c\xfc\xee\xcd\x05\x6c\x3e\x12\xdf\x8d\xdf\x5c\x8d\xdf\xbe\x3d\x86\xf4\x9b\x85\xac\x01\x7b\x10\xae\xeb\x6e\xb8\x1a\xda\x9e\x8c\xa0\xd0\x22\x65\xa3\xca\x92\x7c\x2f\xac\x02\xcb\xb3\x2e\xb4\x1e\x6c\x77\x58\xd6\x9d\xb1\xe9\x13\x4d\x00\xbd\xdd\xd6\xfc\x7e\xc7\x9a\x58\x93\xa9\x19\x6c\x0c\x1f\x74\xc1\xbf\xff\xd9\x85\xa9\x71\x4a\xfa\x28\xc0\xa3\xb4\x05\x68\x36\x83\x5a\x1a\x42\x4f\x6c\x73\xcc\x4a\xe2\xe4\x98\xdd\x57\xa1\x24\x32\x35\xab\x1c\x06\x4d\x5d\x20\xf3\x77\xdc\x44\xb1\x33\x80\xf7\xac\x4e\xb6\xf5\x74\x73\xff\x39\xd2\x01\xcb\x5c\x89\x1c\x1c\xb1\xd5\x8b\x9a\x1c\xdc\xe9\x0c\xa1\x6f\x1b\x41\x09\xfc\x1e\x01\x32\xa0\x91\x30\xaf\xa6\x54\x23\x39\x65\x58\x2a\xad\x41\xd8\xa2\xa8\x8c\x12\xe8\x09\x96\xca\xe7\xb1\x7f\xee\x0f\xd4\x66\xc4\x77\xe3\x7e\x7e\x72\x6c\xfe\xec\xd0\xcc\x9c\xa7\x73\x5a\xff\x1f\x09\xfa\xf9\xf3\xcf\x50\x56\x53\xad\x04\x04\x05\x91\xeb\x8a\xc9\xc1\xa9\xb0\x8e\x4e\xf7\xb2\x0e\x99\xc9\xa7\x52\xb9\x5e\xfe\x1e\x30\x38\x16\x18\x92\xca\x91\xf0\xd6\xad\x61\x99\x93\x23\x98\x91\x21\x87\x9e\x24\x44\x0d\x0c\x9c\xdb\x4a\x4b\x98\x12\x94\x1a\x05\x49\x38\x13\x75\xaa\x31\x30\x09\x47\x9e\x9f\xe9\xb9\x21\x1f\x52\x23\x2d\x7c\xd5\x8f\x29\x5f\xb3\x12\xa8\xe1\xbe\x7e\x08\x77\x8f\x5f\x92\x43\xd5\xa6\x2a\xa6\xe4\xfa\x55\xab\x32\xc5\xca\x5b\x49\x9e\x44\x50\x9b\x16\xe4\x73\x2b\x7b\xcd\xdd\xc5\xaf\x22\x09\x1b\x11\xf0\x39\x41\x6e\xd9\xc3\xc7\x87\xc5\xf7\x6d\x63\x3a\xea\xde\xc1\x62\x91\x29\xc7\x7e\x98\xd9\xca\xc8\xbd\x70\x94\x56\xa6\x42\xc9\xfe\x68\x4c\x3e\xde\xfc\x56\x5b\x74\x68\x66\x14\x31\x31\xab\x99\x81\x7f\x55\x53\x72\x86\x3c\x31\x94\x56\xbe\x00\xc9\xd5\x28\xb9\x4e\x46\xc9\xe8\xf2\xea\xcd\x1e\x12\x26\xb7\x50\x82\x8e\xa2\xf9\xe1\x87\xdb\x4f\x37\x83\x67\x41\x6a\x54\x71\x32\x78\xcc\x09\xae\x22\x6d\x75\x11\x4d\x29\x14\x22\xb9\x05\xc9\x98\xa7\xa1\xcc\x52\x2c\x55\xfc\xc8\x5d\x44\x9e\xaf\x46\x3e\x3f\x2a\x10\x52\x5a\x1a\x4e\x06\x01\xcc\xa0\xe3\x76\x8f\xcb\xb5\xbb\xdf\x75\xdd\x7d\x05\x36\xfa\xb3\xbb\x6f\xb7\x7b\x7d\xd3\x5d\xb8\xca\x32\xb5\xea\x8d\xc8\xaf\x15\x39\x45\x75\x8d\x35\x13\xa5\x6d\x06\x04\xb5\xdc\x06\x37\x1a\x5e\xc6\xc9\x31\x5d\x6f\x60\xc3\x4d\x83\x4d\xf1\xa6\x57\x68\x1b\x92\xbb\xee\x1f\x99\xb5\x49\x03\x3f\xe1\x85\x48\x76\xde\x9c\xc3\xf3\xe3\xbc\x23\xb8\x17\x69\x69\x97\x46\x5b\x94\x69\xe9\xac\xb7\xc2\xbe\x68\x99\x8f\x0b\x6c\xcf\x86\xfc\xd0\xe8\x02\xf5\xf0\x9f\xdb\xb6\x39\x54\x1c\x33\xa4\x35\x18\x59\x9a\x87\x2c\xd1\xb1\xc9\x2a\xa3\xbc\x93\x1b\x52\x62\x6f\x8e\xfa\x2f\x36\x4d\xfb\xaf\x4a\x39\xe2\x5a\xa9\xb0\x45\xa9\x34\xc9\x9a\x71\xe1\xd6\xa5\xb7\xed\x92\x9b\xc0\x17\x53\x31\x49\x50\x19\x08\x14\x39\xc9\xb4\x5d\xc8\x15\x83\x77\x15\x25\xfb\xe3\x77\xe7\x55\x1f\x05\x53\x6b\xf5\x01\x01\x19\x6a\xa6\x43\xf7\x7f\xcf\xc9\xe7\xe4\xa2\x87\x61\xfd\x46\x1f\xb6\x98\x7a\x37\x6f\xd9\x08\x3e\x4c\xad\xf5\x8d\xef\x9d\xc3\xa6\x3d\xc0\xe0\xb2\x69\xae\x11\x5c\x02\xf7\xd6\x13\xf8\x1c\xeb\x06\x84\xb2\x50\x06\x8a\x8a\x3d\xe4\xb8\xa0\x0d\xad\x54\x13\xbb\xbd\x79\x40\x19\x6f\xb7\x4a\x6b\x9d\xfb\xfe\x37\x00\x52\xa9\x78\xfe\x92\x04\xb8\x94\xb4\xb8\x64\x89\x3d\x39\x70\xa3\x78\x0e\x92\x42\xed\x87\x50\xd6\x31\x0c\xd0\x5a\x67\x4b\x67\x33\xa5\x69\x33\x3c\xda\xcf\x7b\x59\xab\x2b\xa2\x35\xd7\xb7\x8d\xc7\xbd\x26\x8d\xe7\x53\x6a\xc3\x0d\xf4\x7c\x2f\xfa\xd0\xdf\x3e\xfc\x76\x3b\xf9\xf0\x78\x7b\x33\x86\xcf\x25\x09\x95\xad\x01\x0d\x7c\xba\xbd\x03\x55\xe0\x8c\x40\xc5\xa9\x10\x72\x1a\x19\xa6\xc8\x14\xdb\x40\xc7\xbf\xb8\xb2\x34\xb8\xb1\x50\x17\xb0\x28\x96\xe8\x28\x75\xb8\xbc\x80\x15\x99\x73\xb0\x0e\x34\x85\xd8\x4d\x35\x9a\xf9\x46\xbe\x05\x17\xed\xec\x39\x5a\xd7\x4b\x8a\x6e\xc6\xbd\x2d\xe9\x83\x94\xaa\x6e\x69\x9b\xd2\x72\xb3\xaa\x20\x53\xd7\x53\xe9\xec\x42\x49\x02\xf4\x9b\xfc\xeb\x19\x9e\x07\x1b\x46\x97\xac\x3f\xfe\xdc\x45\x44\x26\xfc\x4f\x1d\x85\xc2\x53\x66\xf6\x64\xed\xec\x60\xbd\x8d\x92\x50\x71\xa0\xd3\x3a\x40\x83\x7a\xed\x95\x60\xd8\x28\x8b\x14\x97\xec\x1d\x61\xc1\x70\x36\x41\xad\x84\x3d\x3f\x5c\x17\xeb\x3a\xec\xc3\x85\xb3\x99\xa3\x59\x8c\x45\x2f\x61\x0d\x88\xc0\x7b\x67\x66\x7d\xd8\x4a\xc1\x2f\xb8\x26\x07\x67\xb2\xd3\x96\x42\x07\xe9\xd9\x67\x7a\x5b\x44\x78\xbb\xd7\x71\x15\x47\x68\x4c\x3a\x4b\xc3\x1e\x41\x32\x0d\xa3\x4f\x93\xef\x85\x78\x53\xbf\xaf\xa7\x0a\xe9\x0c\x6a\x19\x68\x64\xda\x7c\xab\x67\x4b\x63\xfc\x08\xb8\x38\xf4\x26\xe4\xbc\xca\xe2\xee\xca\x3b\x45\x44\xce\x73\xba\x40\xad\xa4\xf2\xeb\xb4\x24\xa7\xac\x4c\x73\x5b\xb9\xfe\x5c\xfb\x77\xf3\x32\x6c\xf6\x6d\xdd\x8a\x8e\x6e\x50\x06\x6a\xe9\x63\xeb\xd9\x3e\x57\xef\xde\xbe\x19\xed\xe5\xfb\xce\x4a\x90\xd2\xca\x3b\x4c\x33\x8d\x47\xd2\xff\x36\x7c\x0f\xf1\x7b\x28\x43\xa7\x8b\x45\x1a\x48\x1b\x76\x48\x1b\x6e\x14\x7e\x7d\xf2\xc7\xc1\x93\x86\xc5\xcd\x3b\xcc\x32\x25\x9e\xca\x32\x65\x86\xed\xcf\x7e\x65\xd8\x2a\x6b\x09\x68\xb4\x28\x6b\x7a\xf0\x3c\x31\x77\x76\x3b\xf8\xcc\x58\x47\xe9\xea\xf5\xe8\x7d\x2a\x4c\x2a\x72\x12\xf3\x5e\x2c\x1f\xe3\x43\x98\xdc\x43\x7c\x13\xc3\x14\xa4\x76\x62\xf7\x15\x40\x84\x35\xc6\x3b\x14\xf3\xb4\xc0\x55\xc8\xa2\x34\xec\x3b\xbd\x50\x86\xc3\xcd\xe3\x61\x81\xab\x61\x49\x6e\x18\x1e\xc3\x02\x75\x45\x9b\x9d\x70\x58\x3a\xbb\x5a\x27\x70\x87\x2b\x55\x54\x45\x93\x3d\x21\xed\xee\x3f\x3c\x86\xeb\xcd\xd4\x8b\x7c\x53\x9b\x28\xe6\x50\x92\x83\xc9\xc3\x97\xb8\x6a\xc1\xd9\x28\x1e\xc1\xb1\xd5\x86\x24\xd5\xaa\x50\x1e\x90\x87\xaa\x3e\xef\x6a\xea\xea\xfc\xdd\xe2\x51\xa6\x63\x3c\xe6\xd4\xf9\x33\x0f\x8d\x76\x98\x7a\x9b\x72\x11\x2a\x93\x7d\x67\xb0\xee\x87\xa3\x99\x7a\xc7\x7e\x54\x0c\x2e\x85\xc2\x6f\x14\x41\x50\xf4\x15\xd1\x09\x07\x77\xca\x71\xa0\x29\x91\x3e\x7d\xce\x77\x4e\xfa\xe3\x37\x7d\x50\x08\xad\xc2\xf6\xc2\x2f\xb0\x3c\x76\xd4\xff\x37\x00\x00\xff\xff\x06\x54\x66\xac\x41\x17\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -6003,6 +5964,20 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x4d\x6a\x04\x21\x10\x85\xf7\x9e\xa2\xe8\xec\x1d\x67\x26\x8b\x6c\x3a\xa7\xc8\x3e\x18\xad\xa4\x05\xb5\x4c\xa9\x43\x20\xf4\xdd\xc3\xfc\x18\xba\x41\x70\x23\x52\xf5\xbd\x8f\x7a\x4f\xf0\x86\xcc\xfa\x93\x38\xc0\x05\x39\x3b\x8a\xa0\xa3\x85\xe4\xeb\x97\x8b\x6d\x94\x85\x28\xff\xd8\xaf\x00\x60\xfc\xae\x8e\xd1\xbe\xb7\xcc\x0c\xd3\xeb\x0c\x4a\x1e\xcf\x93\xd8\xee\x13\xd3\xc5\x59\xe4\x7c\x8b\x01\x98\x02\xf3\xe3\x0b\x90\xa9\xb2\x41\xb8\x86\x13\x65\x74\x96\xe2\xc1\x94\xe9\xb1\xdd\xa8\x95\x7c\x91\xea\x3e\x5f\x6f\x6f\xac\xde\xf7\x45\x8b\xce\x8b\x33\xc4\xe9\x70\x65\x3a\xae\xb3\x54\x7b\x57\xc1\x90\xbc\x2e\x38\xf2\x35\xae\xe3\x3c\xc9\xd3\xde\x19\x74\x31\xcb\x07\xfd\x0c\xca\x36\xac\x5b\xf9\x59\x1e\xb7\x4a\xd6\xd1\x52\x18\x1d\x79\xa7\xc6\xb5\x57\xb1\x8a\xbf\x00\x00\x00\xff\xff\x23\x9d\x72\x44\xfc\x01\x00\x00"), }, + "/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf": &vfsgen۰CompressedFileInfo{ + name: "worker.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 726, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xd1\x8a\xea\x30\x10\x86\xef\xfb\x14\x43\x41\x50\x90\x9c\xdb\x73\xd3\x27\x11\x19\x62\x3a\xd5\xd0\x34\x09\x99\xc4\x75\x11\xdf\x7d\x49\x63\xd9\x68\x85\x2d\xbd\xca\xff\x4d\xe7\xcb\x4c\x27\xd7\x27\x43\xd0\x7e\xb9\x30\x52\x68\xe1\xde\x00\xb0\x4b\x41\x11\xbc\x3f\x1d\xb4\x42\xfc\x2b\xef\x13\x6f\x00\x94\x4b\x36\xae\x58\xe8\xc0\x90\x3d\xc7\xcb\xf6\x2a\x83\x28\x34\x5a\x39\x11\xef\x96\x1a\xd4\xb6\xa7\xdb\x6b\xcd\x1c\x88\x39\xc8\x98\x49\x1c\x29\x60\x6f\x19\x99\xc2\x55\x2b\x42\xed\xa1\x83\x22\x2d\x4e\xce\xc5\x31\x9d\x48\x7c\x06\xf3\x4d\xf8\x82\x23\x7d\xf3\x4a\x2e\x5b\x2d\x61\xdd\xc9\x4d\x52\x5b\xe4\x34\x0c\xfa\xb6\x70\x1f\xc3\x5c\x24\x51\x51\x58\xdd\xfd\x83\x5e\x01\x1b\x00\xe9\x75\xf6\xa3\xf0\x5e\x32\xb8\x30\xc9\xb8\x6d\x37\x2c\x36\xdc\xee\x5f\xfa\xe6\xb1\x95\x93\xf1\x3f\x2f\x16\xf9\x30\x8f\x32\x37\x30\x14\xd1\xc8\x13\x19\xae\x25\x28\x9c\x69\x6b\x9c\x1b\x93\x9f\x97\x60\x5d\x4f\xc8\x9e\x94\x1e\xb4\x7a\xf2\xe5\xb3\xf5\x7a\x0e\xd5\x0a\x8e\x7b\xb8\x3f\x76\x85\x29\xfc\xae\x9a\x55\xc6\x57\x33\xad\xc3\x99\x55\xc8\x56\x7b\x4f\x91\x5f\x7f\x8e\x5f\xaf\x9a\xf9\xd3\xe7\x70\xcc\x0a\x4c\x11\x39\x4a\xdb\xcb\xd0\xe3\xc5\x71\x2c\x2e\x1d\xc4\x90\xa8\x79\x34\xcd\x4f\x00\x00\x00\xff\xff\x40\xd4\x60\xe0\xd6\x02\x00\x00"), + }, + "/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf": &vfsgen۰CompressedFileInfo{ + name: "worker_profiles.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 810, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4b\x6e\xeb\x30\x0c\x45\xe7\x5a\x05\xe1\xd1\x7b\x83\xba\x2b\xc8\x4a\x8a\x42\x60\x25\xc6\x16\x4c\x91\x81\x24\x27\x29\x8a\xee\xbd\xf0\x0f\xb1\x63\x27\xc8\xc4\x38\xe7\xe2\x4a\x22\xa3\xfa\x9e\x09\xaa\x9b\xa6\x8e\x92\xbd\x24\x3d\x07\xa6\x0a\x7e\x0c\x40\xd6\x3e\x39\x82\xfd\xef\x04\x55\x5d\xbf\x4f\xff\x88\xc5\xb5\x5f\x7a\x7f\x3b\x33\x16\x87\xa9\x32\x00\x4e\x7b\x29\x07\x39\x38\x01\x93\x34\xa5\xfd\x77\xc5\x54\xcf\x95\x82\x91\xf2\x7f\x03\x20\xea\x69\xfc\xda\xa7\x9e\xf5\x8f\xb1\xa1\x0e\xe2\xe9\xfe\xb9\x44\x23\xba\x83\xc2\x55\x34\xa2\xdb\x25\xbd\xde\x84\x15\xfd\x70\xf3\xa2\x4e\x79\x9b\xdc\x61\x03\xa0\xd9\xba\x16\x45\x88\x0f\xcb\x1e\x78\x72\xaf\x94\x72\x50\x79\xe5\xce\xd8\x00\xb4\xa5\x5c\x2c\x89\xbf\x68\xd8\xbe\xde\xe4\x2e\x0f\x6d\x37\x9e\x01\xe8\x28\x09\xb1\xc5\xd4\xe4\xa3\x8e\x15\x36\x00\x41\x72\x41\x66\xeb\x43\xee\x0e\xe4\x35\x5e\xd9\x45\x6d\x8e\xc8\x4c\xb9\x4c\xc9\xad\xfd\x8c\xc7\x15\x90\x82\x41\x28\x59\x0e\xd2\xdf\xad\x52\x5c\xf7\x1c\xe0\x61\xe1\x72\x6b\x3b\xfa\xce\x2f\xc6\xb8\xe0\xe1\x60\x8d\x84\x12\x54\xac\x63\x67\x9d\xca\x39\x34\x8b\x39\x6d\xf4\x3c\xf3\xcd\xb8\xeb\x87\x3c\x9c\x10\x5d\x4b\xde\xce\x77\xd8\x95\x6d\xb1\xf9\x35\x7f\x01\x00\x00\xff\xff\x27\x3e\x6b\x83\x2a\x03\x00\x00"), + }, "/terraform-modules/bootkube": &vfsgen۰DirInfo{ name: "bootkube", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -6195,9 +6170,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/controller/main.tf": &vfsgen۰CompressedFileInfo{ name: "main.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2024, + uncompressedSize: 2128, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xe3\x36\x0c\xbd\xfb\x57\x10\xea\x0e\x90\x00\xfe\x98\x69\x2f\x45\xb0\x3e\x15\xd3\x63\xbb\xc0\x1c\x17\x81\xa0\x91\xe9\x44\x1b\x59\x72\x25\x7a\x90\x34\xf5\x7f\x2f\x24\xdb\x71\xd2\x38\xc5\xb6\x73\x8a\xc9\xf7\xc8\x37\xe4\x13\xb5\x95\x42\x7b\x38\x27\x00\x87\xee\x1d\x35\x12\x77\xf8\x47\xa7\x1c\xf2\xf0\x2d\xad\xa9\xd5\x0e\x4a\xf8\xfc\xf9\xf5\xf7\x5f\x13\x7f\xf2\x84\x4d\xb5\x49\x00\x3a\xa3\xc8\x87\x1f\x19\x18\xd1\xe0\x66\xa2\xe7\x1e\xdd\x87\x92\x98\x00\x00\x54\xce\xb6\xca\x44\xd8\x0c\x7c\x79\xce\xa4\x35\xe4\xac\xd6\xe8\xf2\xd0\x21\xa6\x01\x42\x14\x0d\xf9\x0d\xfc\x35\x46\x00\xbe\xbe\x0d\xe5\xb6\x97\xc8\x2f\xd6\x54\x8a\x94\x35\x5f\x04\xed\x5f\x8f\xca\x93\x2f\x0b\x24\x59\x04\x01\xce\x20\xa1\x2f\x66\xe9\x17\xda\xeb\x11\xe5\x1b\x09\x47\x5f\x1c\x96\xc5\xbb\x32\x45\x73\xa8\x94\x83\xac\x85\x7f\xb2\xe5\x1e\xe5\xa1\xb5\xca\x50\xe6\x51\x3a\x24\xff\x7f\xaa\x28\x23\x24\xa9\x0f\xcc\x1a\x61\x54\x8d\x9e\x7c\x12\x46\x98\x00\xbc\x5b\x4b\x01\x08\x25\x10\x36\xad\x16\x84\xb5\xd2\xb8\x62\x9f\xce\xad\xa0\x7d\xde\xd8\xaa\xd3\xd8\x17\x53\xd2\x17\x13\x23\x3f\x89\x46\xe7\xd4\xb4\x9a\xa5\x71\x67\x73\x31\xae\x1a\xb1\x43\x1e\x46\x0c\x25\x7c\x08\x97\x2f\x64\x96\x18\x24\x76\xb0\xcc\x20\x31\x8c\x6f\x32\xc6\x55\x87\x91\x70\x9f\x59\x20\xc4\x06\x8b\x84\xa1\x41\xbf\x0e\x43\x41\x92\x15\x0f\xde\x41\xe7\xa1\x84\xaf\xb5\x75\xa0\x40\x19\x70\xc2\xec\x70\x15\xc8\xb3\x6b\x3c\x97\xb6\x33\xb4\x86\x0d\xd4\xd6\x35\x82\x56\xec\xc9\x67\xa1\xc4\x53\x95\x3f\x79\x96\xc6\x66\x52\x77\x9e\xd0\x45\x5d\x29\xa8\x21\x58\x19\xcf\xff\xb4\x06\xd7\xdb\xa9\xeb\xf7\xaf\x21\xa0\x17\x56\x10\xa5\x0f\x63\x81\x12\x58\xf8\xfc\x74\x1e\x04\x77\x86\xb8\x32\x15\x1e\x7b\x36\x43\x2b\xdb\x08\x65\x02\x74\x84\x5d\xe9\xec\xb3\x65\x7a\x3e\x84\x26\xf5\x3d\x4b\x62\xbd\x1f\x62\xc5\xe7\x72\x4f\xd4\xfa\x4d\x51\x8c\xa5\x62\x91\xe7\x1c\x8f\xa2\x69\x35\xe6\xd2\x36\x69\x88\xbc\x2c\xe2\x5e\x6e\x70\x79\x9e\xcf\x4a\x95\x51\xa4\x84\xe6\x23\x1c\x4a\xf8\x66\x95\x59\xb1\x94\xa5\xe3\x86\x52\x18\x76\x16\x36\x15\x6f\x49\x7e\xb3\xc8\x79\x3f\xc3\x72\x2e\x02\x9e\xfc\xe6\xc7\x9f\x7e\x7e\x66\xe9\x5c\x62\xbd\x5d\x5f\xdc\xe0\x8d\x6a\x5b\xa4\xe8\x84\x28\x67\xa8\xfd\xf8\x44\xa5\x57\xa8\xc9\xc6\xd7\xb1\xd0\x3e\x7c\x6f\x93\x3e\x49\x2a\x41\x02\x98\x24\x3e\x70\x19\xb0\xe9\x47\x58\x68\xeb\x90\xe8\xc4\x5b\xa7\x0c\x41\x09\xb5\xd0\x1e\x83\xa6\xf1\x3c\x7d\xbf\x5d\x8c\xad\x96\x5e\xac\xf7\x7b\x7e\xc0\x93\x87\xbb\xbf\x12\xbe\x79\x6b\xd0\x48\x5b\x0d\x8e\x9f\xa0\xeb\x48\x9c\x7c\x12\x4c\x30\x5e\x59\xae\x5a\xb8\x3c\xae\xe5\xfc\x2d\x35\x5a\x8f\xfb\xae\xae\xd5\x11\x16\xa8\xd7\xf9\x87\x8f\x1f\xae\x98\xff\xe1\x04\x3c\xa6\x4d\x97\x66\x6f\x3d\x45\xf9\xc3\xbf\x75\x33\x9a\xc0\xba\xca\xdf\x74\xa9\xac\x3c\xa0\xe3\x78\x24\x27\xb8\x70\xbb\xe8\x9b\xed\x0d\x44\x8b\x77\xd4\x21\x7e\x1e\x8f\x39\x8b\xeb\x99\x0f\x76\xae\x6c\xd1\x88\x30\x05\x36\x76\x64\x2c\xfd\x17\xec\x7c\x8d\x58\xc0\x92\xeb\x70\xc4\xf7\x37\x8d\x49\x28\x43\x77\x8d\x33\x67\xf5\xa3\xee\x25\xb0\xcd\x6f\xf6\x4d\xee\x31\x38\x8a\x5d\x6a\xde\x3d\x0d\x69\x8d\x14\xb4\x1a\x1c\x3e\xc5\xa7\xdb\x27\xf9\x14\x59\x27\x7d\xf2\x77\x00\x00\x00\xff\xff\xbf\x5b\x47\xcd\xe8\x07\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xd8\x0d\x60\x03\xfa\x48\xda\x4b\x61\xac\xd0\x43\x91\x1e\xdb\x05\x72\x5c\x04\x04\x43\x8e\x6c\xae\x29\x52\x25\x47\x81\xd3\x54\xff\xbd\x20\x25\x59\x76\x56\x29\xd2\xfa\x64\x0d\xdf\x9b\x79\xe2\xbc\x19\x19\x27\x85\x09\xf0\x9a\x01\x1c\xfb\x27\x34\x48\xdc\xe3\x9f\xbd\xf6\xc8\xe3\xb3\x74\xb6\xd1\x7b\xa8\xe1\xf3\xe7\xfb\x3f\x7e\xcb\xc2\x4b\x20\x6c\xd5\x2e\x03\xe8\xad\xa6\x10\xff\x14\x60\x45\x8b\xbb\x99\x5e\x06\xf4\xcf\x5a\x62\x06\x00\xa0\xbc\xeb\xb4\x4d\xb0\x05\x78\x77\x5b\x48\x67\xc9\x3b\x63\xd0\x97\xb1\x42\x3a\x06\x88\x51\xb4\x14\x76\xf0\xf7\x14\x01\xf8\xfa\x30\xa6\x7b\x3c\x47\x7e\x75\x56\x69\xd2\xce\x7e\x11\x74\xb8\x3f\xe9\x40\xa1\xae\x90\x64\x15\x05\x78\x8b\x84\xa1\x5a\xa4\x9f\x69\xf7\x27\x94\x0f\x24\x3c\x7d\xf1\x58\x57\x4f\xda\x56\xed\x51\x69\x0f\x45\x07\x6f\xd9\xf2\x80\xf2\xd8\x39\x6d\xa9\x08\x28\x3d\x52\xf8\x3f\x59\xb4\x15\x92\xf4\x33\x16\xad\xb0\xba\xc1\x40\x21\x8b\x57\x98\x01\x3c\x39\x47\x11\x08\x35\x10\xb6\x9d\x11\x84\x8d\x36\xb8\x61\x9f\x5e\x3b\x41\x87\xb2\x75\xaa\x37\x38\x54\xf3\x61\xa8\x66\x46\xf9\x22\x5a\x53\x52\xdb\x19\x96\xa7\x9e\x2d\xc9\xb8\x6e\xc5\x1e\x79\xbc\x62\xa8\xe1\x59\xf8\x72\xe5\x64\x8d\x41\x62\x0f\xeb\x0c\x12\xe3\xf5\xcd\xc6\xb8\xa8\x30\x11\xbe\x3f\x59\x21\xa4\x02\xab\x84\xb1\xc0\xb0\x8d\x97\x82\x24\x15\x8f\xde\x41\x1f\xa0\x86\xaf\x8d\xf3\xa0\x41\x5b\xf0\xc2\xee\x71\x13\xc9\x8b\x6b\x02\x97\xae\xb7\xb4\x85\x1d\x34\xce\xb7\x82\x36\xec\x26\x14\x31\xc5\x8d\x2a\x6f\x02\xcb\x53\x31\x69\xfa\x40\xe8\x93\xae\x1c\xf4\x18\x54\x36\xf0\xbf\x9c\xc5\xed\xe3\x5c\xf5\xe3\x6d\x88\xe8\x95\x16\x24\xe9\xe3\xb5\x40\x0d\x2c\x3e\x7e\x7a\x1d\x05\xf7\x96\xb8\xb6\x0a\x4f\x03\x5b\xa0\xca\xb5\x42\xdb\x08\x9d\x60\x17\x3a\x87\x62\x9d\x5e\x8e\xa1\x59\xfd\xc0\xb2\x94\xef\x87\x94\xf1\xb6\x3e\x10\x75\x61\x57\x55\x53\xaa\x94\xe4\xb6\xc4\x93\x68\x3b\x83\xa5\x74\x6d\x1e\x23\x77\xab\xb8\xbb\x2b\x5c\x59\x96\x8b\x52\x6d\x35\x69\x61\xf8\x04\x87\x1a\xbe\x39\x6d\x37\x2c\x67\xf9\xd4\xa1\x1c\xc6\x9e\xc5\x4e\xa5\x5d\x52\x5e\x35\x72\xe9\xcf\xd8\x9c\xb3\x80\x9b\xb0\xfb\xf1\xa7\x9f\x6f\x59\xbe\xa4\xd8\x3e\x6e\xcf\x6e\x08\x56\x77\x1d\x52\x72\x42\x92\x33\xe6\x7e\x7f\x45\xe5\x17\xa8\xd9\xc6\x97\xb1\x58\x3e\x3e\x3f\x66\x43\x96\x29\x41\x02\x98\x24\x3e\x72\x19\xb0\xf9\x4f\x6c\x68\xe7\x91\xe8\x85\x77\x5e\x5b\x82\x1a\x1a\x61\x02\x46\x4d\xd3\x7a\xfa\xb8\x5d\xac\x53\x6b\x13\x1b\xc2\x81\x1f\xf1\x25\xc0\x77\xbf\x1a\xbe\x05\x67\xd1\x4a\xa7\x46\xc7\xcf\xd0\x6d\x22\xce\x3e\x89\x26\x98\xb6\x2c\xd7\x1d\x9c\x87\x6b\xfd\xfc\x9a\x9a\xac\xc7\x43\xdf\x34\xfa\x04\x2b\xd4\xcb\xf3\x77\x87\x1f\x2e\x98\xff\x61\x05\xbc\x4f\x7b\xbb\x69\x94\x93\x47\xf4\x1c\x4f\xe4\x05\x17\x7e\x9f\x7c\x30\x7e\x02\x0e\x2e\xd0\xa5\x0a\x78\x93\x38\x20\xf1\x40\xc2\x2a\xe1\x15\x3f\x83\xeb\x1a\xc8\xf7\x08\xbf\xac\xcf\xdc\xb2\x59\x8a\x95\xc9\x85\x1d\x30\x76\xa5\xcf\x88\x27\x34\x51\x54\x8b\x7e\x5a\x4e\xd7\x47\x73\xaf\x01\x58\x72\xc1\xf2\x5d\x28\xb5\xab\x5a\x11\x6b\xb3\x49\x35\x63\xf9\xbf\x60\x17\x69\x2c\x62\xe3\x5b\x4c\xf8\x61\x7b\xa5\x89\x84\xb6\x69\x60\xae\x2a\x17\xde\x99\xf7\xca\xd7\xc0\x76\xbf\xbb\x07\x79\xc0\xe8\xdc\xf1\x0d\x87\xb5\x11\x94\xce\x4a\x41\x9b\x71\x92\xe6\xf8\xbc\x63\x25\x9f\x23\xdb\x6c\xc8\xfe\x09\x00\x00\xff\xff\x72\x3a\x04\x8d\x50\x08\x00\x00"), }, "/terraform-modules/controller/output-node.tf": &vfsgen۰CompressedFileInfo{ name: "output-node.tf", @@ -6241,16 +6216,16 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/controller/templates/node.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "node.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5698, + uncompressedSize: 5936, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x5f\x8f\xdb\xb8\x11\x7f\xcf\xa7\xe0\xf9\x5c\x38\x01\x42\xeb\xb6\x48\xd3\x83\x7a\x3a\x60\x93\x75\x82\x20\x69\x12\x64\x37\xcd\xc3\x76\xcf\xa0\xa5\xb1\x3d\x67\x8a\xa3\x92\x23\x7b\x5d\xc7\xf7\xd9\x0b\xea\x8f\x57\x96\xe4\xed\x5e\x8a\xa2\x7d\x31\x4c\x72\xfe\x72\x86\xf3\x9b\x91\x94\xf2\x91\xdb\x3a\x86\x34\x09\x1f\x09\x91\x1b\x64\xe7\xff\x08\x21\x85\x51\x29\x84\x22\xa1\x78\x05\x76\xec\xc0\xae\x31\x86\xe2\x48\x08\x30\x6a\xa6\x21\x14\x6c\x73\x38\xa2\xd6\x14\xaf\x5c\x8a\xbc\x4c\x5a\x1c\xa9\x72\xab\x1e\xfa\x8d\x42\x96\x73\xb2\x32\x31\xee\xdf\xe9\x10\x22\x26\xc3\x60\xd8\x85\xe2\x6b\xb5\x23\xc4\xf5\x67\x83\x7c\x73\x58\x5e\x80\x8b\x2d\x66\x8c\x64\xa2\x2f\x0a\x59\xcc\xc9\x8a\x8b\xf7\x97\x02\x0c\x5b\x04\x77\x20\xfc\xa2\x0c\xbb\xa8\xf2\x5d\x5a\x70\xa4\xd7\xd0\xb6\x5a\x88\x17\x30\x27\x0b\xd1\x2a\x9f\x81\x06\xee\x1c\x5f\x5f\x96\x1b\x77\x06\x7c\x02\xc7\xca\x72\x44\x46\xce\x15\xea\xdc\x42\xfb\xe8\x12\xe2\xe8\x4f\x77\x86\x5c\x6d\x33\x88\xc8\x80\x5b\x12\x37\x48\x53\x85\xe6\x7c\xce\x60\x27\xb7\xc8\x51\xe3\x12\x84\x98\xdc\x42\x7c\x59\x28\x09\x66\x68\x02\xb7\x14\x32\x16\xa3\xcd\x12\x35\x88\xef\x44\x90\x3b\x5b\xec\x2f\x2c\x64\x62\xf4\xcb\xf5\x2f\xdf\x5f\x87\x2e\x53\x31\x84\x37\x37\x23\x11\x00\xc7\x41\xe9\xee\x38\x26\x33\x17\x3f\x8b\x20\x81\x75\x60\x72\xad\xff\x22\x12\x12\x4e\x03\x64\xe2\xcc\xff\x37\x30\xba\xf3\xf4\x8d\x71\xac\xb4\x6e\x7a\xfa\x8f\x1c\x2d\x24\x2f\xb6\xbd\xd7\x53\x87\xb8\xff\xea\xfe\xf3\xe8\xbe\x2d\xe5\xb6\x02\x6a\xb3\x58\x3a\x56\xdc\x8d\x64\x37\x54\x2f\xc9\x24\xe8\x65\x7d\x54\xbc\x9c\xdc\xa2\x63\x17\x15\xd7\xe3\x4d\xb6\x06\x18\x5c\xf1\xd7\x5f\x13\x2e\xee\xae\xdf\xac\xd1\x92\x49\xc1\xf0\x2b\xd4\xd0\xcb\xe2\x1d\x06\xb3\xee\x86\xec\xa3\x85\x32\x6a\xe9\x2a\x41\x2b\x64\x26\x82\xb5\xb2\x81\xc6\x59\xcd\x17\xac\x49\xe7\x29\x64\x3a\x5f\xa0\x71\x0f\x92\xd0\x32\x20\x55\x06\xe7\xe0\xf8\x14\x73\x9d\x20\x33\x55\xa6\xce\xa0\xcc\x94\x18\x2c\xe3\x1c\x63\xc5\x20\x55\xce\x4b\xb2\xc8\x5b\x99\x28\x56\xa3\x8e\x8a\xbb\x6b\x11\x5f\x85\xda\xac\xc4\x68\x97\x59\x34\x2c\x86\x7f\xdc\x8f\xc4\x57\x31\x53\x0e\x9e\x3f\x13\x32\xf1\xe9\xd5\xe2\x8d\xd5\x38\xb6\x3c\x38\x61\x5c\x9b\xb8\x50\x92\x5b\x90\xd5\xf5\xc8\x78\x61\x29\xcf\x64\x62\x71\x0d\xb6\x5f\x88\x2c\x8b\x96\xb0\xa9\x90\xf3\x3a\x01\xfb\x49\x6b\xca\xdc\x78\x63\xff\x7e\x20\x12\x42\x4a\x9f\xbf\x75\x6a\xb7\x8e\x6c\xf5\xca\x73\xa3\xc1\x39\xe9\x98\xb2\x0c\xda\xfc\x9a\x16\x95\x99\xd1\xaf\x94\x5b\xa3\x74\x47\x03\xf0\x86\xec\x2a\x5a\x92\x6b\x6b\xc8\x30\xe9\xdd\xb6\xb8\x46\x0d\x8b\xb6\xb2\x75\xf1\x8a\xc3\xe2\xc7\x6e\x3a\x67\xfe\x56\x63\x83\x81\x01\x1e\x27\x61\x6b\x69\xa9\x97\xfe\x2e\x0a\x61\x7b\x7d\x82\x23\x55\xf1\x12\x0d\x48\xac\x54\x34\xd6\x3d\x1c\x3e\xe7\x53\x4a\x72\xed\x15\x34\x17\x3d\xb4\x36\x37\x61\xf1\xd3\xe3\x9b\xdb\xba\xb0\xf8\xe9\x39\xa3\x8c\x0b\x47\x67\x68\xc2\xa3\x45\x8f\x0e\xff\x2c\xbc\x19\xe4\xa4\x05\x0d\xca\x41\xe9\x45\x63\xdd\xc3\x55\xbf\xde\x58\x69\x8c\x29\x6c\xaf\xef\xe3\x30\x18\x1e\x2d\x7a\xec\xaf\x8f\xcb\x34\x0d\xdb\xeb\x53\x1c\xb4\x08\x32\x4a\x5c\x78\xbc\x6a\x53\xcb\x94\x72\xc3\x82\x3d\x00\xcd\xd0\x24\x4f\x1d\xe5\x36\x86\x28\x48\x0d\x3f\x65\x65\x17\xc0\xe5\x7f\x7f\x28\x33\x4b\x99\x5a\xa8\xa2\xf6\x5a\xb7\x54\xb6\x93\xef\xa7\xc4\xb5\x0a\xdc\x41\x74\x7b\xff\x41\x6a\xfe\xb0\x2b\x20\x5d\xd9\x85\x40\x53\xbf\xed\x69\x79\x1f\x53\xb8\x65\xab\xa6\xca\x2e\x9c\xf8\x6d\xdf\x60\x1a\xee\x0a\x86\x7d\x5b\x12\x98\xc4\x0b\x3b\xa6\x1d\xee\xde\x7e\x7e\x31\x79\x37\xb9\x9a\xbe\xf9\xeb\xf9\xeb\xc9\xf4\xf3\xa7\x77\xfb\xb0\xb3\x7b\x75\xfe\x7a\xdf\xf2\x5f\x19\x32\xdb\x94\x72\x57\x94\xcf\x68\xae\xb4\x83\x36\x49\xce\x4b\x30\xec\x8b\x2c\x92\x91\x4c\x2b\x30\x72\x03\xb3\x25\xd1\xaa\x87\x94\x2c\xfe\xb3\xa4\x4c\x29\x81\xe8\x4b\x2f\x61\xac\x11\x0c\xcb\x58\xc9\x79\x1f\x1c\x95\xe5\xb6\xc3\x93\x3b\x06\x3b\x4d\x8c\x8b\x86\xbb\xc6\x6a\x5a\xc1\xe6\x14\xb3\xb6\x7b\x07\x2a\xf2\xbd\x49\x93\xad\xd8\x98\xba\x7c\x3e\xc7\xdb\x0e\x97\x41\xe9\x8b\xb8\x4c\xd0\x46\xc7\x85\xa7\x4d\x59\x94\xfa\x93\x70\x5a\xc1\xcd\x31\x0f\xdc\x22\x4b\x32\xd2\xf7\x9d\xb2\x6a\x20\x90\x4c\x8b\xea\x0e\xad\x3a\x49\xd7\x44\xb2\x63\xa6\x19\x11\x3b\xb6\x2a\x3b\x62\x3f\x8d\x83\x2d\x80\x20\xf6\x38\xda\xc0\x54\xd7\x41\x87\x78\x55\x45\xcc\xdb\x64\x73\x13\xf8\xad\x83\xbf\x7e\xd1\x0f\x17\xb2\xec\x0d\xa2\xd8\x60\x9b\x80\x12\x90\x5a\xcd\x40\xbb\x68\x38\xdc\xbd\xff\x70\x31\x99\xbe\x3b\x7f\x31\x79\x77\xd9\x0e\x4b\x46\x89\xac\xfb\x04\x99\x29\x5e\x76\x5c\x3b\x74\x11\x1d\xe8\x53\x89\x24\xa3\xb7\x32\x23\xcb\xd1\x0f\x9d\xe3\x05\xfa\xac\x90\x1b\xe4\xa5\x64\x85\xbe\x2b\xab\x6d\xb9\x3a\x7f\xf3\xfe\xaa\x63\x4b\xd9\xf0\x54\x5e\x95\x79\xf2\x3b\x7b\xa2\x1a\xc6\x35\x2d\xdc\x69\xc8\xa7\xac\xa6\xf3\x78\x7d\x92\xe8\x23\xb9\x83\x40\x9b\x76\xc8\xea\x06\x5f\xe9\x8d\xda\xba\xde\xe6\xfe\x9e\xa6\xd9\x77\xa9\x45\xcb\x9c\xe6\x9a\x51\xe6\x0e\xec\xb8\xac\x87\xc7\x53\x97\x57\x09\x45\x3c\xff\x2b\x63\x11\x9a\x85\x60\xaa\xd4\x88\xb7\x87\xa8\x0b\xaf\x51\x90\x11\x6e\x99\x73\x42\x1b\xf3\x7f\x35\xe9\xf4\x9c\x51\xd6\x49\xdc\xc6\xdd\x7d\x5b\x20\x1c\x93\x55\x0b\xf0\x73\xb0\x7f\x9f\x87\x81\xd8\x3f\x93\xb0\xb7\x15\x3e\x6e\xf7\x0b\xa6\x62\xb0\x0c\x85\xa5\x83\xaf\xbe\x84\x87\xe2\x87\xe7\xcf\x9e\xb5\xe3\x76\x30\x0a\x8d\x46\x03\xcd\x38\x0a\xd1\x01\xa3\x68\xb8\xab\x61\x0f\x53\xb5\x80\xa9\x4f\x99\xfd\x49\x8e\xab\xf3\xd7\x1d\x0e\x56\x8b\xd3\x0c\xe7\x9f\x5e\x5f\x46\x03\x5f\x5b\x21\x2e\x87\x05\x4d\xb1\xd2\x45\x04\x2a\x31\x83\x06\x73\xa3\xc8\x44\x83\xe1\xee\x57\x42\xf3\x78\xf0\x74\xf0\x54\x5c\x7b\x68\x5d\x3d\x15\xeb\x26\x50\x97\xc5\x49\x84\x62\x30\xdc\xad\xf6\xd1\x70\xb7\xde\x0f\x6e\x9e\xec\x3b\x02\xcb\x4a\xf1\x00\x81\x65\x85\x39\x21\xf0\x28\x66\x6e\xeb\x62\xd6\xe3\x24\x48\xd5\x6d\x11\x6f\xb9\x51\x1c\x2f\xc1\x15\xd0\x72\x7f\xec\x1e\x16\xaa\xb9\x1b\xa3\x21\xc6\xf9\x76\x9c\xaa\xdb\xa9\xd7\x31\xad\x74\x44\x67\xcf\xcf\x7e\x7c\x76\x6f\x22\x3d\x6c\xd4\xb9\x3f\xb9\xfe\xfc\x3b\x93\xeb\xfb\xef\x0e\x93\x60\x63\xd7\x01\x0b\x09\x8d\x0d\x5f\xf3\x7d\xc9\xaf\xbe\x06\x4d\x4b\xc3\xa6\xd5\x70\x33\x18\x3e\xae\xca\x25\x9a\x39\xf9\xfa\x3b\xda\xed\xc6\x2f\x0b\x9a\x8b\x82\x64\xbf\x1f\x3d\x69\x86\x38\x56\x2c\x7e\xfa\x69\xf2\xe1\x95\xf8\xf9\x7e\xb8\x6f\xf0\xa8\x0c\xff\x06\xd6\x21\x99\xbb\x6f\x0a\x25\xd1\x78\xf5\xa3\x1b\x23\x05\xeb\xb3\x19\xb0\x3a\x6b\xf0\xac\xd0\x24\xa1\xa8\xbe\x14\xbc\xac\xee\xb7\x68\xa8\x9a\xc6\x34\x0c\xf5\x69\x34\xdc\xf5\x79\x79\x94\xa2\x93\x0f\xaf\xee\x0d\x65\xb7\x04\xfd\x4f\xc2\xe6\x5f\xb0\x68\x4c\xb8\x4d\xd8\xbd\x77\xfc\xfc\x96\x21\xf0\x78\x60\xa9\x22\x14\x76\x36\xba\x5c\x12\x0c\xdb\x6d\x46\x68\xb8\xaf\xdc\xc4\xac\x5b\x1c\xbd\xf5\x2f\xec\xab\x71\x1d\x55\x0f\xec\x04\x2b\x5c\x2c\xc0\x70\xf8\xd8\x5f\x8f\xd7\xf1\xa4\xb7\xa6\x30\xa4\x49\x70\xf8\x7e\xe8\x05\x8c\x93\xa0\xee\xa4\xc1\x3e\xa4\xba\x7c\x23\x32\x5c\x7f\x2a\xb5\xde\x34\xf6\x2e\xde\x5f\x46\xc3\x9d\xb7\xb8\xe8\xe6\x31\x6b\xd6\xf9\x8b\xa2\x51\x77\xd1\x6f\xe3\x47\x99\x72\x6e\x53\x7e\xf3\x75\x60\x5b\xdf\x7c\x63\x3a\x60\xb9\x73\xcb\x69\x3d\x89\x40\x32\x5d\xc1\xd6\x85\x62\xb8\xf3\xdb\xfe\xff\xfe\xd1\xbf\x02\x00\x00\xff\xff\x87\x17\x01\x9b\x42\x16\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xdd\x8f\xd3\x48\x12\x7f\xe7\xaf\x28\xbc\x59\x0d\x48\xd3\xc9\xcc\x1d\xcb\xad\x7c\xeb\x95\x06\x08\x08\xc1\x01\x62\x86\xe3\x81\x63\xa3\x8e\x5d\x49\x9a\xb4\xbb\x7c\xdd\xe5\x64\xb2\x21\xfb\xb7\x9f\xda\x1f\x19\xc7\x76\xe6\x86\x3d\xad\x6e\x5f\x2c\x77\x77\xfd\xba\x3e\x5d\x1f\x16\x42\xdc\x73\x1b\xc7\x98\x26\xe1\x3d\x80\xdc\x28\x76\xfe\x05\x40\x80\x91\x29\x86\x90\x50\xbc\x44\x3b\x74\x68\x57\x2a\xc6\xe2\x08\x00\x8d\x9c\x6a\x0c\x81\x6d\x8e\x07\xd4\x9a\xe2\xa5\x4b\x15\x2f\x92\x16\x22\x95\x6e\xd9\x43\xbf\x96\x8a\xc5\x8c\xac\x48\x8c\xfb\x6f\x3c\x00\x62\x32\x8c\x86\x5d\x08\x5f\xab\x1d\x80\x4f\x1f\x8c\xe2\xcf\xfb\xe5\x33\x74\xb1\x55\x19\x2b\x32\xd1\x47\xa9\x18\x66\x64\xe1\xd9\x9b\x4b\x40\xc3\x56\xa1\xdb\x13\x7e\x94\x86\x5d\x54\xe9\x2e\x2c\x3a\xd2\x2b\x6c\x4b\x0d\xf0\x04\x67\x64\x31\x5a\xe6\x53\xd4\xc8\x9d\xe3\x4f\x97\xe5\xc6\x8d\x00\xef\xd1\xb1\xb4\x1c\x91\x11\x33\xa9\x74\x6e\xb1\x7d\x74\x89\x71\xf4\xc3\x8d\x20\x57\x9b\x0c\x23\x32\xe8\x16\xc4\x0d\xd2\x54\x2a\x73\x31\x63\xb4\xe3\x6b\xc5\x51\xc3\x08\x00\xe3\x6b\x8c\x2f\x0b\x26\xa3\xa9\x32\x23\xb7\x00\x11\xc3\xc9\x7a\xa1\x34\xc2\x7d\x18\xe5\xce\x16\xfb\x73\x8b\x19\x9c\xfc\xf2\xe9\x97\xef\x3e\x85\x2e\x93\x31\x86\x9f\x3f\x9f\xc0\x08\x39\x1e\x95\xea\x0e\x63\x32\x33\xf8\x19\x46\x09\xae\x46\x26\xd7\xfa\xef\x90\x10\x38\x8d\x98\xc1\xb9\x7f\x37\x78\x72\xa3\xe9\x4b\xe3\x58\x6a\xdd\xd4\xf4\xdf\xb9\xb2\x98\x3c\xd9\xf4\x9a\xa7\x76\x71\xbf\xe9\xfe\x77\xef\xbe\x2a\xef\x6d\x39\xd4\x66\xb1\x70\x2c\xb9\xeb\xc9\xae\xab\x9e\x92\x49\x94\xbf\xeb\x9d\xe4\xc5\xf8\x5a\x39\x76\x51\x61\x1e\x2f\xb2\x35\xc8\xe8\x8a\x57\x6f\x26\x35\xbf\x31\xbf\x59\x29\x4b\x26\x45\xc3\xcf\x95\xc6\x5e\x88\x57\x18\xcd\xaa\xeb\xb2\x77\x16\x4b\xaf\xa5\xcb\x44\x59\x10\x19\x8c\x56\xd2\x8e\xb4\x9a\xd6\xb8\xd1\x8a\x74\x9e\x62\xa6\xf3\xb9\x32\xee\x4e\x37\xb4\x04\x48\xa5\x51\x33\x74\x7c\x0c\x5c\x07\xc8\x54\x96\xa1\x13\x94\x91\x12\xa3\x65\x35\x53\xb1\x64\x14\x32\xe7\x05\x59\xc5\x1b\x91\x48\x96\x27\x1d\x16\x37\x66\x81\xaf\x20\xd7\x4b\x38\xd9\x66\x56\x19\x86\xc1\x5f\x76\x27\xf0\x15\xa6\xd2\xe1\xe3\x47\x20\x12\x1f\x5e\x2d\x6c\x2c\x87\xb1\xe5\xe0\x88\x70\x6d\xe2\x82\x49\x6e\x51\x54\xe6\x11\xf1\xdc\x52\x9e\x89\xc4\xaa\x15\xda\xfe\x4b\x44\x99\xb4\xc0\xa6\x20\x66\x75\x00\xf6\x93\xd6\x94\xb9\xf1\xc2\xfe\x6b\x4f\x04\x20\x84\x8f\xdf\x3a\xb4\x5b\x47\xb6\xfa\xca\x73\xa3\xd1\x39\xe1\x98\xb2\x0c\xdb\x78\x4d\xf3\x4a\xcc\xe8\x0b\xe5\xd6\x48\xdd\xe1\x80\xbc\x26\xbb\x8c\x16\xe4\xda\x1c\x32\x95\xf4\x6e\x5b\xb5\x52\x1a\xe7\x6d\x66\xab\xe2\x2b\x0e\x8b\x87\x5d\x77\xce\xbc\x55\x63\xa3\x46\x06\x79\x98\x84\xad\xa5\xa5\x5e\xfa\x1b\x2f\x84\xed\xf5\x11\x44\x2a\xe3\x85\x32\x28\x54\xc5\xa2\xb1\xee\x41\xf8\x98\x4f\x29\xc9\xb5\x67\xd0\x5c\xf4\xd0\xda\xdc\x84\xc5\xa3\x47\x37\xb7\x71\x61\xf1\xe8\x39\xa3\x8c\x0b\x45\xa7\xca\x84\x07\x8b\x1e\x1e\xfe\xb3\xf0\x62\x90\x13\x16\x35\x4a\x87\xa5\x16\x8d\x75\x0f\xaa\xfe\x7a\x63\xa9\x55\x4c\x61\x7b\x7d\x1b\xc2\xa8\xf0\x60\xd1\x23\x7f\x7d\x5c\x86\x69\xd8\x5e\x1f\x43\xd0\x7c\x94\x51\xe2\xc2\xc3\x55\x9b\x5a\xa4\x94\x1b\x06\xf6\x05\x68\xaa\x4c\x72\xea\x28\xb7\x31\x46\xa3\xd4\xf0\x29\x4b\x3b\x47\x2e\xdf\xfd\xa1\xc8\x2c\x65\x72\x2e\x8b\xdc\x6b\xdd\x42\xda\x4e\xbc\x1f\xbb\xae\x95\xe0\xf6\x57\xb7\xf7\xef\xc4\xe6\xfb\x6d\x51\xd2\xa5\x9d\x83\x32\xf5\xb7\x3d\x29\xed\x31\xc1\x6b\xb6\x72\x22\xed\xdc\xc1\x6f\xbb\x06\x68\xb0\x2d\x00\xbb\xf6\x4d\x68\x12\x7f\xd9\x21\xed\x60\xfb\xea\xc3\x93\xf1\xeb\xf1\xd5\xe4\xe5\x3f\x2e\x5e\x8c\x27\x1f\xde\xbf\xde\x85\x9d\xdd\xab\x8b\x17\xbb\x96\xfe\xd2\x90\xd9\xa4\x94\xbb\x22\x7d\x46\x33\xa9\x1d\xb6\x49\x72\x5e\xa0\x61\x9f\x64\x15\x19\xc1\xb4\x44\x23\xd6\x38\x5d\x10\x2d\x7b\x48\xc9\xaa\x5f\x4b\xca\x94\x12\x8c\x3e\xf6\x12\xc6\x5a\xa1\x61\x11\x4b\x31\xeb\x2b\x47\x65\xba\xed\x60\x72\xc7\x68\x27\x89\x71\xd1\x60\xdb\x58\x4d\xaa\xb2\x39\x51\x59\x5b\xbd\x3d\x15\xf9\xde\xa4\x09\x2b\x36\x26\x2e\x9f\xcd\xd4\x75\x07\x65\x94\xf0\x49\x5c\x24\xca\x46\x87\x89\xa7\x4d\x59\xa4\xfa\xa3\xe5\xb4\x2a\x37\x87\x18\xbc\x56\x2c\xc8\x08\xdf\x77\x8a\xaa\x81\x50\x64\x5a\x54\x37\xd5\xaa\x13\x74\xcd\x4a\x76\x08\x9a\x12\xb1\x63\x2b\xb3\x03\xf8\xf1\x3a\xd8\x2a\x10\xc4\xbe\x8e\x36\x6a\xaa\xeb\x54\x87\x78\x59\x79\xcc\xcb\x64\x73\x33\xf2\x5b\x7b\x7d\xfd\xa2\xbf\x5c\x88\xb2\x37\x88\x62\xa3\xda\x04\x94\xa0\xd0\x72\x8a\xda\x45\x83\xc1\xf6\xcd\xdb\x67\xe3\xc9\xeb\x8b\x27\xe3\xd7\x97\x6d\xb7\x64\x94\x88\xba\x4f\x10\x99\xe4\x45\x47\xb5\x7d\x17\xd1\x29\x7d\x32\x11\x64\xf4\x46\x64\x64\x39\x3a\xeb\x1c\xcf\x95\x8f\x0a\xb1\x56\xbc\x10\x2c\x95\xef\xca\x6a\x59\xae\x2e\x5e\xbe\xb9\xea\xc8\x52\x36\x3c\x95\x56\x65\x9c\x7c\x63\x4f\x54\x97\x71\x4d\x73\x77\xbc\xe4\x53\x56\xd3\xf9\x7a\x7d\x94\xe8\x1d\xb9\xfd\x85\x36\xed\x90\xd5\x0d\xbe\xd4\x6b\xb9\x71\xbd\xcd\xfd\x2d\x4d\xb3\xef\x52\x8b\x96\x39\xcd\x35\x2b\x91\x3b\xb4\xc3\x32\x1f\x1e\x4e\x5d\x9e\x25\x16\xfe\xfc\x43\xc6\x22\x65\xe6\xc0\x54\xb1\x81\x57\x7b\xaf\x83\xe7\x08\x64\xc0\x2d\x72\x4e\x68\x6d\xfe\x54\x93\x4e\xcf\x19\x65\x9d\xc0\x6d\xd8\xee\xf7\x39\xc2\x31\x59\x39\x47\x3f\x07\xfb\xef\x73\x3f\x10\xfb\xcf\x24\xec\x6d\x85\x0f\xdb\xfd\x02\x54\x0c\x96\x21\x58\xda\xeb\xea\x53\x78\x08\x67\x8f\x1f\x3d\x6a\xfb\x6d\x2f\x94\x32\x5a\x19\x6c\xfa\x11\xa0\x53\x8c\xa2\xc1\xb6\x2e\x7b\x2a\x95\x73\x9c\xf8\x90\xd9\x1d\x45\x5c\x5d\xbc\xe8\x20\x58\xce\x8f\x03\x2e\xde\xbf\xb8\x8c\x02\x9f\x5b\x31\x2e\x87\x05\x4d\xb1\xd4\x85\x07\xaa\x6b\x82\x06\xb8\x91\x64\xa2\x60\xb0\xfd\x42\xca\x3c\x08\x4e\x83\x53\xf8\xe4\x4b\xeb\xf2\x14\x56\xcd\x42\x5d\x26\x27\x08\x21\x18\x6c\x97\xbb\x68\xb0\x5d\xed\x82\xcf\x0f\x77\x9d\x0b\xcb\x4c\x71\x87\x0b\xcb\x0c\x73\xe4\xc2\x03\x9f\xb9\x8d\x8b\x59\x0f\x93\x51\x2a\xaf\x0b\x7f\x8b\xb5\xe4\x78\x81\xae\x28\x2d\xb7\xfb\xee\x6e\xae\x9a\xb9\xa1\x32\xc4\x6a\xb6\x19\xa6\xf2\x7a\xe2\x79\x4c\x2a\x1e\xd1\xf9\xe3\xf3\x1f\x1f\xdd\x1a\x48\x77\x1b\x75\x6e\x0f\xae\xbf\x7d\x63\x70\x7d\x77\x7f\x3f\x09\x36\x76\x1d\x32\x08\x6c\x6c\xf8\x9c\xef\x53\x7e\xf5\x37\x68\x52\x0a\x36\xa9\x86\x9b\x60\xf0\xa0\x4a\x97\xca\xcc\xc8\xe7\xdf\x93\xed\x76\xf8\xb4\xa0\x79\x56\x90\xec\x76\x27\x0f\x9b\x2e\x8e\x25\xc3\x4f\x3f\x8d\xdf\x3e\x87\x9f\x6f\x2f\xf7\x0d\x8c\xcc\xd4\x3f\xd1\x3a\x45\xe6\xe6\x9f\x42\x49\x34\x5c\xfe\xe8\x86\x8a\x46\xab\xf3\x29\xb2\x3c\x6f\x60\x96\xca\x24\x21\x54\x7f\x0a\x9e\x56\xf6\x2d\x1a\xaa\xa6\x30\x0d\x41\x7d\x18\x0d\xb6\x7d\x5a\x1e\x84\xe8\xf8\xed\xf3\x5b\x5d\xd9\x4d\x41\xff\x17\xb7\xf9\x2f\x18\x1a\x13\x6e\xb3\xec\xde\x3a\x7e\xfe\x9e\x21\xf0\x70\x60\xa9\x3c\x14\x76\x36\xba\x28\x81\x86\xed\x26\x23\x65\xb8\x2f\xdd\xc4\xac\x5b\x88\xde\xfc\x17\xf6\xe5\xb8\x0e\xab\x3b\x76\x82\x55\x5d\x2c\x8a\xe1\xe0\x81\x37\x8f\xe7\xf1\xb0\xeb\xf3\xd2\xb8\xa3\x44\x62\x4a\x66\xf8\xc5\xed\x03\xeb\x76\x7f\xff\x70\x76\xf6\x4d\xfe\xde\x1e\xa8\x11\x68\xb5\xc2\xe2\x17\x04\x59\x0c\xca\x56\xe0\xb4\x45\x41\x73\x41\x19\xbb\x20\x6c\x61\x01\x02\x9f\xfe\x9c\xfa\xd5\x23\x83\xf3\xb3\xb3\x34\x38\xed\xa3\xf0\x0a\x78\x8a\xbf\x06\x07\xa7\xcd\xb2\x51\xbe\x7f\xbf\xfd\x0d\xd4\x0c\x6a\x23\xc1\xfd\x08\x82\xa0\x1e\xa9\x0e\x8c\x55\x93\xfc\x21\x65\x72\xb0\xad\xaf\xbf\x11\x0b\x4d\xa2\x66\x5e\x94\x4c\x3a\xb7\x2e\xff\x70\x3b\xb4\xad\x3f\xdc\x31\xed\x3b\x17\xe7\x16\x93\x7a\xee\xc2\x64\xb2\xc4\x8d\x0b\x61\xb0\xf5\xdb\xfe\x7d\x77\xef\x3f\x01\x00\x00\xff\xff\x14\x16\xad\x09\x30\x17\x00\x00"), }, "/terraform-modules/controller/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2315, + uncompressedSize: 2545, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4d\x8f\x22\x37\x10\xbd\xf3\x2b\x4a\xec\x61\x12\x69\xf1\xc2\xce\x64\x95\xcb\x1e\x08\xb0\xca\x28\x1b\x96\x2c\xb9\x45\x51\x4f\xe1\xae\x6e\x2c\xdc\x76\x8f\xcb\x46\x33\x89\xf2\xdf\x23\xbb\x9b\x09\x1f\x3d\x99\x81\x05\x21\xa1\x56\xd7\xab\xe7\xf7\xaa\x9e\xdf\xc0\x57\xba\x0f\xca\x51\x0e\x5b\x74\x0a\x57\x9a\x58\xf4\x76\x7f\xa1\x9f\x1b\xce\xfe\xb2\x86\xfa\xf0\x77\x0f\xc0\x3f\xd6\x04\xed\xe7\x23\xb0\x77\xca\x94\x3d\x80\x9c\x58\x3a\x55\x7b\x65\x0d\x7c\x84\xfe\xd4\x56\xa8\x0c\x18\xac\x08\x0a\xeb\xc0\xaf\x29\xfd\xa4\x0e\xec\xc9\x09\x98\x89\x52\xc0\x15\x3d\x60\x55\x6b\x12\xd2\x56\x57\xfd\xde\x3f\xbd\xbd\xae\xed\x9b\x59\x84\x38\xa7\xf3\xa4\xa9\x4b\xad\xc5\x31\xa6\x0d\xc6\x67\xca\xe4\xf4\xd0\x05\x69\x42\xb5\x22\x77\x0a\x79\x1b\x0b\xa0\x46\x66\xca\x01\x19\x12\x8c\x48\x30\x50\x38\x5b\x35\x0f\xc0\x1a\xa8\x6c\x1e\x74\x47\x5b\xe3\x9d\xd5\x9a\x1c\x67\xe9\xd5\x73\x9a\xcf\xd3\x73\xb0\x05\xfc\x07\x03\xc6\xe6\xc4\xa0\xcc\x81\xa6\x47\x5d\xb1\x56\x4c\x6e\x4b\xee\x1c\xf5\x3e\xfd\x36\x9d\x83\x75\x70\xbb\x00\xcc\x73\x47\xcc\xc9\xbe\x4d\x58\x91\x26\x0f\xde\x42\xe0\xd6\x51\xd4\x1b\x65\xca\xf8\xe8\x97\xb0\x22\x67\xc8\x13\xc3\x78\x71\x0b\x4d\xd7\x13\x11\x30\x93\xe4\x3a\x8f\xfe\x1c\x99\x3d\xdc\xc9\x18\x62\xb5\x2a\x94\x44\x4f\xf1\xe4\x8b\xd9\xaf\x91\x47\x85\x3e\xd1\x59\x59\xeb\xd9\x3b\xac\x13\x57\x69\x4d\xa1\xca\x7d\xea\x0d\x9d\x37\xf0\x25\xa1\xa3\xee\x1e\xf5\x88\x12\x0b\x32\x55\x61\x49\x67\xcf\xde\xd4\xca\x0d\x39\x48\xc5\xcd\xec\xef\x09\x16\xed\x43\x65\xc8\x81\x0b\xc6\x44\xe9\x76\xdd\x44\x3f\x41\x15\x18\xb4\x6f\x3b\xf4\xef\x03\x3e\x0a\x65\xdf\x6d\x94\xd9\x5a\xbd\x79\xb7\x7b\xf7\x48\xd5\x23\xc2\x1e\xcb\x8b\xf9\x7a\x2c\x2f\xa7\xbb\x1d\x8a\xd1\x8d\x18\x0e\xd6\xa4\xab\x9b\x67\x36\x39\x4f\x99\x90\x71\x28\x0a\xd5\xb9\x7f\x2f\xad\x74\x03\x00\x0d\x80\x80\x45\xb3\x90\xde\x3e\x8d\x27\x32\x0c\x06\x87\xed\xa0\xd0\x58\x76\x31\xde\x6d\x8d\xb6\x12\xf5\x11\x63\xe6\x75\xb6\xa1\x47\xee\x22\xa9\x15\xfb\xef\x1a\xa6\xdf\x9f\x52\xfd\xac\xd8\xc7\x5d\x5d\x2e\x7f\x86\x3a\xac\xb4\x92\x10\x81\x92\xa2\x81\xc9\xc1\x9d\xb4\x8e\xee\x04\xcc\x50\xae\x81\x34\x55\x64\x3c\x54\x81\x3d\xac\x08\xb8\x26\xa9\x0a\x45\x79\x1c\x70\x84\x2d\x6a\x95\xc3\x97\x9a\xcc\x21\x5c\x3b\xf7\x6f\xe3\x79\x73\x2a\x94\x69\x0a\xbe\x7e\x9a\xc0\xcd\xfb\x1f\xae\x61\x49\x32\xf1\xf9\x20\x3e\xbc\x05\x4a\x41\xcb\xbc\x1e\x38\x46\x18\x8f\xc7\xe3\x9f\xae\xe7\x42\x88\xab\x0e\x51\xfe\xf8\xf3\x19\xe7\x0c\x67\x71\xab\x95\xa4\x4c\xd5\xe7\x58\xb7\x97\x23\x31\xc1\x5a\x23\xa7\xf3\x25\x2c\x1b\xbc\x97\x6d\x34\x0c\x35\x3a\xac\xa8\xc9\xb8\x13\x23\x47\x43\x71\x2d\x86\x62\x34\x3c\x19\x3b\x99\xb1\x51\x75\x4d\xfe\x02\x23\x67\x0f\xde\x21\x4c\x3e\x4f\x60\x87\x11\x19\x2a\x23\x75\xc8\xe9\x29\x79\x53\xcc\x04\x87\xb1\xea\x15\x7a\xb6\x07\xbc\x30\x5d\x96\x36\x38\x49\x51\xc7\x9d\x50\xfb\xfb\xfb\x9a\x10\x69\xeb\xfa\xff\xc7\xea\xcc\x08\xf9\x1d\x0f\x62\xf6\x45\x4a\xdb\x91\x78\x3f\x14\xc7\x11\xb1\xb6\xec\xd3\x94\x7d\xcb\x74\xc5\xa9\x6a\xee\x9e\x68\xd5\xce\x1b\x8a\xf7\x72\x34\x2b\xdd\x99\x5d\x94\x7e\x14\xe9\x1b\x29\xfd\x1b\x00\x00\xff\xff\x83\x46\xbc\x7f\x0b\x09\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x51\x6f\xdb\x36\x10\x7e\xf7\xaf\x38\xa8\x0f\xd9\x80\x8a\x75\x9a\xac\x4f\x4d\x01\xcf\x49\xd1\x60\x9d\x9b\xd5\x7b\x5b\x06\xf5\x24\x9d\x6c\xc2\x14\xa9\xf2\x48\x23\x59\x90\xff\x3e\x90\x92\x53\xc5\x96\x9b\x38\x01\x02\x18\x14\xef\xbb\x8f\xdf\xdd\x7d\xe4\x2b\xf8\x4a\xdf\xbd\xb4\x54\xc2\x1a\xad\xc4\x5c\x11\x8b\xd1\xe6\x27\x24\xa5\xe6\xec\x3f\xa3\x29\x81\xbb\x11\x80\xbb\x6d\x08\xba\xbf\x33\x60\x67\xa5\x5e\x8c\x00\x4a\xe2\xc2\xca\xc6\x49\xa3\xe1\x0c\x92\x73\x53\xa3\xd4\xa0\xb1\x26\xa8\x8c\x05\xb7\xa4\xf8\x5f\x28\xcf\x8e\xac\x80\x0b\xb1\x10\x70\x44\x37\x58\x37\x8a\x44\x61\xea\xa3\x64\x74\x3f\xea\x65\xed\x76\x66\x01\xe2\x90\xcc\xd3\x36\x2e\xa6\x16\xdb\x98\xc6\x6b\x97\x49\x5d\xd2\xcd\x10\xa4\xf6\x75\x4e\x76\x17\xf2\x32\x04\x40\x83\xcc\x54\x02\x32\x44\x18\x11\x61\xa0\xb2\xa6\x6e\x17\xc0\x68\xa8\x4d\xe9\xd5\x40\x5a\xed\xac\x51\x8a\x2c\x67\x71\xeb\x21\xc9\x67\x71\x1d\x4c\x05\x3f\x60\x40\x9b\x92\x18\xa4\x7e\xa4\xe9\x56\x56\x6c\x24\x93\x5d\x93\x3d\x44\xbd\x8f\x7f\x9d\xcf\xc0\x58\xb8\xbc\x02\x2c\x4b\x4b\xcc\xb1\x7c\x2b\x9f\x93\x22\x07\xce\x80\xe7\xae\xa2\xa8\x56\x52\x2f\xc2\xd2\x1f\x3e\x27\xab\xc9\x11\xc3\xe4\xea\x12\xda\xac\x3b\x22\x60\x56\x90\x1d\x3c\xfa\x3e\x32\x3d\xdc\xe9\x04\x42\xb4\xac\x64\x81\x8e\xc2\xc9\xaf\x2e\xfe\x0c\x3c\x6a\x74\x91\x4e\x6e\x8c\x63\x67\xb1\x89\x5c\x0b\xa3\x2b\xb9\xe8\x53\x6f\xe9\xbc\x82\x2f\x11\x1d\xd5\x70\xab\x07\x94\x10\x90\xc9\x1a\x17\x74\x70\xef\x9d\x9b\x62\x45\x16\x62\x70\xdb\xfb\x3d\xc1\x42\xf9\x50\x6a\xb2\x60\xbd\xd6\x41\xba\x4d\x36\x91\x44\xa8\x0a\xbd\x72\x5d\x86\xe4\xbb\xc7\x5b\x21\xcd\x9b\x95\xd4\x6b\xa3\x56\x6f\x36\x7b\xb7\x54\xdd\x22\xec\x70\xf1\x62\xbe\x0e\x17\x2f\xa7\xbb\x1e\x8b\xe3\x53\x31\x4e\x97\xa4\xea\xd3\x3d\x93\x5c\x46\x4f\xc8\xd8\x57\x95\x1c\x9c\xbf\xa7\x46\xba\x05\x80\x16\x40\xc0\x55\x3b\x90\xce\x3c\xb4\x27\x32\xa4\xe9\xe3\x74\x50\x29\x5c\x0c\x31\xde\x4c\x8d\x32\x05\xaa\x2d\xc6\xcc\xcb\x6c\x45\xb7\x3c\x44\x52\x49\x76\xbf\xb4\x4c\x7f\xdd\xa5\xfa\x59\xb2\x0b\xb3\x3a\x9f\x7f\x82\xc6\xe7\x4a\x16\x10\x80\xa2\xa2\x9e\xc9\xc2\xb7\xc2\x58\xfa\x26\xe0\x02\x8b\x25\x90\xa2\x9a\xb4\x83\xda\xb3\x83\x9c\x80\x1b\x2a\x64\x25\xa9\x0c\x0d\x8e\xb0\x46\x25\x4b\xf8\xd2\x90\x7e\x0c\xd7\xf5\xfd\xeb\x70\xde\x92\x2a\xa9\xdb\x80\xaf\x1f\xa7\x70\xfa\xf6\xb7\x13\x98\x53\x11\xf9\xbc\x13\xef\x5e\x03\x45\xa3\x65\x5e\xa6\x96\x11\x26\x93\xc9\xe4\xf7\x93\x99\x10\xe2\x68\x40\x94\x7f\xfe\xdd\x53\x39\xcd\x59\x98\x6a\x59\x50\x26\x9b\x43\x4a\xd7\xf3\x91\xe0\x60\x5d\x21\xcf\x67\x73\x98\xb7\x78\x4f\x97\x51\x33\x34\x68\xb1\xa6\xd6\xe3\x76\x0a\x79\x3c\x16\x27\x62\x2c\x8e\xc7\x3b\x6d\x57\x64\xac\x65\xd3\x90\x7b\x41\x21\x2f\x6e\x9c\x45\x98\x7e\x9e\xc2\x06\x23\x30\x94\xba\x50\xbe\xa4\x07\xe7\x8d\x36\xe3\x2d\x86\xa8\x67\xe8\xd9\x1d\xf0\x85\xee\x32\x37\xde\x16\x14\x74\xdc\x08\xd5\x9f\xdf\xe7\x98\x48\x17\x97\xfc\x8c\xd5\x81\x16\xf2\x37\x3e\xb2\xd9\x27\x29\xad\x8f\xc5\xdb\xb1\xd8\xb6\x08\x26\x97\xb1\x43\x5d\xa2\x2d\xb3\xa5\x61\xb7\x4f\x9b\xdc\x18\x35\xa0\x4c\x2c\xcf\x92\x60\x13\x0a\xb2\x02\x67\x3d\x09\xf8\xf4\xb0\xc2\xc0\x6d\x6f\xbd\xef\x3f\x2d\x3e\xa4\x3f\xae\xd5\xf4\x7d\xef\x81\xf0\x61\x97\x7c\x85\x8a\x69\x58\x3b\x85\x39\xa9\xc1\x36\xab\xb1\xd9\xdf\x65\x33\x53\x12\xb4\xb1\x9b\xf7\x45\x6f\x0e\xd2\x34\xdc\xf3\x69\xf7\x3d\x1a\x59\xfb\x6e\xba\x83\x3b\xb8\x4e\xc2\x47\xb1\x7a\xb8\x23\x43\xa1\xc3\xd2\x75\x02\x67\x70\x9d\x5c\x27\x70\xbf\x7b\x84\xbb\xfb\xd1\xfd\xe8\xff\x00\x00\x00\xff\xff\xb5\x48\xa4\x88\xf1\x09\x00\x00"), }, "/terraform-modules/controller/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -6594,6 +6569,49 @@ var vfsgenAssets = func() http.FileSystem { 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"), }, + "/terraform-modules/matchbox-flatcar": &vfsgen۰DirInfo{ + name: "matchbox-flatcar", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/terraform-modules/matchbox-flatcar/groups.tf": &vfsgen۰CompressedFileInfo{ + name: "groups.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 464, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x61\x6a\xc3\x30\x0c\x85\xff\xeb\x14\x0f\xc3\x60\x83\xa5\x07\x18\x98\x1d\x25\x68\x8e\xb2\x06\xec\xa8\xc8\xce\x28\x8c\xde\x7d\xd8\x73\x43\xa1\xac\xec\xaf\xfd\x3d\xf4\xe9\xc9\x24\xeb\x66\x41\xe0\x12\x97\x70\xfc\xd0\xf3\xf8\x69\xba\x9d\x1c\xdc\xb2\xe6\xc2\x31\x3a\x7c\x13\xb0\x72\x12\x78\xcc\x6a\x89\xcb\x33\x01\xd8\x81\xe1\x29\xbb\xd7\xf6\xf2\xc5\x76\x58\x75\x92\xb1\xd2\x04\xbc\x10\x01\x27\xd3\x79\x89\x35\x5c\xbf\x03\x87\xa3\x4c\x63\x8f\xc2\x7b\x14\xdb\x04\xef\xd8\xc7\x77\xbe\x93\xc3\x1c\xb9\x04\xb6\x21\x2e\xeb\x76\x1e\x7a\xee\xd0\x74\xde\xee\x43\x57\xfa\x96\x23\x20\x4b\x94\x50\xd4\xe0\xdb\x32\x40\xe2\xd0\x85\x9a\x6f\xe2\x40\xc0\x85\x2e\x44\x0f\x0a\xa9\xe8\xdf\x6d\x3c\x68\xe1\xb6\x84\x3b\xe5\x8a\xfe\x7a\xfe\x5b\x14\xd0\x0c\xf8\xfd\x02\x32\xb9\xab\xfe\x4f\x00\x00\x00\xff\xff\x25\x47\xf6\xe4\xd0\x01\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/profiles.tf": &vfsgen۰CompressedFileInfo{ + name: "profiles.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 2694, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x4d\x8b\xe3\x38\x10\xbd\xfb\x57\x14\xde\xf4\x92\x40\xc7\xee\xc3\xb2\x87\x06\xb3\x2c\x0b\x0b\x0b\xcb\x5c\xe6\x38\x0c\x46\x91\x2a\xb1\xa6\x25\x95\x91\xe4\x74\xd2\xc1\xff\x7d\x90\x65\x25\x71\x77\x3a\xd3\x0c\x03\x73\x98\xf6\x25\x1f\xf5\xea\xf9\xa9\xea\xe9\x59\x74\xd4\x59\x8e\x90\x6b\xe6\x79\xb3\xa2\x5d\xdd\x5a\x5a\x4b\x85\x39\xe4\x6b\xc5\x3c\x67\x76\x29\x8d\xf3\x4c\xa9\x1c\x0e\x19\x80\x61\x1a\xa1\x82\x35\x59\xcd\xfc\x3c\x03\x80\x17\xc0\xe5\x8d\xcb\x6f\x87\xca\x96\xd9\xc2\x90\xc0\x3a\x74\x65\x00\x8b\x2c\x03\x78\x40\x6b\x50\x41\x05\xf9\xec\x10\x00\x82\x1e\x8d\x22\x26\xc2\x9b\x3d\x71\x52\xfd\x7d\x59\xc6\x12\xb9\x9a\x37\xcc\x18\x54\x7d\x61\x51\x21\x73\x58\xa4\x97\x29\x69\xba\x5d\x61\xd0\x97\x4c\x8b\x3f\xff\x58\x76\xce\x9e\xba\xb6\x68\x9d\x24\xd3\x97\x23\x3a\x70\x8b\x8e\x7b\x49\xa6\x6e\x77\x58\x6c\x75\x68\x7f\xca\x83\x1e\x69\xa4\xb7\x02\x2a\xf8\x14\x4f\xf3\xd3\x54\xd5\x52\xb3\x0d\x16\xbc\x95\x54\x6c\x9e\x86\x11\x7e\x0e\x02\x99\xdd\xb8\x30\x72\xc5\xbc\x47\x33\x1f\x65\x46\xd9\xd5\x9b\xa9\x42\xcb\xc6\xc8\x80\x28\x38\x99\xb5\xdc\x14\x9d\x55\x55\x14\xd7\x78\xdf\xd6\x68\x44\x4b\xd2\xf8\xbe\x4c\xc0\xbf\xba\x4e\x8a\x6a\x36\x3b\x84\xcf\xfe\x77\xcd\x78\xf8\xa1\x19\xbf\x6f\x70\xd7\xec\xdb\x3e\x31\x8f\x2a\x8a\xb5\xb4\xce\xd7\x2b\x22\x5f\xed\x31\xb9\x20\xe7\x64\x1c\x29\xac\xbc\xdf\xdf\x5d\xf8\xef\xe3\xdd\x99\x5d\xa2\x3b\xea\x70\xe6\x61\x00\x83\x65\x38\x19\xcf\xa4\x41\x5b\x0f\xf3\xad\xa3\x7e\xa8\xc0\xa3\x6e\x15\xf3\x18\x1c\x3b\xcf\x67\x87\x96\xf9\xa6\xd0\x24\x3a\x85\x7d\x99\x8a\xae\x1c\x8d\x59\xec\x99\x56\x85\xd7\xad\xca\x6f\x07\x33\x03\x9c\x76\x09\xd3\xa7\x82\xe9\xaa\x13\x7a\xdc\xe1\x6b\xe8\xb1\x3c\xa0\xd3\x14\x8f\x83\x3d\xa1\xc7\xeb\x93\xdf\xb8\xe3\xac\xf3\x5b\x78\xb1\x89\x45\xe4\x89\xea\x6b\x21\xdd\xc3\x85\xb7\x9e\x97\x07\xfc\xf3\x69\x11\xea\x73\xfc\x85\xf2\xd0\xe6\x5c\x53\x3f\xe0\xde\xc1\xf3\xa7\x82\x2f\x8e\x0c\x1a\x4e\x02\xe7\x81\x21\x21\xa7\xf2\x3c\xd5\x4e\x33\xa5\xd0\xf9\x28\x75\x2a\xef\x79\x79\xe8\xfd\x0d\xc8\xa8\x3d\x70\xc6\x1b\x14\xcb\xa3\xb2\x78\x8d\x60\x8c\x22\x60\x42\x38\x58\xae\x60\xc5\x1c\x76\x36\xae\x62\xfc\x5e\xaf\x15\x0b\x46\xc8\xf3\x0c\xa0\x5f\x64\x7d\x96\x95\x25\xfc\x1b\xed\x08\xff\x24\x42\xf8\x7f\x20\xfc\x2f\x6a\x39\x12\xcf\xd7\x96\x34\xa4\xe8\x83\x92\x39\x87\xde\x45\x39\x8b\x40\xf4\x81\x3c\xde\xc3\xdf\x42\x4b\x03\xba\x73\x1e\x1a\xb6\x45\x48\xd9\x80\xe2\xdc\x11\xd2\x78\x3a\x71\x45\xaa\x74\xd3\x8b\xec\x6a\xd2\x8e\xe7\x9f\x84\xc8\xb7\x63\xf7\x5a\xd7\x9b\x33\xb8\x9c\x0a\xfd\x31\x11\xfa\xbd\xa4\xef\x09\xf8\x9e\x80\xbf\x5c\x02\xa6\x30\xea\x1c\x9e\xa7\x1c\x78\x4a\xc4\x30\x8d\xa9\xe1\xde\x5f\x0c\xc1\xe5\x0a\x2e\xba\x79\x7a\x1d\x4f\x51\x79\x35\x94\x42\x68\xbc\x1e\x3e\xa1\x7a\x2d\x64\x00\x2c\x7b\xac\xd3\x6a\xd3\x24\x92\x1f\xb8\xe2\xa3\x85\x83\x8c\xaf\x01\x00\x00\xff\xff\x64\x0f\x2d\xc0\x86\x0a\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/templates": &vfsgen۰DirInfo{ + name: "templates", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl": &vfsgen۰CompressedFileInfo{ + name: "install.yaml.tmpl", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1407, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xc1\x8e\xdb\x46\x0c\xbd\xef\x57\xb0\x1b\xb7\xa7\x4a\x76\x0c\xf4\x22\xc0\x28\x92\xa2\x40\x0b\xf4\x54\xa7\xed\x21\x0d\x84\xb1\x86\xb2\xa7\x3b\xe2\x68\x49\xce\xee\xaa\xaa\xf3\xed\xc5\xc8\x96\x6c\xaf\x1d\xe4\x36\x22\x1f\xdf\x3c\x92\x4f\x93\x65\xd9\x9d\x74\xa2\xd8\xd8\xe2\x0e\x20\x92\x53\x49\x07\x80\x0c\xc8\x34\x58\x80\x23\x51\xe3\x3d\x72\x2e\xc8\x4f\xae\xc2\x21\x0b\x80\x64\x36\x1e\x0b\x50\x8e\x63\xa8\x0a\xa4\x48\x2a\x05\xfc\x77\x8c\x00\x7c\xfc\x83\x9c\x7e\x9a\x3e\x7f\xc7\xc7\xe8\x18\x65\x45\xa8\xcf\x81\x1f\xb2\x40\xde\x11\xe6\x6a\x78\x8b\x3a\xc1\xde\xd5\x8a\xfc\x15\xcc\xc7\xf5\x41\xcf\x89\xfc\x43\xd7\xe2\x4a\x5c\xd3\x7a\x9c\x62\x3f\xbf\x60\xb5\x56\xc3\xba\x9a\x87\x56\xe7\x53\x37\x27\x9a\x5f\x0f\xa1\x13\xcd\x5f\x86\x14\xed\xfb\x6e\xd5\x44\xaf\x2e\x8b\x82\x7c\x7e\xf7\x1b\x78\xf7\x14\x9c\x85\x28\x8e\xb6\xa0\x3b\x04\x51\x43\xd6\xb0\x85\xf5\xfa\x17\x68\x03\x2b\x48\x80\x0f\xc8\x6c\xea\xc0\x0d\x98\xb6\xf5\x1d\x54\x86\x28\xe8\x00\x89\xa4\xce\x1f\xb9\xda\x20\x9a\x1d\x55\xe5\xf0\x3e\x2a\x18\xdb\x38\x12\x68\x4c\x37\x80\x35\x80\xc5\x4d\xdc\x82\x75\xf2\x30\x6e\x03\x5a\x0e\x1b\x8f\x8d\xe4\xa3\xa4\x34\xb0\x31\xfb\x3d\x88\xec\x2c\x3c\x3b\xef\x21\x0a\x1e\x24\x2d\x97\x60\x28\xa9\x46\x96\xf9\x49\x5c\x65\x28\xed\x8d\xb0\xd2\xfc\x62\xef\x89\x22\x97\x50\x3d\x4c\x23\xb7\x1c\x5a\x47\x47\x7b\x9c\x43\xdf\x2e\xb2\x84\xce\xd2\x3d\x79\x15\xa8\x9e\x10\xb7\x3d\x71\xd8\xde\x40\xfd\xe9\x22\xf8\x9b\x13\x45\x5a\x2b\xa3\x69\x56\x5f\xce\x2c\x97\xcb\xe5\x9d\x68\x60\xb3\xc5\xa4\xa6\x76\x1e\x27\xd7\xb6\x46\x77\x05\xdc\x5c\xf6\x80\x1b\xcc\x5e\x00\x87\x30\xf6\xd5\x04\x8b\x05\x2c\x7e\x58\x2c\x5e\xfb\x78\x92\xe0\x06\x07\x5e\xf6\xf0\xe6\x9b\xf9\xc6\xd1\x7c\x63\x64\x07\x19\xbe\x9c\xf7\x1c\xd9\x43\x96\x31\x2a\x77\xf0\x76\x01\xf7\xb3\xde\x6d\xc9\xa9\x0b\x54\x22\xd9\x36\x38\xd2\xfd\x8f\x7d\x9f\x33\x3e\x46\x14\xcd\xd9\x3c\x97\x8f\x11\xb9\xdb\xef\xbf\x0b\xb2\x1a\x75\xdb\x7b\xc8\x02\x8c\xa5\xf9\x3f\x12\xe8\xec\x96\xda\x1b\xad\x0c\x8f\xe6\x81\xbf\x2f\x06\xf6\x6d\xff\x19\x5c\x3d\x3a\xa2\xd4\x50\x4a\x93\x38\x45\xcb\xc1\x48\x9f\xf7\x17\xf0\x4c\x6e\xd4\xa3\x17\xbc\x02\x5a\x98\xf5\x23\x6b\x62\xda\xdf\x2a\x24\xeb\xea\xab\xca\x9f\x60\xd6\x07\x29\xab\x9d\x21\x42\xff\xba\x2e\xfb\xf3\x90\x7e\x42\x16\x17\xe8\x2a\x1d\xd2\x18\xd3\x66\x8c\x23\xe4\xd2\x3b\x8a\x2f\x65\xc0\x66\x7f\xff\x0a\x39\xeb\x37\x46\x30\xb2\x2f\x6b\x6f\xb6\x57\x3c\xee\x8b\x03\x8d\x16\x9f\x8c\x6d\x40\x50\xf5\xec\x05\x01\x38\x78\xa6\x52\x0f\x8c\x9b\xe4\x9b\xd6\x88\x3c\x1f\x1e\xcc\xf4\x3b\x5d\x3e\x98\x55\xe0\xb1\x58\x64\x57\x9a\xa8\xbb\xc0\xee\x5f\xb4\xe5\x03\x76\x52\xc0\xac\x4f\xe1\x74\xde\xdf\xfd\x1f\x00\x00\xff\xff\x42\xeb\x6b\x25\x7f\x05\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/variables.tf": &vfsgen۰CompressedFileInfo{ + name: "variables.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 2232, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xef\x6b\xe3\x46\x10\xfd\xee\xbf\x62\xf0\x97\x24\xe0\x48\xce\xd1\xc0\x9d\xe0\x3e\x04\xc7\xe5\x0e\xee\xae\xa1\x49\x69\xa1\x14\x31\xde\x1d\x49\x83\x57\xbb\xea\xce\xca\x8e\x29\xfd\xdf\xcb\xea\x47\x92\x73\x14\xa8\x4b\xf3\x29\xd8\xbb\x6f\xde\x7b\xf3\x9e\xac\x1d\x7a\xc6\x8d\x21\x98\x57\x21\x34\x39\x59\xdd\x38\xb6\x61\x0e\x7f\xcd\x00\xc2\xa1\x21\x18\xfe\x3e\x82\x04\xcf\xb6\x9c\x01\x68\x12\xe5\xb9\x09\xec\x2c\x7c\x84\xf9\x57\x0c\xaa\xda\xb8\x47\xf8\xf4\xf0\x70\x07\x9e\x50\x5f\x3a\x6b\x0e\x30\x62\xc1\x39\x25\x65\x02\x11\x3f\x4b\xd3\x7a\x38\x9d\xd0\x23\xd6\x8d\xa1\x44\xb9\x3a\x7b\xbf\x7c\xbf\xbc\x48\xe6\xb3\xbf\x67\xb3\x67\x42\x4e\x72\x55\xa1\xb5\x64\x4e\x61\xf3\xa3\xc1\xa0\xd0\xc3\xca\xd9\x80\x6c\xc9\xc3\x17\xb6\xed\x23\x0c\x50\x10\x1c\xb0\x95\x80\xc6\x40\xe1\x5d\x0d\xe7\x12\xe2\xb8\x05\x6c\x28\xe0\x02\xd0\x34\x15\x2e\x80\x74\x49\x91\x50\x84\x2f\xb0\x35\x61\x98\x3a\xef\x4f\xbf\x66\xba\x23\x2f\xec\xec\xff\xc1\x74\x80\x7a\xc9\xf4\xbc\x70\x1e\x06\xc3\xe0\xec\xdd\xd5\x87\xab\xe4\x3a\x59\x9e\xc1\x25\x08\x51\xe7\xac\x64\x69\xba\xdf\xef\x93\xa2\x07\xbd\x34\x11\x2a\x71\xbe\x4c\x3d\x19\x42\x21\x49\x27\xf5\xa8\xd6\x7b\xb2\xe1\x48\x90\x76\x7b\x6b\x1c\xea\xbc\xf1\x2e\x38\xe5\x4e\xda\xc0\xdd\x70\x07\xf8\xee\xb7\x35\x48\xe5\x5a\xa3\xa1\x15\x8a\x82\x46\x60\x08\x15\xc1\x96\x7c\xdc\x08\x5a\x0d\x6c\x39\x78\x9d\xc0\x6d\xcf\x4e\xe2\xd9\x4e\xd6\x02\xf6\x15\xab\x0a\x3c\xfd\xd9\xb2\x27\xe9\x41\x95\xab\x1b\x36\xa4\x61\xcf\xa1\x02\xe5\x0f\x4d\x70\x20\x6d\xd3\x38\x1f\x12\xf8\xc5\xb6\x42\x1a\xb8\x00\x85\xaa\x22\x9d\x8f\x36\xb2\x40\xf0\x2d\x4d\xf9\xd0\x0d\x3b\x72\xe1\xfb\xdb\x53\x16\x6c\x9c\x33\xaf\x0d\xf8\xb5\xa2\x50\x91\xef\x34\xba\x86\x3c\x06\xb6\x25\xc8\x41\x02\xd5\xa3\x1f\x51\xc5\xc6\xb9\x30\xa8\x7f\x11\xc8\xb1\x20\x90\xa2\x08\x05\xe9\x45\x24\xf0\xcd\x05\x82\x50\x61\xe8\x70\x51\xd7\x6c\xa1\x6e\x25\x40\x85\x3b\x7a\x32\x96\x7a\x6b\x9f\x13\x09\x6c\x83\x7b\x06\xed\x31\x27\x1c\x28\xd0\x08\x7d\xaf\x7f\xa0\x95\x6b\x96\xed\x29\x01\xb8\x65\xd9\x82\xa6\x1d\xab\x6e\xe7\xfd\x02\x23\xab\x51\x67\xe3\x5d\xc1\x86\x64\x34\x63\xfc\x7c\xd2\xb0\xfe\xe9\x91\x6a\xda\xa5\xa2\x71\x32\xc4\xe3\x97\xc7\xfb\x1b\x8b\x95\x77\x6d\xc8\x1d\xd5\x27\xc9\x58\xdf\xfd\xbc\x5e\xdd\x3c\xac\x6f\x33\xb8\x6f\x48\x71\x71\x00\xb4\xf0\xd3\xfa\x2b\x70\x8d\x25\x01\xeb\x28\x2f\x26\x1b\x05\x36\x28\x04\xb1\xa6\x2f\x84\x62\x07\xd5\x0b\xc0\x9a\x17\xb0\xab\xf7\xe8\x29\xf7\xb8\x5f\xc0\x23\xd9\x0b\x70\x1e\x0c\xc5\xfd\x6d\x0c\xda\xed\xd3\xfd\x51\x5f\x37\x67\x4a\xf1\x91\xd2\xbe\x49\x39\xfa\x52\xa6\x14\x1a\x96\x70\xde\xcb\xbc\x78\xad\xf3\x46\x6b\x8e\xff\xa3\x79\x6a\xa4\x2f\xdb\x9a\x6c\x5f\xc3\xc6\xbb\x1d\x6b\x02\x0c\x4f\xa1\x9d\x60\xf4\xfb\x1f\xd3\xd9\x09\x2e\x97\x1a\x8d\x21\x09\x6f\xe6\x68\xba\x45\x9f\x87\x50\xbc\xf5\x98\x0c\xae\xb3\x6a\x44\x87\x88\xfe\xef\x72\x2d\x52\xe5\x5b\x3a\xfc\x07\xab\xee\xef\x3f\x41\xd3\x6e\x0c\x2b\x88\x00\xdd\xbe\x5a\x21\x0f\x67\xca\x79\x3a\x3b\xfe\x05\xe3\xd2\x76\xce\xe6\xca\xa8\x5c\x39\x5b\x70\x79\x4a\x00\x3f\x0f\xd7\x61\xf5\x65\x05\x62\xb9\x69\xa8\x5f\x09\x5b\x65\x5a\x1d\x63\xd6\x59\xd0\x23\xb7\xbe\x8b\xdb\x31\x07\xeb\x34\xe5\x16\x6b\x3a\x65\xf2\x37\xac\x09\x5c\xd1\xa1\x47\x80\xb4\x46\x55\xb1\xa5\x49\xf0\x1a\xd5\x49\xaf\x0b\x37\x2b\x40\xad\x3d\x89\x00\x6b\xb2\x81\x8b\x43\xac\xfb\xf1\xac\xa1\x37\xd7\xef\xb2\xeb\x1f\xb2\xe5\x32\xc3\xab\xec\x83\xca\x90\xfa\xf7\x84\x7f\x02\x00\x00\xff\xff\xca\x05\x60\x54\xb8\x08\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/versions.tf": &vfsgen۰CompressedFileInfo{ + name: "versions.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 320, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x3d\x0a\xc3\x30\x0c\x85\x77\x9f\x42\xe4\x00\x8a\x93\x74\x4d\xaf\x52\xdc\x58\x25\x86\x3a\x72\x65\x27\x14\x4a\xee\x5e\x9a\x1f\xf0\x60\xe8\xa2\xe1\xe9\xd3\xa7\x97\x48\xc4\x3c\x58\x3c\x7c\x14\x80\xd0\x6b\x76\x42\xf6\xb6\x90\x44\xc7\x13\xf4\x50\x5d\x7b\xd0\xd8\x74\x95\xca\xf7\x41\x78\x71\x96\x24\x6e\x67\x00\x89\x7c\x78\x9a\x44\xd0\x1f\x01\x40\xe4\x59\x06\x82\x9f\x62\x34\x71\x74\x03\x4b\xa8\x4f\xae\x3a\xa0\xec\x4f\x8b\x2d\xea\x3d\x5f\xb7\xe9\x4d\x1a\xc6\x3b\xbf\xcb\xce\xc0\x91\x9c\xe5\xa9\x3e\xb1\x82\x52\xe3\x05\x9b\x5c\x29\x66\xb2\xec\xff\x95\xdc\xa9\x82\xaf\x43\x9d\x57\x5c\xd5\xaa\xbe\x01\x00\x00\xff\xff\x84\x28\xba\x7e\x40\x01\x00\x00"), + }, "/terraform-modules/node": &vfsgen۰DirInfo{ name: "node", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -6615,9 +6633,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/node/main.tf": &vfsgen۰CompressedFileInfo{ name: "main.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 870, + uncompressedSize: 668, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\x5f\xd5\x1e\x12\x30\xde\x7b\x21\x94\x5e\xfa\x12\xa5\x88\x59\x79\xec\xa8\xd1\xbf\x4a\xe3\x6d\xc2\x92\x77\x5f\x2c\x13\x36\x5e\x87\xf5\xc9\xd6\x37\xdf\xcc\x30\x1e\xf5\x24\x04\x65\x44\x9b\x18\x06\x3b\x2a\xa8\xdb\xcb\x6b\x03\x98\x38\x05\xc1\x01\x2f\x94\xbb\x10\x7b\xd6\xf5\xa0\x69\x80\x94\x59\xe4\xa2\x53\xb6\x35\x60\x20\x57\xb8\xa9\x46\x10\xae\x47\xc2\x3e\x39\x12\x1e\xac\xe3\x9d\xfa\xf6\x9a\x48\x8e\x9d\x8f\xfd\xe4\xf8\xfa\x74\x83\xe5\x69\x4e\xdb\x5d\xc8\xbb\x4e\x7c\x72\xaa\xad\x75\x81\x52\x8e\xfa\xc4\x97\x82\xcd\x73\xc0\xdf\x12\x03\x07\x13\x7b\xde\xcd\x8d\xdd\x42\xf7\x55\x34\x6e\x2a\xc2\x59\xf7\xa1\xe8\xc2\xf9\xc5\x1a\xd6\x36\x2d\xe2\x1c\xfd\x98\xaf\xd5\xe8\xc9\x06\x5d\xa6\x61\xb0\x67\x3c\x50\xef\x79\x35\x4f\xd3\x33\x3b\x16\x6d\x3d\x8d\xac\x03\x79\x7e\xef\x76\x36\xb7\xfc\x81\x26\x34\xe2\x33\x4d\x68\x5c\x59\x8e\x9e\xd9\x95\xf5\x68\xee\xad\x85\xaf\x14\x21\x1b\xe4\x13\x65\xe1\x2b\xa5\x8f\xe6\xc4\x59\xf3\x59\x32\x69\xca\x63\xf9\xa0\x6c\x78\xb5\x8f\xb1\x48\x1d\xf1\x32\xfa\x4d\xc1\x3b\xde\x00\xd7\xfd\xbc\x3a\x25\xd8\x94\x58\xe6\x02\x26\x06\x43\xb2\x5b\x86\x6e\xf4\x8d\xb4\xf8\x5d\xb3\x7f\xc5\x4f\xe7\xe2\x7f\x48\x44\xa2\x52\x30\x05\xfb\x6f\xe2\xf7\x04\x89\x73\x5d\xc4\x1c\x9d\xe3\x8c\xba\x62\xf8\x15\x33\xf8\x4c\x3e\x39\x6e\x67\xb3\xb0\x40\x8e\x5c\x5b\x9d\xff\x48\x57\x53\x7f\x28\xa9\x6d\xe8\xf9\x8c\x2f\x07\x28\x85\x1f\x18\x62\xf6\xdb\xbe\x96\xa0\x76\xb9\x2d\x5d\xfd\xd8\xe3\x3b\x94\x6a\x1b\xe0\xcf\xbe\xb9\x36\x6f\x01\x00\x00\xff\xff\x51\xad\xd0\x4d\x66\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xd2\x5f\xea\xe2\x40\x0c\x07\xf0\xf7\x39\x45\x18\xf6\x41\x61\xa9\x27\xf0\x2c\x21\x4e\xd3\x3a\xeb\xfc\x63\x92\x8a\x22\xde\x7d\xe9\x48\x77\xdb\x9f\x62\x9f\x4a\xbe\xf9\x34\x21\xb4\x27\x25\xb0\x4e\xd1\xe5\x34\xf8\xd1\x82\x5d\x5e\x1e\x06\xc0\xe5\x29\x29\x1c\xe1\x4a\xb5\x4b\xb9\x67\x6c\x05\x63\x00\x4a\x65\xd5\x3b\x96\xea\x5b\xc3\x40\x41\xd8\x34\x91\x94\x5b\x49\x39\x96\x40\xca\x83\x0f\xbc\xb3\xbf\x1e\x85\xf4\xdc\xc5\xdc\x4f\x81\x9f\x87\x25\x94\xc3\xfc\xd9\xee\x4e\x31\x74\x1a\x4b\xb0\xbf\xdb\x5c\x00\x91\x33\x5e\xf8\x2e\xf0\xf6\x1c\xe1\x8f\xe4\xc4\xc9\xe5\x9e\x77\xf3\x62\x4b\xeb\xbe\x41\x17\x26\x51\xae\xd8\x27\x41\xe1\x7a\xf5\x8e\xd1\x97\x17\x9c\xbb\x3f\xe7\x5b\x9a\x23\xf9\x84\x32\x0d\x83\xbf\xc1\x07\xba\xce\x9b\xbc\x4c\x27\x0e\xac\xe8\x23\x8d\x8c\x89\x22\xff\xdf\x76\x96\xef\xf9\x07\xa6\x34\xc2\x37\xa6\x34\x6e\x54\xa0\x13\x07\xd9\x9e\x66\xad\x5e\xf9\x86\x28\xf9\xa4\x5f\xc8\x2b\xdf\x90\x3e\xbb\x0b\x57\xe4\x9b\x56\x42\xaa\xa3\xfc\x20\x6f\x79\xd3\xe7\x2c\xba\x3e\xc3\x7a\xa0\xb5\x06\xe0\xb9\x9f\xff\x16\x49\xbe\x14\x56\xf9\x77\x60\x87\x4b\xc9\x3c\xcd\xdf\x00\x00\x00\xff\xff\xcd\x49\x52\xbc\x9c\x02\x00\x00"), }, "/terraform-modules/node/output.tf": &vfsgen۰CompressedFileInfo{ name: "output.tf", @@ -6640,16 +6658,16 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/node/templates/node.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "node.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5698, + uncompressedSize: 5936, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x5f\x8f\xdb\xb8\x11\x7f\xcf\xa7\xe0\xf9\x5c\x38\x01\x42\xeb\xb6\x48\xd3\x83\x7a\x3a\x60\x93\x75\x82\x20\x69\x12\x64\x37\xcd\xc3\x76\xcf\xa0\xa5\xb1\x3d\x67\x8a\xa3\x92\x23\x7b\x5d\xc7\xf7\xd9\x0b\xea\x8f\x57\x96\xe4\xed\x5e\x8a\xa2\x7d\x31\x4c\x72\xfe\x72\x86\xf3\x9b\x91\x94\xf2\x91\xdb\x3a\x86\x34\x09\x1f\x09\x91\x1b\x64\xe7\xff\x08\x21\x85\x51\x29\x84\x22\xa1\x78\x05\x76\xec\xc0\xae\x31\x86\xe2\x48\x08\x30\x6a\xa6\x21\x14\x6c\x73\x38\xa2\xd6\x14\xaf\x5c\x8a\xbc\x4c\x5a\x1c\xa9\x72\xab\x1e\xfa\x8d\x42\x96\x73\xb2\x32\x31\xee\xdf\xe9\x10\x22\x26\xc3\x60\xd8\x85\xe2\x6b\xb5\x23\xc4\xf5\x67\x83\x7c\x73\x58\x5e\x80\x8b\x2d\x66\x8c\x64\xa2\x2f\x0a\x59\xcc\xc9\x8a\x8b\xf7\x97\x02\x0c\x5b\x04\x77\x20\xfc\xa2\x0c\xbb\xa8\xf2\x5d\x5a\x70\xa4\xd7\xd0\xb6\x5a\x88\x17\x30\x27\x0b\xd1\x2a\x9f\x81\x06\xee\x1c\x5f\x5f\x96\x1b\x77\x06\x7c\x02\xc7\xca\x72\x44\x46\xce\x15\xea\xdc\x42\xfb\xe8\x12\xe2\xe8\x4f\x77\x86\x5c\x6d\x33\x88\xc8\x80\x5b\x12\x37\x48\x53\x85\xe6\x7c\xce\x60\x27\xb7\xc8\x51\xe3\x12\x84\x98\xdc\x42\x7c\x59\x28\x09\x66\x68\x02\xb7\x14\x32\x16\xa3\xcd\x12\x35\x88\xef\x44\x90\x3b\x5b\xec\x2f\x2c\x64\x62\xf4\xcb\xf5\x2f\xdf\x5f\x87\x2e\x53\x31\x84\x37\x37\x23\x11\x00\xc7\x41\xe9\xee\x38\x26\x33\x17\x3f\x8b\x20\x81\x75\x60\x72\xad\xff\x22\x12\x12\x4e\x03\x64\xe2\xcc\xff\x37\x30\xba\xf3\xf4\x8d\x71\xac\xb4\x6e\x7a\xfa\x8f\x1c\x2d\x24\x2f\xb6\xbd\xd7\x53\x87\xb8\xff\xea\xfe\xf3\xe8\xbe\x2d\xe5\xb6\x02\x6a\xb3\x58\x3a\x56\xdc\x8d\x64\x37\x54\x2f\xc9\x24\xe8\x65\x7d\x54\xbc\x9c\xdc\xa2\x63\x17\x15\xd7\xe3\x4d\xb6\x06\x18\x5c\xf1\xd7\x5f\x13\x2e\xee\xae\xdf\xac\xd1\x92\x49\xc1\xf0\x2b\xd4\xd0\xcb\xe2\x1d\x06\xb3\xee\x86\xec\xa3\x85\x32\x6a\xe9\x2a\x41\x2b\x64\x26\x82\xb5\xb2\x81\xc6\x59\xcd\x17\xac\x49\xe7\x29\x64\x3a\x5f\xa0\x71\x0f\x92\xd0\x32\x20\x55\x06\xe7\xe0\xf8\x14\x73\x9d\x20\x33\x55\xa6\xce\xa0\xcc\x94\x18\x2c\xe3\x1c\x63\xc5\x20\x55\xce\x4b\xb2\xc8\x5b\x99\x28\x56\xa3\x8e\x8a\xbb\x6b\x11\x5f\x85\xda\xac\xc4\x68\x97\x59\x34\x2c\x86\x7f\xdc\x8f\xc4\x57\x31\x53\x0e\x9e\x3f\x13\x32\xf1\xe9\xd5\xe2\x8d\xd5\x38\xb6\x3c\x38\x61\x5c\x9b\xb8\x50\x92\x5b\x90\xd5\xf5\xc8\x78\x61\x29\xcf\x64\x62\x71\x0d\xb6\x5f\x88\x2c\x8b\x96\xb0\xa9\x90\xf3\x3a\x01\xfb\x49\x6b\xca\xdc\x78\x63\xff\x7e\x20\x12\x42\x4a\x9f\xbf\x75\x6a\xb7\x8e\x6c\xf5\xca\x73\xa3\xc1\x39\xe9\x98\xb2\x0c\xda\xfc\x9a\x16\x95\x99\xd1\xaf\x94\x5b\xa3\x74\x47\x03\xf0\x86\xec\x2a\x5a\x92\x6b\x6b\xc8\x30\xe9\xdd\xb6\xb8\x46\x0d\x8b\xb6\xb2\x75\xf1\x8a\xc3\xe2\xc7\x6e\x3a\x67\xfe\x56\x63\x83\x81\x01\x1e\x27\x61\x6b\x69\xa9\x97\xfe\x2e\x0a\x61\x7b\x7d\x82\x23\x55\xf1\x12\x0d\x48\xac\x54\x34\xd6\x3d\x1c\x3e\xe7\x53\x4a\x72\xed\x15\x34\x17\x3d\xb4\x36\x37\x61\xf1\xd3\xe3\x9b\xdb\xba\xb0\xf8\xe9\x39\xa3\x8c\x0b\x47\x67\x68\xc2\xa3\x45\x8f\x0e\xff\x2c\xbc\x19\xe4\xa4\x05\x0d\xca\x41\xe9\x45\x63\xdd\xc3\x55\xbf\xde\x58\x69\x8c\x29\x6c\xaf\xef\xe3\x30\x18\x1e\x2d\x7a\xec\xaf\x8f\xcb\x34\x0d\xdb\xeb\x53\x1c\xb4\x08\x32\x4a\x5c\x78\xbc\x6a\x53\xcb\x94\x72\xc3\x82\x3d\x00\xcd\xd0\x24\x4f\x1d\xe5\x36\x86\x28\x48\x0d\x3f\x65\x65\x17\xc0\xe5\x7f\x7f\x28\x33\x4b\x99\x5a\xa8\xa2\xf6\x5a\xb7\x54\xb6\x93\xef\xa7\xc4\xb5\x0a\xdc\x41\x74\x7b\xff\x41\x6a\xfe\xb0\x2b\x20\x5d\xd9\x85\x40\x53\xbf\xed\x69\x79\x1f\x53\xb8\x65\xab\xa6\xca\x2e\x9c\xf8\x6d\xdf\x60\x1a\xee\x0a\x86\x7d\x5b\x12\x98\xc4\x0b\x3b\xa6\x1d\xee\xde\x7e\x7e\x31\x79\x37\xb9\x9a\xbe\xf9\xeb\xf9\xeb\xc9\xf4\xf3\xa7\x77\xfb\xb0\xb3\x7b\x75\xfe\x7a\xdf\xf2\x5f\x19\x32\xdb\x94\x72\x57\x94\xcf\x68\xae\xb4\x83\x36\x49\xce\x4b\x30\xec\x8b\x2c\x92\x91\x4c\x2b\x30\x72\x03\xb3\x25\xd1\xaa\x87\x94\x2c\xfe\xb3\xa4\x4c\x29\x81\xe8\x4b\x2f\x61\xac\x11\x0c\xcb\x58\xc9\x79\x1f\x1c\x95\xe5\xb6\xc3\x93\x3b\x06\x3b\x4d\x8c\x8b\x86\xbb\xc6\x6a\x5a\xc1\xe6\x14\xb3\xb6\x7b\x07\x2a\xf2\xbd\x49\x93\xad\xd8\x98\xba\x7c\x3e\xc7\xdb\x0e\x97\x41\xe9\x8b\xb8\x4c\xd0\x46\xc7\x85\xa7\x4d\x59\x94\xfa\x93\x70\x5a\xc1\xcd\x31\x0f\xdc\x22\x4b\x32\xd2\xf7\x9d\xb2\x6a\x20\x90\x4c\x8b\xea\x0e\xad\x3a\x49\xd7\x44\xb2\x63\xa6\x19\x11\x3b\xb6\x2a\x3b\x62\x3f\x8d\x83\x2d\x80\x20\xf6\x38\xda\xc0\x54\xd7\x41\x87\x78\x55\x45\xcc\xdb\x64\x73\x13\xf8\xad\x83\xbf\x7e\xd1\x0f\x17\xb2\xec\x0d\xa2\xd8\x60\x9b\x80\x12\x90\x5a\xcd\x40\xbb\x68\x38\xdc\xbd\xff\x70\x31\x99\xbe\x3b\x7f\x31\x79\x77\xd9\x0e\x4b\x46\x89\xac\xfb\x04\x99\x29\x5e\x76\x5c\x3b\x74\x11\x1d\xe8\x53\x89\x24\xa3\xb7\x32\x23\xcb\xd1\x0f\x9d\xe3\x05\xfa\xac\x90\x1b\xe4\xa5\x64\x85\xbe\x2b\xab\x6d\xb9\x3a\x7f\xf3\xfe\xaa\x63\x4b\xd9\xf0\x54\x5e\x95\x79\xf2\x3b\x7b\xa2\x1a\xc6\x35\x2d\xdc\x69\xc8\xa7\xac\xa6\xf3\x78\x7d\x92\xe8\x23\xb9\x83\x40\x9b\x76\xc8\xea\x06\x5f\xe9\x8d\xda\xba\xde\xe6\xfe\x9e\xa6\xd9\x77\xa9\x45\xcb\x9c\xe6\x9a\x51\xe6\x0e\xec\xb8\xac\x87\xc7\x53\x97\x57\x09\x45\x3c\xff\x2b\x63\x11\x9a\x85\x60\xaa\xd4\x88\xb7\x87\xa8\x0b\xaf\x51\x90\x11\x6e\x99\x73\x42\x1b\xf3\x7f\x35\xe9\xf4\x9c\x51\xd6\x49\xdc\xc6\xdd\x7d\x5b\x20\x1c\x93\x55\x0b\xf0\x73\xb0\x7f\x9f\x87\x81\xd8\x3f\x93\xb0\xb7\x15\x3e\x6e\xf7\x0b\xa6\x62\xb0\x0c\x85\xa5\x83\xaf\xbe\x84\x87\xe2\x87\xe7\xcf\x9e\xb5\xe3\x76\x30\x0a\x8d\x46\x03\xcd\x38\x0a\xd1\x01\xa3\x68\xb8\xab\x61\x0f\x53\xb5\x80\xa9\x4f\x99\xfd\x49\x8e\xab\xf3\xd7\x1d\x0e\x56\x8b\xd3\x0c\xe7\x9f\x5e\x5f\x46\x03\x5f\x5b\x21\x2e\x87\x05\x4d\xb1\xd2\x45\x04\x2a\x31\x83\x06\x73\xa3\xc8\x44\x83\xe1\xee\x57\x42\xf3\x78\xf0\x74\xf0\x54\x5c\x7b\x68\x5d\x3d\x15\xeb\x26\x50\x97\xc5\x49\x84\x62\x30\xdc\xad\xf6\xd1\x70\xb7\xde\x0f\x6e\x9e\xec\x3b\x02\xcb\x4a\xf1\x00\x81\x65\x85\x39\x21\xf0\x28\x66\x6e\xeb\x62\xd6\xe3\x24\x48\xd5\x6d\x11\x6f\xb9\x51\x1c\x2f\xc1\x15\xd0\x72\x7f\xec\x1e\x16\xaa\xb9\x1b\xa3\x21\xc6\xf9\x76\x9c\xaa\xdb\xa9\xd7\x31\xad\x74\x44\x67\xcf\xcf\x7e\x7c\x76\x6f\x22\x3d\x6c\xd4\xb9\x3f\xb9\xfe\xfc\x3b\x93\xeb\xfb\xef\x0e\x93\x60\x63\xd7\x01\x0b\x09\x8d\x0d\x5f\xf3\x7d\xc9\xaf\xbe\x06\x4d\x4b\xc3\xa6\xd5\x70\x33\x18\x3e\xae\xca\x25\x9a\x39\xf9\xfa\x3b\xda\xed\xc6\x2f\x0b\x9a\x8b\x82\x64\xbf\x1f\x3d\x69\x86\x38\x56\x2c\x7e\xfa\x69\xf2\xe1\x95\xf8\xf9\x7e\xb8\x6f\xf0\xa8\x0c\xff\x06\xd6\x21\x99\xbb\x6f\x0a\x25\xd1\x78\xf5\xa3\x1b\x23\x05\xeb\xb3\x19\xb0\x3a\x6b\xf0\xac\xd0\x24\xa1\xa8\xbe\x14\xbc\xac\xee\xb7\x68\xa8\x9a\xc6\x34\x0c\xf5\x69\x34\xdc\xf5\x79\x79\x94\xa2\x93\x0f\xaf\xee\x0d\x65\xb7\x04\xfd\x4f\xc2\xe6\x5f\xb0\x68\x4c\xb8\x4d\xd8\xbd\x77\xfc\xfc\x96\x21\xf0\x78\x60\xa9\x22\x14\x76\x36\xba\x5c\x12\x0c\xdb\x6d\x46\x68\xb8\xaf\xdc\xc4\xac\x5b\x1c\xbd\xf5\x2f\xec\xab\x71\x1d\x55\x0f\xec\x04\x2b\x5c\x2c\xc0\x70\xf8\xd8\x5f\x8f\xd7\xf1\xa4\xb7\xa6\x30\xa4\x49\x70\xf8\x7e\xe8\x05\x8c\x93\xa0\xee\xa4\xc1\x3e\xa4\xba\x7c\x23\x32\x5c\x7f\x2a\xb5\xde\x34\xf6\x2e\xde\x5f\x46\xc3\x9d\xb7\xb8\xe8\xe6\x31\x6b\xd6\xf9\x8b\xa2\x51\x77\xd1\x6f\xe3\x47\x99\x72\x6e\x53\x7e\xf3\x75\x60\x5b\xdf\x7c\x63\x3a\x60\xb9\x73\xcb\x69\x3d\x89\x40\x32\x5d\xc1\xd6\x85\x62\xb8\xf3\xdb\xfe\xff\xfe\xd1\xbf\x02\x00\x00\xff\xff\x87\x17\x01\x9b\x42\x16\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xdd\x8f\xd3\x48\x12\x7f\xe7\xaf\x28\xbc\x59\x0d\x48\xd3\xc9\xcc\x1d\xcb\xad\x7c\xeb\x95\x06\x08\x08\xc1\x01\x62\x86\xe3\x81\x63\xa3\x8e\x5d\x49\x9a\xb4\xbb\x7c\xdd\xe5\x64\xb2\x21\xfb\xb7\x9f\xda\x1f\x19\xc7\x76\xe6\x86\x3d\xad\x6e\x5f\x2c\x77\x77\xfd\xba\x3e\x5d\x1f\x16\x42\xdc\x73\x1b\xc7\x98\x26\xe1\x3d\x80\xdc\x28\x76\xfe\x05\x40\x80\x91\x29\x86\x90\x50\xbc\x44\x3b\x74\x68\x57\x2a\xc6\xe2\x08\x00\x8d\x9c\x6a\x0c\x81\x6d\x8e\x07\xd4\x9a\xe2\xa5\x4b\x15\x2f\x92\x16\x22\x95\x6e\xd9\x43\xbf\x96\x8a\xc5\x8c\xac\x48\x8c\xfb\x6f\x3c\x00\x62\x32\x8c\x86\x5d\x08\x5f\xab\x1d\x80\x4f\x1f\x8c\xe2\xcf\xfb\xe5\x33\x74\xb1\x55\x19\x2b\x32\xd1\x47\xa9\x18\x66\x64\xe1\xd9\x9b\x4b\x40\xc3\x56\xa1\xdb\x13\x7e\x94\x86\x5d\x54\xe9\x2e\x2c\x3a\xd2\x2b\x6c\x4b\x0d\xf0\x04\x67\x64\x31\x5a\xe6\x53\xd4\xc8\x9d\xe3\x4f\x97\xe5\xc6\x8d\x00\xef\xd1\xb1\xb4\x1c\x91\x11\x33\xa9\x74\x6e\xb1\x7d\x74\x89\x71\xf4\xc3\x8d\x20\x57\x9b\x0c\x23\x32\xe8\x16\xc4\x0d\xd2\x54\x2a\x73\x31\x63\xb4\xe3\x6b\xc5\x51\xc3\x08\x00\xe3\x6b\x8c\x2f\x0b\x26\xa3\xa9\x32\x23\xb7\x00\x11\xc3\xc9\x7a\xa1\x34\xc2\x7d\x18\xe5\xce\x16\xfb\x73\x8b\x19\x9c\xfc\xf2\xe9\x97\xef\x3e\x85\x2e\x93\x31\x86\x9f\x3f\x9f\xc0\x08\x39\x1e\x95\xea\x0e\x63\x32\x33\xf8\x19\x46\x09\xae\x46\x26\xd7\xfa\xef\x90\x10\x38\x8d\x98\xc1\xb9\x7f\x37\x78\x72\xa3\xe9\x4b\xe3\x58\x6a\xdd\xd4\xf4\xdf\xb9\xb2\x98\x3c\xd9\xf4\x9a\xa7\x76\x71\xbf\xe9\xfe\x77\xef\xbe\x2a\xef\x6d\x39\xd4\x66\xb1\x70\x2c\xb9\xeb\xc9\xae\xab\x9e\x92\x49\x94\xbf\xeb\x9d\xe4\xc5\xf8\x5a\x39\x76\x51\x61\x1e\x2f\xb2\x35\xc8\xe8\x8a\x57\x6f\x26\x35\xbf\x31\xbf\x59\x29\x4b\x26\x45\xc3\xcf\x95\xc6\x5e\x88\x57\x18\xcd\xaa\xeb\xb2\x77\x16\x4b\xaf\xa5\xcb\x44\x59\x10\x19\x8c\x56\xd2\x8e\xb4\x9a\xd6\xb8\xd1\x8a\x74\x9e\x62\xa6\xf3\xb9\x32\xee\x4e\x37\xb4\x04\x48\xa5\x51\x33\x74\x7c\x0c\x5c\x07\xc8\x54\x96\xa1\x13\x94\x91\x12\xa3\x65\x35\x53\xb1\x64\x14\x32\xe7\x05\x59\xc5\x1b\x91\x48\x96\x27\x1d\x16\x37\x66\x81\xaf\x20\xd7\x4b\x38\xd9\x66\x56\x19\x86\xc1\x5f\x76\x27\xf0\x15\xa6\xd2\xe1\xe3\x47\x20\x12\x1f\x5e\x2d\x6c\x2c\x87\xb1\xe5\xe0\x88\x70\x6d\xe2\x82\x49\x6e\x51\x54\xe6\x11\xf1\xdc\x52\x9e\x89\xc4\xaa\x15\xda\xfe\x4b\x44\x99\xb4\xc0\xa6\x20\x66\x75\x00\xf6\x93\xd6\x94\xb9\xf1\xc2\xfe\x6b\x4f\x04\x20\x84\x8f\xdf\x3a\xb4\x5b\x47\xb6\xfa\xca\x73\xa3\xd1\x39\xe1\x98\xb2\x0c\xdb\x78\x4d\xf3\x4a\xcc\xe8\x0b\xe5\xd6\x48\xdd\xe1\x80\xbc\x26\xbb\x8c\x16\xe4\xda\x1c\x32\x95\xf4\x6e\x5b\xb5\x52\x1a\xe7\x6d\x66\xab\xe2\x2b\x0e\x8b\x87\x5d\x77\xce\xbc\x55\x63\xa3\x46\x06\x79\x98\x84\xad\xa5\xa5\x5e\xfa\x1b\x2f\x84\xed\xf5\x11\x44\x2a\xe3\x85\x32\x28\x54\xc5\xa2\xb1\xee\x41\xf8\x98\x4f\x29\xc9\xb5\x67\xd0\x5c\xf4\xd0\xda\xdc\x84\xc5\xa3\x47\x37\xb7\x71\x61\xf1\xe8\x39\xa3\x8c\x0b\x45\xa7\xca\x84\x07\x8b\x1e\x1e\xfe\xb3\xf0\x62\x90\x13\x16\x35\x4a\x87\xa5\x16\x8d\x75\x0f\xaa\xfe\x7a\x63\xa9\x55\x4c\x61\x7b\x7d\x1b\xc2\xa8\xf0\x60\xd1\x23\x7f\x7d\x5c\x86\x69\xd8\x5e\x1f\x43\xd0\x7c\x94\x51\xe2\xc2\xc3\x55\x9b\x5a\xa4\x94\x1b\x06\xf6\x05\x68\xaa\x4c\x72\xea\x28\xb7\x31\x46\xa3\xd4\xf0\x29\x4b\x3b\x47\x2e\xdf\xfd\xa1\xc8\x2c\x65\x72\x2e\x8b\xdc\x6b\xdd\x42\xda\x4e\xbc\x1f\xbb\xae\x95\xe0\xf6\x57\xb7\xf7\xef\xc4\xe6\xfb\x6d\x51\xd2\xa5\x9d\x83\x32\xf5\xb7\x3d\x29\xed\x31\xc1\x6b\xb6\x72\x22\xed\xdc\xc1\x6f\xbb\x06\x68\xb0\x2d\x00\xbb\xf6\x4d\x68\x12\x7f\xd9\x21\xed\x60\xfb\xea\xc3\x93\xf1\xeb\xf1\xd5\xe4\xe5\x3f\x2e\x5e\x8c\x27\x1f\xde\xbf\xde\x85\x9d\xdd\xab\x8b\x17\xbb\x96\xfe\xd2\x90\xd9\xa4\x94\xbb\x22\x7d\x46\x33\xa9\x1d\xb6\x49\x72\x5e\xa0\x61\x9f\x64\x15\x19\xc1\xb4\x44\x23\xd6\x38\x5d\x10\x2d\x7b\x48\xc9\xaa\x5f\x4b\xca\x94\x12\x8c\x3e\xf6\x12\xc6\x5a\xa1\x61\x11\x4b\x31\xeb\x2b\x47\x65\xba\xed\x60\x72\xc7\x68\x27\x89\x71\xd1\x60\xdb\x58\x4d\xaa\xb2\x39\x51\x59\x5b\xbd\x3d\x15\xf9\xde\xa4\x09\x2b\x36\x26\x2e\x9f\xcd\xd4\x75\x07\x65\x94\xf0\x49\x5c\x24\xca\x46\x87\x89\xa7\x4d\x59\xa4\xfa\xa3\xe5\xb4\x2a\x37\x87\x18\xbc\x56\x2c\xc8\x08\xdf\x77\x8a\xaa\x81\x50\x64\x5a\x54\x37\xd5\xaa\x13\x74\xcd\x4a\x76\x08\x9a\x12\xb1\x63\x2b\xb3\x03\xf8\xf1\x3a\xd8\x2a\x10\xc4\xbe\x8e\x36\x6a\xaa\xeb\x54\x87\x78\x59\x79\xcc\xcb\x64\x73\x33\xf2\x5b\x7b\x7d\xfd\xa2\xbf\x5c\x88\xb2\x37\x88\x62\xa3\xda\x04\x94\xa0\xd0\x72\x8a\xda\x45\x83\xc1\xf6\xcd\xdb\x67\xe3\xc9\xeb\x8b\x27\xe3\xd7\x97\x6d\xb7\x64\x94\x88\xba\x4f\x10\x99\xe4\x45\x47\xb5\x7d\x17\xd1\x29\x7d\x32\x11\x64\xf4\x46\x64\x64\x39\x3a\xeb\x1c\xcf\x95\x8f\x0a\xb1\x56\xbc\x10\x2c\x95\xef\xca\x6a\x59\xae\x2e\x5e\xbe\xb9\xea\xc8\x52\x36\x3c\x95\x56\x65\x9c\x7c\x63\x4f\x54\x97\x71\x4d\x73\x77\xbc\xe4\x53\x56\xd3\xf9\x7a\x7d\x94\xe8\x1d\xb9\xfd\x85\x36\xed\x90\xd5\x0d\xbe\xd4\x6b\xb9\x71\xbd\xcd\xfd\x2d\x4d\xb3\xef\x52\x8b\x96\x39\xcd\x35\x2b\x91\x3b\xb4\xc3\x32\x1f\x1e\x4e\x5d\x9e\x25\x16\xfe\xfc\x43\xc6\x22\x65\xe6\xc0\x54\xb1\x81\x57\x7b\xaf\x83\xe7\x08\x64\xc0\x2d\x72\x4e\x68\x6d\xfe\x54\x93\x4e\xcf\x19\x65\x9d\xc0\x6d\xd8\xee\xf7\x39\xc2\x31\x59\x39\x47\x3f\x07\xfb\xef\x73\x3f\x10\xfb\xcf\x24\xec\x6d\x85\x0f\xdb\xfd\x02\x54\x0c\x96\x21\x58\xda\xeb\xea\x53\x78\x08\x67\x8f\x1f\x3d\x6a\xfb\x6d\x2f\x94\x32\x5a\x19\x6c\xfa\x11\xa0\x53\x8c\xa2\xc1\xb6\x2e\x7b\x2a\x95\x73\x9c\xf8\x90\xd9\x1d\x45\x5c\x5d\xbc\xe8\x20\x58\xce\x8f\x03\x2e\xde\xbf\xb8\x8c\x02\x9f\x5b\x31\x2e\x87\x05\x4d\xb1\xd4\x85\x07\xaa\x6b\x82\x06\xb8\x91\x64\xa2\x60\xb0\xfd\x42\xca\x3c\x08\x4e\x83\x53\xf8\xe4\x4b\xeb\xf2\x14\x56\xcd\x42\x5d\x26\x27\x08\x21\x18\x6c\x97\xbb\x68\xb0\x5d\xed\x82\xcf\x0f\x77\x9d\x0b\xcb\x4c\x71\x87\x0b\xcb\x0c\x73\xe4\xc2\x03\x9f\xb9\x8d\x8b\x59\x0f\x93\x51\x2a\xaf\x0b\x7f\x8b\xb5\xe4\x78\x81\xae\x28\x2d\xb7\xfb\xee\x6e\xae\x9a\xb9\xa1\x32\xc4\x6a\xb6\x19\xa6\xf2\x7a\xe2\x79\x4c\x2a\x1e\xd1\xf9\xe3\xf3\x1f\x1f\xdd\x1a\x48\x77\x1b\x75\x6e\x0f\xae\xbf\x7d\x63\x70\x7d\x77\x7f\x3f\x09\x36\x76\x1d\x32\x08\x6c\x6c\xf8\x9c\xef\x53\x7e\xf5\x37\x68\x52\x0a\x36\xa9\x86\x9b\x60\xf0\xa0\x4a\x97\xca\xcc\xc8\xe7\xdf\x93\xed\x76\xf8\xb4\xa0\x79\x56\x90\xec\x76\x27\x0f\x9b\x2e\x8e\x25\xc3\x4f\x3f\x8d\xdf\x3e\x87\x9f\x6f\x2f\xf7\x0d\x8c\xcc\xd4\x3f\xd1\x3a\x45\xe6\xe6\x9f\x42\x49\x34\x5c\xfe\xe8\x86\x8a\x46\xab\xf3\x29\xb2\x3c\x6f\x60\x96\xca\x24\x21\x54\x7f\x0a\x9e\x56\xf6\x2d\x1a\xaa\xa6\x30\x0d\x41\x7d\x18\x0d\xb6\x7d\x5a\x1e\x84\xe8\xf8\xed\xf3\x5b\x5d\xd9\x4d\x41\xff\x17\xb7\xf9\x2f\x18\x1a\x13\x6e\xb3\xec\xde\x3a\x7e\xfe\x9e\x21\xf0\x70\x60\xa9\x3c\x14\x76\x36\xba\x28\x81\x86\xed\x26\x23\x65\xb8\x2f\xdd\xc4\xac\x5b\x88\xde\xfc\x17\xf6\xe5\xb8\x0e\xab\x3b\x76\x82\x55\x5d\x2c\x8a\xe1\xe0\x81\x37\x8f\xe7\xf1\xb0\xeb\xf3\xd2\xb8\xa3\x44\x62\x4a\x66\xf8\xc5\xed\x03\xeb\x76\x7f\xff\x70\x76\xf6\x4d\xfe\xde\x1e\xa8\x11\x68\xb5\xc2\xe2\x17\x04\x59\x0c\xca\x56\xe0\xb4\x45\x41\x73\x41\x19\xbb\x20\x6c\x61\x01\x02\x9f\xfe\x9c\xfa\xd5\x23\x83\xf3\xb3\xb3\x34\x38\xed\xa3\xf0\x0a\x78\x8a\xbf\x06\x07\xa7\xcd\xb2\x51\xbe\x7f\xbf\xfd\x0d\xd4\x0c\x6a\x23\xc1\xfd\x08\x82\xa0\x1e\xa9\x0e\x8c\x55\x93\xfc\x21\x65\x72\xb0\xad\xaf\xbf\x11\x0b\x4d\xa2\x66\x5e\x94\x4c\x3a\xb7\x2e\xff\x70\x3b\xb4\xad\x3f\xdc\x31\xed\x3b\x17\xe7\x16\x93\x7a\xee\xc2\x64\xb2\xc4\x8d\x0b\x61\xb0\xf5\xdb\xfe\x7d\x77\xef\x3f\x01\x00\x00\xff\xff\x14\x16\xad\x09\x30\x17\x00\x00"), }, "/terraform-modules/node/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2022, + uncompressedSize: 1875, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\xf9\x25\xf7\x4a\x78\x49\x80\x8b\xae\x2a\xf1\x90\x06\xaa\x56\x42\x29\x6a\xfa\xd6\x54\x66\xb2\x3b\xb6\x57\x59\xef\xba\xfb\x11\x40\x11\xff\xbd\x5a\xdb\xa8\x24\x31\x2d\xa1\xf0\xe6\xec\x9c\x39\x33\xe7\xec\xd9\x35\x5a\x89\x4b\x45\x90\x38\x57\x66\x2b\x7a\x70\x09\x6c\x06\x00\xfe\xa1\x26\xe8\xfe\x2e\x40\x49\xe7\xff\x71\xde\x4a\x5d\xfc\x3b\x00\x10\xe4\xb8\x95\xb5\x97\x46\xc3\x05\x24\xd7\xd2\x79\x30\x39\xcc\xe7\x1f\xa1\x0e\x4b\x25\x39\x44\x20\xc8\x8d\x85\xe0\xc8\xc2\x2d\x37\x96\x6e\x19\x5c\x21\x2f\x81\x14\x55\xa4\x3d\x54\xc1\x79\x58\x12\xb8\x9a\xb8\xcc\x25\x09\x90\x1a\x10\xd6\xa8\xa4\x80\xcf\x35\xe9\x6d\xb8\x88\x56\xa1\x3f\x02\x74\x20\x28\x97\xba\x2d\xf8\xf2\x61\x0a\x67\x27\xff\x9d\xc2\x9c\x78\xc3\xe7\x9c\x9d\x1f\x01\xb1\x82\xc1\xd0\xb9\x32\xb5\x0e\x61\x32\x99\x4c\xde\x9f\xce\x18\x63\x43\x96\x34\xf4\x73\x0c\xca\x77\xb3\x7d\xfb\x3e\x78\x1c\x0c\x7e\xed\x41\x1b\x41\x19\x37\x41\xfb\xbe\x4d\xe8\x50\x2d\xc9\xee\xef\x60\xd6\x7c\x8f\x5b\x88\xf5\x0e\xbc\x01\x6e\x09\x3d\xf5\x74\x1c\x6f\x37\xe4\x2a\x38\x4f\x36\x13\xda\x65\x8e\xec\x5a\x72\xca\x64\xdd\xd7\xbc\x55\x60\xbf\xf9\xa7\x1b\x40\x21\x2c\x39\x17\x09\x74\x78\x70\x39\x9b\xc3\xbc\xc5\x63\x70\x83\xce\x91\x88\xb4\x56\x61\x49\x8a\x7c\xdc\x63\x9a\x3e\xeb\x0d\x35\x5a\xac\xc8\x93\xed\xa1\x9c\x8c\x47\xec\x94\x8d\xd8\x78\x94\xec\x92\xe7\x99\xd3\xb2\xae\xc9\xbf\xc1\x39\x57\xf7\xde\x22\x4c\xaf\xa7\xf0\x84\x11\x19\x4a\xcd\x55\x10\x14\xe5\xf5\x25\x01\x37\x3a\x97\x45\xb0\x18\xab\x5e\x21\xe0\x33\x4a\x99\xd4\x82\xee\x5b\x5e\x3b\xad\x9f\x35\x3d\x82\xbb\x52\xf2\x12\xee\xa4\x52\xd1\x91\xad\xd3\x3c\x09\xb8\x93\xbe\x84\x06\x23\x2e\xb6\x23\xe3\xad\x51\xaa\xdb\xd2\x8b\xfa\x6c\x2d\x6f\x67\x67\x9d\x02\x99\xac\xb0\xa0\x4c\x63\x45\x87\x88\x3d\x37\xc1\x72\x8a\x7c\x9e\x94\xbc\x34\x7c\x45\x16\x1a\xb8\x3e\xed\x7e\x04\x7c\x60\xd2\x1c\xaf\xa4\x5e\x1b\xb5\x3a\xee\xea\x7e\xcb\xca\x63\x71\x08\xa9\xaf\x58\x34\xd7\xfd\xb5\x94\xd6\x63\x76\x32\x62\x67\x2f\x50\xf0\x28\x75\xbf\x9d\x2a\xac\x5f\x76\xd3\xcc\x08\x82\xb6\x16\xea\x3d\xbf\xa7\xa9\xa5\x42\x46\xb7\xa7\x51\xd6\xb4\x3b\x98\x2b\x2c\x18\x5c\xc5\xc0\xd8\xc4\x9c\x19\xc3\x05\x2c\x92\x35\xaa\x40\xe3\x77\x33\x33\xe7\x25\x89\xa0\x68\x91\xc0\xe3\xfe\x1c\x9b\xc7\xfe\x01\x14\x2e\x49\xbd\x71\x80\xb6\xb6\x77\x80\x18\x2d\x69\xf7\xfb\x16\xef\x0d\x2c\x9a\xdc\x62\xf1\xac\xd5\xe4\xc9\x45\xc1\xe3\xa7\x45\xd2\x0c\x74\x18\x7f\xd1\xc8\x97\x51\xbc\x9e\x19\xda\xe2\xcd\x57\x1b\x6d\x11\x62\xda\xbb\x2d\x77\x0c\x5b\x7c\xb0\x41\x0f\x81\x9b\xaa\x42\x2d\x5e\x75\xb1\xbb\xb0\x32\x15\x4a\x9d\xb9\x90\xe7\xf2\xfe\x10\x97\x4e\xbb\x64\x6c\x01\xa0\x05\xf8\x73\x36\xb6\xa7\x9b\x85\xf7\x58\xb9\x3b\xc6\x94\xe1\xa8\x76\x0c\x5d\x1a\xe7\x9b\x5c\xff\x9b\x3c\x8f\x39\x1e\xdf\x05\xb2\xcd\xab\xd2\xa5\x21\x81\x69\xe3\xb1\x79\x6f\xfa\x88\xfd\xcf\x9a\xff\x48\xe9\x67\x00\x00\x00\xff\xff\x20\xc9\xb9\xf5\xe6\x07\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\xf9\x25\xf7\x4a\x78\x49\x80\xcb\xc3\x95\x78\x48\x03\x55\x2b\xa1\x14\xd5\x7d\x6b\x2a\x33\xd9\x1d\xdb\xab\xac\x77\xdd\xfd\x08\xa0\x88\xff\x5e\xad\x6d\x54\x42\x4c\x4b\xc8\xa3\xb3\x73\xe6\xcc\x39\x67\x66\x83\x56\xe2\x4a\x11\x24\xce\x55\xf9\x9a\x1e\x5c\x02\xdb\x11\x80\x7f\x68\x08\xfa\xdf\x05\x28\xe9\xfc\x3f\xce\x5b\xa9\xcb\x7f\x47\x00\x82\x1c\xb7\xb2\xf1\xd2\x68\xb8\x80\xe4\x5a\x3a\x0f\xa6\x80\x2c\xfb\x04\x4d\x58\x29\xc9\x21\x02\x41\x61\x2c\x04\x47\x16\x6e\xb9\xb1\x74\xcb\xe0\x0a\x79\x05\xa4\xa8\x26\xed\xa1\x0e\xce\xc3\x8a\xc0\x35\xc4\x65\x21\x49\x80\xd4\x80\xb0\x41\x25\x05\x7c\x69\x48\xef\xc2\x45\xb4\x1a\xfd\x11\xa0\x03\x41\x85\xd4\x5d\xc1\xd7\x8f\x73\x38\x3b\xf9\xef\x14\x32\xe2\x2d\x9f\x73\x76\x7e\x04\xc4\x4a\x06\x63\xe7\xaa\xd4\x3a\x84\xd9\x6c\x36\xfb\x70\xba\x60\x8c\x8d\x59\xd2\xd2\x2f\x30\x28\xdf\xcf\xf6\xfd\xc7\xe8\x71\x34\xfa\xad\x83\x36\x82\x72\x6e\x82\xf6\x43\x4a\xe8\x50\xaf\xc8\xee\x6b\xb0\x68\xbf\x47\x15\x62\xbd\x03\x6f\x80\x5b\x42\x4f\x03\x1d\xa7\xbb\x0d\xb9\x0a\xce\x93\xcd\x85\x76\xb9\x23\xbb\x91\x9c\x72\xd9\x0c\x35\xef\x1c\xd8\x6f\xfe\xf9\x06\x50\x08\x4b\xce\x45\x02\x3d\x1e\x5c\x2e\x32\xc8\x3a\x3c\x06\x37\xe8\x1c\x89\x48\x6b\x1d\x56\xa4\xc8\x47\x1d\xd3\xf4\x59\x6f\x68\xd0\x62\x4d\x9e\xec\x00\xe5\x64\x3a\x61\xa7\x6c\xc2\xa6\x93\xe4\x25\x79\x9e\x3b\x2d\x9b\x86\xfc\x3b\x92\x73\x75\xef\x2d\xc2\xfc\x7a\x0e\x4f\x18\x91\xa1\xd4\x5c\x05\x41\xd1\x5e\x5f\x11\x70\xa3\x0b\x59\x06\x8b\xb1\xea\x0d\x06\x3e\xa3\x94\x4b\x2d\xe8\xbe\xe3\xf5\xa2\xf5\xb3\xa6\x47\x70\x57\x49\x5e\xc1\x9d\x54\x2a\x26\xb2\x4b\x9a\x27\x01\x77\xd2\x57\xd0\x62\x44\x61\x7b\x32\xde\x1a\xa5\x7a\x95\x5e\xf5\x67\x47\xbc\x17\x9a\xf5\x0e\xe4\xb2\xc6\x92\x72\x8d\x35\x1d\x62\x76\x66\x82\xe5\x14\xf9\x3c\x39\x79\x69\xf8\x9a\x2c\xb4\x70\x43\xde\xfd\x0c\xf8\xc0\xa4\x39\x5e\x4b\xbd\x31\x6a\x7d\xdc\xd7\xfd\x91\x95\xc7\xf2\x10\x52\xdf\xb0\x6c\xd7\xfd\xad\x94\x36\x53\x76\x32\x61\x67\xaf\x50\xf0\x28\xf5\x70\x9c\x6a\x6c\x5e\x4f\xd3\xc2\x08\x82\xae\x16\x9a\xbd\xbc\xa7\xa9\xa5\x52\xc6\xb4\xa7\xd1\xd6\xb4\x7f\x58\x28\x2c\x19\x5c\xc5\x83\xb1\x8d\x77\x66\x0a\x17\xb0\x4c\x36\xa8\x02\x4d\xff\x5f\x98\x8c\x57\x24\x82\xa2\x65\x02\x8f\xfb\x73\x6c\x1f\x87\x07\x50\xb8\x22\xf5\xce\x01\xba\xda\xc1\x01\xe2\x69\x49\xfb\xff\x77\x78\x6f\x61\xd9\xde\x2d\x16\xdf\x5a\x4d\x9e\x5c\x34\x3c\x7e\x5a\x26\xed\x40\x87\xf1\x17\xad\x7d\x39\xc5\xf5\xcc\xd1\x96\xef\x5e\x6d\xb4\x65\x88\xd7\xde\xed\xa4\x63\xdc\xe1\x83\x0d\x7a\x0c\xdc\xd4\x35\x6a\xf1\xa6\xc5\xee\x8f\x95\xa9\x51\xea\xdc\x85\xa2\x90\xf7\x87\xa4\x74\xde\x5f\xc6\x0e\x00\x3a\x80\xbf\xdf\xc6\xee\x75\x2b\xf8\x40\x94\xfb\x67\x4c\x19\x8e\x2a\x06\xfa\x57\x00\x00\x00\xff\xff\x51\x67\x55\x61\x53\x07\x00\x00"), }, "/terraform-modules/node/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -6849,9 +6867,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/platforms/tinkerbell/controllers/main.tf": &vfsgen۰CompressedFileInfo{ name: "main.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1439, + uncompressedSize: 1473, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xcd\x8a\xe3\x3c\x10\xbc\xeb\x29\x1a\x31\x03\x19\x48\x9c\xef\x83\x61\x0f\x66\x72\xdc\xbd\xee\x03\x0c\x83\x50\xec\x76\x22\x22\x4b\x46\x2d\x27\x33\x9b\xf5\xbb\x2f\x92\x2c\xec\xfc\xc1\xae\xc9\x21\x71\x95\x5a\xd5\x55\xdd\x69\x6d\xdd\x6b\x04\x5e\x59\xe3\x9d\xd5\x1a\x1d\x87\x33\x03\x20\xdb\xbb\x0a\x61\x03\xbc\x28\xd6\xe9\x33\xa3\x30\x06\x50\xd9\xde\x78\xd8\xc0\x51\xba\xc2\xd8\x1a\x45\x7c\x11\x11\xdd\x93\x47\x27\x8c\x6c\x11\xa6\x27\x51\xe7\x60\xac\x92\x8b\x52\x2a\x30\xe7\xce\xca\x02\xd4\x86\xc4\x2f\x6b\xe6\x15\x27\x66\x06\xb3\x2e\xa1\x4c\x8d\x9f\x97\xbc\x08\x14\x11\x98\x89\x0c\x27\x09\xdd\x51\x55\x28\x54\x07\x1b\x48\x8e\x14\x5b\x6b\xfd\xa1\xdf\x62\x71\x9f\x18\x2c\xa2\xbd\x38\xe0\x17\xdd\x15\x94\xc1\xf9\x4d\xb6\x95\xca\x08\xea\x9b\x46\x7d\x5e\xdb\x71\x01\x32\x80\xbd\x25\x1f\xaf\x54\xdd\x6d\xf1\x19\xc8\x00\x64\xa7\x82\x2e\x74\xd7\x3a\x1a\xeb\x5a\xe9\x17\xfc\x99\x8a\x67\xe2\xcb\x1b\xfb\x97\x17\xd6\xbd\x04\xa9\x52\x54\xe8\x3c\xdc\xb4\x74\x63\x4a\x22\xa6\xb4\x2b\x41\x46\x75\x1d\x7a\x8a\x2e\x9b\x4a\xfa\x45\xba\x6b\x42\x96\xf0\xce\x42\xa9\xb7\xb7\xef\x3f\x7f\x30\xf2\xd6\xc9\x1d\x96\x0c\xa0\x51\x1a\x29\x7c\x59\x41\x27\xfd\xbe\x84\x35\xfa\x6a\x1d\x3a\x1c\x27\x64\xa4\x7c\x91\xc7\xb6\x04\x67\xad\x8f\x2f\x5b\x5b\x63\x09\xff\x7d\x7b\x7d\x8d\x3f\xc3\x1c\xa1\xf1\xb1\x52\x78\x94\xd1\xca\x60\x09\xbf\x59\x6e\xe2\xe9\x7c\xdd\xff\xb0\x9a\xa6\x6f\xf5\x74\x9e\xcd\xc7\xc0\x82\xca\x70\x6a\xc9\x00\x3e\x5e\xd8\xc0\x98\xc3\x71\x27\xb8\x57\xe6\x80\x6e\x8b\x5a\x0b\x8f\x6d\xa7\xa5\x47\x0e\x3c\xe4\x97\x76\xe7\xf1\x66\xc4\x8d\xd8\x00\xff\x27\x2d\xe3\xb6\xc5\xfe\x60\x03\xf9\xca\xe0\xca\x82\x3f\x9d\x83\x6b\x45\xca\x67\x58\x67\x90\xd6\x8d\x96\xbe\x92\x6e\xa5\x0c\x79\xa9\x75\xe1\xdb\x4e\xf3\x65\xd4\x07\xa0\x76\x46\x79\x65\x8d\xa8\xac\x69\xd4\xee\x4e\xd2\x93\x9a\xf7\x99\x96\x8f\x98\x69\x3a\x94\xa2\x49\xb7\x88\xf1\x16\xb1\x95\x84\xa2\x77\x7a\xec\xfe\x11\x1c\xcf\x5a\x12\x47\x74\xa4\xac\xb9\xbb\x41\x13\x9c\xd9\xd5\x5e\x1a\x83\xfa\x11\x7b\x84\x19\xc0\xf0\x38\xb0\x93\x75\x87\x46\xdb\xd3\x5f\x06\xb6\x97\xae\x3e\x49\x87\x61\xb2\xd3\xe8\x9e\x79\x8d\xf1\x3f\xe0\x7f\x5e\xe6\x20\x55\x27\x64\x5d\x3b\x24\x42\xba\xb0\x6b\xe0\x79\x92\x72\x30\x41\xef\x9d\xf9\x29\x82\x98\x4b\xa7\x55\xcd\x06\xf6\x27\x00\x00\xff\xff\x6e\x27\xce\xf0\x9f\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6b\x1b\x31\x10\xbd\xeb\x57\x0c\x22\x81\x04\x6c\xb9\x85\xd0\x83\xc9\xde\xda\x1e\x5b\x68\x8f\x21\x08\x79\x35\x1b\x0b\x6b\xa5\x45\xa3\xcd\x47\xdd\xed\x6f\x2f\x92\xbc\xdd\x75\x6c\x43\x85\x0f\xb6\xde\x68\xe6\xcd\x7b\x33\x6e\xbd\xee\x2d\x02\xaf\xbd\x8b\xc1\x5b\x8b\x81\xc3\x9e\x01\x90\xef\x43\x8d\x50\x01\x17\x62\x55\x3e\xb3\x10\xc6\x00\x6a\xdf\xbb\x08\x15\x3c\xab\x20\x9c\xd7\x28\xf3\x45\x46\x6c\x4f\x11\x83\x74\xaa\x45\x98\x4e\x09\x9d\x83\x39\xcb\x98\x94\x4a\x82\x79\xec\x2c\x2d\x80\x76\x24\x7f\x79\x37\xcf\x38\x45\x8e\xe0\xc8\x4b\x1a\xa7\xf1\xf5\x38\x2e\x03\x22\x03\x33\x92\xe9\x25\x61\x78\x36\x35\x4a\xd3\x41\x05\x45\x11\xb1\xf1\x3e\xee\xfa\x0d\x8a\xf3\x81\x49\x22\xda\xca\x1d\xbe\xd1\x59\x42\x23\x38\xaf\xe4\x5b\x65\x9c\xa4\xbe\x69\xcc\xeb\x7b\x39\x8e\x40\x06\xa0\x3a\x93\x8a\x61\x78\x9f\xbc\xf1\xa1\x55\xf1\x86\x5f\x93\xb8\x26\xbe\x38\xd1\x74\x71\xa4\xc7\x6d\xaa\xaf\x64\x8d\x21\xc2\x09\xcf\x93\x4e\x4b\x60\x6a\x0d\xa3\xa4\xa8\x9c\x56\x41\xcb\xad\xa7\x58\xac\xac\x20\x86\x3e\x6b\x6c\x6b\x49\xce\x74\x1d\x46\xca\xca\xba\x5a\xc5\x9b\x42\x65\x42\x16\xf0\xc0\x52\xa5\xfb\xfb\x2f\xdf\xbf\x32\x8a\x3e\xa8\x27\x5c\x33\x80\xc6\x58\xa4\xf4\x65\x09\x9d\x8a\xdb\x35\xac\x30\xd6\x2b\x7a\xa3\x88\xad\x5e\x05\x24\x6f\x9f\x51\x8b\xda\xbb\x46\xe8\xd5\x28\x3c\x06\xca\x57\x39\x67\x4e\x91\x1f\xac\x21\x78\x1f\xf3\x65\xeb\x35\xae\xe1\xc3\xa7\xbb\xbb\xfc\x33\xcd\x16\xba\x98\x2b\xa5\x63\x9c\x35\x0e\xd7\xf0\x9b\x8d\x1a\x3c\xfc\x28\xb5\x1e\xff\xdd\x7c\xfe\xf6\xb3\xba\xda\xa7\x4e\x52\xdb\xd9\x74\xd3\x0d\x13\x9c\x6d\xa2\xea\x8f\x60\xa9\xa7\x74\xb5\x60\x00\x8f\xb7\x6c\x60\x2c\x11\xcf\x5b\xc3\xa3\x71\x3b\x0c\x1b\xb4\x56\x46\x6c\x3b\xab\x22\x72\xe0\xe9\x69\xd9\xae\xcb\xbb\x93\x85\xae\x80\x17\x0e\x73\x63\x87\xe5\xb4\x2b\xcb\xab\xfd\x6c\x9a\x87\xc3\x3e\xe6\x6e\x93\x49\x87\x92\x49\xa3\x1b\x7e\xb5\x4f\x1a\x8b\x62\xf6\xb0\x1a\x41\x5a\x35\x56\xc5\x5a\x85\xa5\x71\x14\x95\xb5\x22\xb6\x9d\xe5\x8b\xcc\x0f\xc0\x3c\x39\x13\x8d\x77\x32\x29\x6e\x9e\xce\x8c\xcd\xc4\xe6\x61\xc6\xe5\x31\x4f\x40\x79\x54\x8c\x2a\x55\xe4\xa1\x8a\xdc\x28\x42\xd9\x07\x7b\xe8\xfe\x12\x9c\xdf\x7a\x92\xc9\x75\xe3\xdd\xd9\x1d\x9b\xe0\x31\xba\xde\x2a\xe7\xd0\x5e\x8a\x3e\xc0\x0c\x60\xb8\x6c\xd8\x8b\x0f\xbb\xc6\xfa\x97\xff\x34\x6c\xab\x82\x7e\x51\x01\xd3\x1e\x94\x41\xdf\x73\x8d\xf9\x5f\xe2\x23\x5f\x8f\x46\x9a\x4e\x2a\xad\x03\x12\x21\x1d\xc9\x35\xf0\xe1\x30\x49\xa3\x31\x79\xcd\x4e\xe7\x47\x24\x32\xc7\x4a\x1b\xcd\x06\xf6\x37\x00\x00\xff\xff\x0c\x9e\x57\xfc\xc1\x05\x00\x00"), }, "/terraform-modules/platforms/tinkerbell/controllers/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -6899,9 +6917,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/platforms/tinkerbell/workerpool/main.tf": &vfsgen۰CompressedFileInfo{ name: "main.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1254, + uncompressedSize: 1324, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x53\xc1\x6e\xdb\x3a\x10\xbc\xf3\x2b\x16\x84\x0f\x79\x80\x2d\xbf\x02\x41\x0f\x42\x7c\x6c\xaf\xfd\x80\x20\x20\x18\x6a\x65\x13\xa6\x48\x81\xbb\xb2\x13\xb8\xfa\xf7\x82\xa4\xd4\xc8\x8d\x0d\x14\x25\x7c\x30\x39\xdc\xd9\xd1\xce\xb0\x0b\xcd\xe0\x10\xe4\x39\xc4\x23\x46\x09\x17\x01\x40\x61\x88\x06\x61\x07\xb2\xaa\xb6\xe5\x37\xc1\x42\x00\x98\x30\x78\x86\xb2\x76\x70\xd2\xb1\xf2\xa1\x41\x95\x8f\x67\x58\x59\xdf\xe0\x1b\xec\xca\xae\xca\xbb\x5c\xeb\x06\x62\x8c\xaa\xf1\xa4\x08\xe3\xc9\x1a\x54\xb6\x9f\x68\x6e\x83\x49\x0f\x1d\xd4\x11\xdf\x09\xae\x57\xa9\x9a\xc1\x25\x7b\xe8\xb4\xf5\x8a\x86\xb6\xb5\x6f\xf0\x27\xfb\x12\x14\x00\x87\x40\x9c\x5b\xda\xfe\x33\xf9\x02\x4c\xfc\x5a\x19\x8c\x0c\x37\x75\x4c\xa0\x00\xd0\xbd\x4d\xf2\x31\xde\xba\xf6\x1b\x2c\xe3\x30\x8a\xbc\xed\x7b\x64\xca\xc3\xf2\x46\xf3\x43\x51\xfb\x81\xac\xe1\x59\x24\x82\xa7\xa7\x6f\x3f\xbe\x0b\xe2\x10\xf5\x1e\x6b\x01\xd0\x5a\x87\x94\xfe\x6c\xa0\xd7\x7c\xa8\x61\x8b\x6c\xb6\x49\xb3\xd7\x1d\xe6\x9a\x7c\xe5\x9d\x18\xbb\x1a\x62\x08\x9c\x0f\xbb\xd0\x60\x0d\xff\x7f\x7d\x7c\xcc\x5b\x13\x3c\xa3\xe7\xcc\x94\x96\xf5\xce\x7a\xac\xe1\xa7\x98\xa5\xaf\x2e\xcb\x09\x26\xf2\x71\x53\x12\xb1\x29\x50\x39\x5a\x5d\x16\x76\x8f\x22\xa9\x4d\xd5\x6b\x01\xf0\xf2\x9f\x18\x85\x88\x38\x45\x4b\xb2\xf5\x47\x8c\xaf\xe8\x9c\x62\xec\x7a\xa7\x19\x25\xc8\xe4\x4c\x89\x60\x09\xd9\xa7\x78\x09\x80\xd4\x2a\x45\xf3\x9f\x34\x4d\x01\xce\xdf\x0b\x3b\x98\x5b\xa7\x29\x3d\xc8\xd5\x25\x4d\xb1\x2a\x2f\x62\xdc\xce\x20\x6d\x5b\xa7\xd9\xe8\xb8\xb1\x9e\x58\x3b\x57\x71\xd7\x3b\xb9\xce\x3a\x01\xec\xde\x5b\xb6\xc1\x2b\x13\x7c\x6b\xf7\x4b\xbf\x0b\x53\x55\x54\x3d\x2f\x74\xbc\x64\x7f\x4b\x41\xb1\xa9\x74\x50\x53\x07\xf5\xaa\x09\xd5\x10\xdd\x34\x81\x7b\x70\xae\x0d\xa4\x4e\x18\xc9\x06\x7f\x33\x97\x1f\xf0\x7c\xdb\x1c\xb4\xf7\xe8\xee\xdd\x9e\x60\x01\x30\xde\x37\x2d\x7d\x53\xeb\xc2\xf9\x2f\x4d\x3b\xe8\xd8\x9c\x75\xc4\x94\xf2\x12\xe3\x8b\x6c\x30\xbf\xf0\x2f\xb2\x9e\xcd\xb4\xbd\xd2\x4d\x13\x91\x08\xe9\x6a\x5c\xa3\x9c\xd3\x34\x9b\x92\xf4\xde\xc8\x50\x95\xc4\x5c\x4f\xda\x36\x62\x14\xbf\x02\x00\x00\xff\xff\x5a\x51\x78\xad\xe6\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8b\xdb\x3c\x10\xbd\xeb\x57\x0c\x62\x0f\xfb\xc1\xc6\xfe\x0a\x4b\x0f\x66\x7d\x6b\x7b\x6c\xa1\x3d\x86\x20\xb4\xd6\x38\x11\x91\x25\xa3\x91\x93\x5d\x52\xf7\xb7\x17\x49\xf6\xc6\xd9\x4d\xa0\x22\x87\x78\x9e\x66\xf4\xe6\xcd\x9b\xce\xa9\xc1\x20\xf0\xa3\xf3\x7b\xf4\x1c\x4e\x0c\x80\xdc\xe0\x1b\x84\x1a\x78\x51\x94\xf9\x37\xc1\x8c\x01\x34\x6e\xb0\x01\xf2\xa9\xe1\x20\x7d\x61\x9d\x42\x91\xc2\x33\x2c\xb4\x55\xf8\x02\x75\xfe\x2a\xd2\x57\xca\x35\x03\x05\xf4\xc2\xca\x0e\xe1\x7c\x72\x99\x25\xb8\xb8\xab\x2c\x09\x42\x7f\xd0\x0d\x0a\xdd\xbf\xbb\x7b\x09\x46\xee\xb4\x13\x7b\x7c\x25\xb8\x3c\x39\x6b\x06\x97\xd5\x5d\x27\xb5\x15\x34\xb4\xad\x7e\x79\xcf\xe4\x02\x8c\x49\x52\x34\xe8\x03\x5c\x2d\x3e\x81\x0c\x40\xf6\x3a\x72\x42\x7f\xed\xda\x1b\x18\xc9\x62\x10\x14\xa4\x55\xd2\x2b\xb1\x73\x14\xb2\x2e\x35\x04\x3f\x64\x09\x1a\x41\x56\xf7\x3d\x06\x4a\x62\xda\x46\x86\xfb\xcc\xf0\x8c\x3c\xc0\x9a\xc5\xfa\x4f\x4f\x5f\x7f\x7c\x63\x14\x9c\x97\x5b\xac\x18\x40\xab\x0d\x52\xfc\xb3\x82\x5e\x86\x5d\x05\x25\x86\xa6\xa4\x57\x0a\xd8\xa9\xd2\x23\x39\x73\x40\x55\x34\xce\xb6\x85\x2a\x67\x29\xd1\x53\x0a\xa5\x9a\xa9\x44\x4a\xa8\xc0\x3b\x17\x52\xb0\x73\x0a\x2b\xf8\xff\xf3\xe3\x63\xfa\x6c\x9c\x0d\x68\x43\x7a\x29\x1e\x6d\x8d\xb6\x58\xc1\x6f\x36\x77\xbe\xfe\x99\xdf\xda\xbc\x45\xbe\x7c\xff\x55\xdf\x9d\x62\x27\xb1\xed\x34\x46\xdd\x8f\x67\x38\x09\x4f\xf5\x9f\x82\xc5\x9e\x62\xe8\x81\x01\x6c\xfe\x63\x23\x63\x91\x78\x32\x28\x0f\xda\xee\xd1\x3f\xa3\x31\x22\x60\xd7\x1b\x19\x90\x03\x8f\xa9\xd9\xc8\xd9\xaa\x1f\x4c\xca\x00\x92\xd0\x35\xf0\xcc\x61\xe9\xbc\x71\x95\xbd\xbe\xca\x50\x0e\xdd\x9d\x16\x46\x1e\xa7\x35\x48\x5d\xc7\x61\x4d\x4f\x47\xad\xee\xf9\xdd\x29\x6a\x5d\xe4\xbd\x1a\xcb\x19\xa4\xb2\x35\x32\x34\xd2\xaf\xb4\xa5\x20\x8d\x29\x42\xd7\x1b\xfe\x90\x78\x02\xe8\xad\xd5\x41\x3b\x2b\xa2\xf2\x7a\xbb\x34\x4d\xae\x54\x64\x56\xeb\x05\x8f\x4d\x72\x41\x4e\xc8\xc3\xca\x2f\x88\xe9\x05\xf1\x2c\x09\xc5\xe0\xcd\xa4\xc0\x2d\x38\xe5\x3a\x12\x71\xf2\xda\xd9\xab\xe6\x3e\xc3\xf3\xed\x66\x27\xad\x45\x73\xeb\xf6\x04\x33\x80\xf1\xf6\xd0\x62\x4f\xad\x71\xc7\x7f\x1c\xda\x4e\x7a\x75\x94\x1e\xe3\x2e\x64\xb3\x9f\xb8\xc2\xb4\xfb\x9f\x78\x35\x0f\x53\xf7\x42\x2a\xe5\x91\x08\xe9\x42\xae\x91\x8f\x93\x9b\xe6\xa1\xa4\x55\xfb\xe8\xa1\x22\x92\xb9\x54\x5a\x2b\x36\xb2\xbf\x01\x00\x00\xff\xff\xf9\x40\xf2\xbd\x2c\x05\x00\x00"), }, "/terraform-modules/platforms/tinkerbell/workerpool/output.tf": &vfsgen۰FileInfo{ name: "output.tf", @@ -7145,9 +7163,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/worker/main.tf": &vfsgen۰CompressedFileInfo{ name: "main.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1446, + uncompressedSize: 1519, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\xc1\x6e\xeb\x36\x10\xbc\xeb\x2b\xa6\x6a\x80\x67\x03\xb6\xa4\xbc\x43\x0f\xc2\xd3\xeb\x29\x45\x7b\x69\x0b\xe4\x18\x04\x02\x4d\xad\x6d\xd6\x14\xa9\x92\xab\x24\x46\xea\x7f\x2f\x48\x49\xb6\x95\xf8\xe9\x24\xcc\xec\xcc\x72\x87\x4b\x6d\xa5\xd0\x1e\xef\x09\xd0\x0a\x23\x76\x54\x2b\x2f\xbd\x6a\x6a\x4f\xee\x45\x49\x42\x85\x6f\xdf\x1e\xfe\xfa\x2d\xf1\x47\xcf\xd4\x36\x65\x02\xf4\x46\xb1\x0f\x3f\xc0\x1a\x46\xb4\x54\x62\x10\x65\xa3\x28\x52\x00\x19\xb1\xd1\xd4\x94\x60\xd7\x4f\x58\xe3\x6c\xa7\xcc\xa8\xbe\xe8\x8b\x62\x3d\x5a\x48\x6b\xb6\x23\x09\x48\x6b\x98\x0c\xfb\x12\xff\x9d\x31\xe0\xe9\x71\x68\xf3\x7c\x85\x3d\xbc\x91\x7c\x64\xe1\xf8\x6f\x47\x55\xbe\x51\x26\xdf\x08\xbf\xc7\x5a\xe2\x0b\xc9\xbd\x45\xfa\x87\x51\xac\x04\x5b\xf7\xa7\x68\xa9\xba\x5b\xe4\x3e\x14\xc5\xa6\x6b\x15\x0e\x81\x75\x07\xf5\xaf\xc9\xbe\x16\x5f\x8b\x75\x71\x9f\x29\x9b\x1d\x94\x79\xb1\xfa\x50\x16\xf7\xcb\x14\xdf\x91\x13\xcb\x41\x91\xab\xc9\x2d\x28\xb3\x88\x7d\x49\x42\x4c\x09\x70\xe8\x37\x14\xa6\x50\xbb\x4b\x78\x6c\x9d\xd8\x51\x98\x7a\xab\x34\x9d\xc3\xeb\x04\xef\xcb\xc1\x37\xa8\x9c\x21\x26\x9f\x5f\x0c\xc6\x01\xa3\x26\xe6\x5f\xc2\x59\xcb\x23\xdc\xda\x26\x44\xf7\x4b\x51\x24\x1f\xe2\x3a\x07\xa3\x8c\x56\x86\xe6\xf1\xdd\xbd\x2b\xd3\x90\xe1\xc5\x7d\xb1\x42\xbc\xff\x6c\x63\x2d\x7b\x76\xa2\xab\x2f\xbd\x97\xa7\x69\x20\x6f\x54\xd7\x11\x7b\x54\x78\x8a\x3e\x83\xe8\xe6\xbe\xac\xae\x0a\x2e\x5e\x01\x7d\x4e\x4e\x49\xd2\x08\x16\x48\x25\xd7\x03\x9e\x22\x9d\x7e\xc2\x06\x76\x8e\x98\x8f\x75\xe7\x94\x61\x54\xd8\x0a\xed\x29\x1c\x60\x9c\x0b\x15\x98\xda\x4e\x0b\xa6\x90\xc8\x22\xbd\x7b\x0f\x01\x66\xad\x6d\x7a\x4d\xa7\x7c\x22\x7d\x6e\x6c\x43\xd9\x51\xb4\x3a\xe3\xb6\xd3\xe9\x2a\xba\x03\xde\xef\xeb\x03\x1d\x3d\x3e\x7d\x15\xfe\xf1\xd6\x90\x91\xb6\xa1\xc5\x8b\x70\xd9\x54\xba\x8c\x42\xa9\x7b\xcf\xe4\xea\xc6\xf8\x69\xd0\x5a\x75\x83\x30\x54\xdf\xe6\xe7\x52\xdb\x0a\x65\x6a\xdf\x6f\xb7\xea\x0d\x37\xa4\xd7\x7c\x54\xee\xad\xe7\xe8\x38\x74\x9a\x9d\x36\x28\xaf\xf8\x58\x1f\xe2\xd6\xc4\x75\x63\xe5\x81\x5c\x4d\x6f\xec\x44\x2d\xdc\x2e\xde\xdb\xf0\x56\x7e\xc6\xef\xe4\x08\xaf\x04\x4f\x8c\x86\xb6\xa2\xd7\x0c\x2d\x36\xa4\x3d\xb6\xd6\xe1\xd5\xba\x03\x39\x84\xfc\x7c\x36\x73\x1d\x8b\x2a\x68\x32\x3b\xde\xc7\x90\xe6\xdc\x12\xdf\x51\xe0\x57\x7c\x66\x50\x8e\x17\x00\xa4\xf1\x6a\x2e\xcb\x9e\x29\x1b\x6f\x2b\x45\x85\x34\x8d\x45\xa7\x59\x5f\x16\xca\xc4\xd5\xbb\xb6\x1d\xc0\x64\x56\xa8\xda\xb0\x8d\xf1\x25\xcf\x8b\xaf\x88\x9f\x42\x93\x0f\x47\xbc\xa2\x4b\x98\x5e\xeb\x1b\xae\x2c\x76\xb8\xe9\x1a\x88\x1f\x9b\x06\xf6\xec\x79\x5a\x7e\x78\x4b\xd2\x1a\x29\x78\x31\xbc\x95\x09\x5f\x8d\x4b\x21\xeb\x09\x59\x26\xa7\xe4\xff\x00\x00\x00\xff\xff\xb7\xd8\x82\xa7\xa6\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x4d\x8f\xdb\x36\x10\xbd\xeb\x57\xbc\xaa\x0b\xc4\x06\xd6\x92\x36\x87\x1e\x84\x28\x39\xa5\x68\x2f\x6d\x81\x1c\x83\x80\xa0\xa9\xb1\xcd\x9a\x22\x55\x72\xb4\xd9\x85\xab\xff\x5e\x90\x92\xfc\xb1\x71\x75\x12\xe6\xcd\x7b\x33\xf3\x66\x68\x9c\x92\x26\xe0\x94\x01\x9d\xb4\x72\x4f\x42\x07\x15\x74\x2b\x02\xf9\x67\xad\x08\x0d\x3e\x7c\xf8\xfc\xe7\xaf\x59\x78\x0d\x4c\x5d\x5b\x67\xc0\x60\x35\x87\xf8\x03\x6c\x60\x65\x47\x35\x26\x52\x31\x93\x12\x04\x90\x95\x5b\x43\x6d\x0d\xf6\xc3\x12\x6b\xbd\xeb\xb5\x9d\xd9\x17\x7e\x55\x6d\x66\x09\xe5\xec\x6e\x06\x01\xe5\x2c\x93\xe5\x50\xe3\xdf\x73\x0c\xf8\xfa\x65\x2a\xf3\xed\x2a\xf6\xf9\x85\xd4\x17\x96\x9e\xff\xf2\xd4\x94\x5b\x6d\xcb\xad\x0c\x07\x6c\x14\xde\x91\x3a\x38\xe4\xbf\x5b\xcd\x5a\xb2\xf3\x7f\xc8\x8e\x9a\x87\x55\x19\x62\x52\x2a\xba\xd1\xb1\x09\x6c\x7a\xe8\x7f\x6c\xf1\xbe\x7a\x5f\x6d\xaa\xa7\x42\xbb\xe2\xa8\xed\xb3\x33\xc7\xba\x7a\x5a\xe7\xf8\x88\x92\x58\x4d\x8c\x52\x2f\x6a\x91\x59\xa4\xd8\xbb\x2c\xda\x94\x01\xc7\x61\x4b\x71\x0a\xbd\xbf\x98\xc7\xce\xcb\x3d\xc5\xa9\x77\xda\xd0\xd9\xbc\x5e\xf2\xa1\x9e\x74\x23\xcb\x5b\x62\x0a\xe5\x45\x60\x1e\x30\x71\x92\xff\x35\xbc\x73\x3c\x87\x3b\xd7\x46\xeb\x7e\xa9\xaa\xec\x8d\x5d\x67\x63\xb4\x35\xda\xd2\xad\x7d\x0f\x27\x6d\x5b\xb2\xbc\x7a\xaa\x1e\x91\xf6\x5f\x6c\x9d\xe3\xc0\x5e\xf6\xe2\x52\x7b\x3d\x2e\x03\x05\xab\xfb\x9e\x38\xa0\xc1\xd7\xa4\x33\x91\xee\xde\xcb\xe3\x55\xc2\x45\x2b\x46\xbf\x65\x63\x96\xb5\x92\x25\x72\xc5\x62\x8a\xe7\xc8\x97\x9f\x78\x81\xbd\x27\xe6\x57\xd1\x7b\x6d\x19\x0d\x76\xd2\x04\x8a\x0d\xcc\x73\xa1\x01\x53\xd7\x1b\xc9\x14\x1d\x59\xe5\x0f\xa7\x68\x60\xd1\xb9\x76\x30\x34\x96\x0b\x18\x4a\xeb\x5a\x2a\x5e\x65\x67\x0a\xee\x7a\x93\x3f\x26\x75\x20\x84\x83\x38\xd2\x6b\xc0\x0f\x5f\x83\xbf\x83\xb3\x64\x95\x6b\x69\xf5\x2c\x7d\xb1\xa4\xae\x13\x51\x99\x21\x30\x79\xd1\xda\xb0\x0c\x2a\x74\x3f\x11\x63\xf6\x7d\xfc\x96\xea\x3a\xa9\xad\x08\xc3\x6e\xa7\x5f\x70\x87\x7a\x8d\x27\x66\xb4\xcf\x10\x8b\xd6\xa9\x23\x79\x41\x2f\xec\xa5\x90\x7e\x9f\xf6\x30\xdd\xfe\xc1\x05\x4e\xb7\x7b\x67\xa0\x34\x05\xb1\x08\x2c\x6d\x2b\x7d\x2b\xce\xc9\x4d\x93\x5e\x24\x3e\x21\x7f\x38\x5d\xf7\x10\xd1\x71\xf3\xdd\xf9\x23\xf9\xcd\x0c\xb9\xc1\xb2\x88\x07\xf3\x32\xe6\xa8\x91\xe7\xa9\xf0\xcf\xf8\x8d\x3c\xe1\x3b\x21\x10\xa3\xa5\x9d\x1c\x0c\xc3\xc8\x2d\x99\x80\x9d\xf3\x98\x44\x10\x17\x11\x8a\x9b\x71\xe6\xa4\x06\x86\xec\x9e\x0f\xc9\xed\x5b\x6c\x8d\x8f\xa8\xf0\x09\x3f\x22\xa8\xe7\x4d\x02\x79\xda\xf1\xe5\xd5\x14\xda\xa5\xb5\xe7\x68\x96\x26\xc7\x9b\xba\x2c\xb5\x4d\x37\x7c\x2d\x3b\x05\xb3\x9b\x44\xdd\xc5\xb3\x9e\x9c\xba\x49\xbe\x02\x7e\x8a\x45\xde\xb4\x78\x05\xd7\xb0\x83\x31\x77\x54\x59\xee\x71\x57\x35\x02\xff\x2f\x1a\xd1\xb3\xe6\xb8\x7e\xf3\x28\x95\xb3\x4a\xf2\x6a\x7a\x74\x4b\xfc\x71\xbe\x2e\x25\x96\xc8\x3a\x1b\xb3\xff\x02\x00\x00\xff\xff\xd5\xb0\x27\xe9\xef\x05\x00\x00"), }, "/terraform-modules/worker/output.tf": &vfsgen۰CompressedFileInfo{ name: "output.tf", @@ -7170,16 +7188,16 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/worker/templates/node.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "node.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5698, + uncompressedSize: 5936, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x5f\x8f\xdb\xb8\x11\x7f\xcf\xa7\xe0\xf9\x5c\x38\x01\x42\xeb\xb6\x48\xd3\x83\x7a\x3a\x60\x93\x75\x82\x20\x69\x12\x64\x37\xcd\xc3\x76\xcf\xa0\xa5\xb1\x3d\x67\x8a\xa3\x92\x23\x7b\x5d\xc7\xf7\xd9\x0b\xea\x8f\x57\x96\xe4\xed\x5e\x8a\xa2\x7d\x31\x4c\x72\xfe\x72\x86\xf3\x9b\x91\x94\xf2\x91\xdb\x3a\x86\x34\x09\x1f\x09\x91\x1b\x64\xe7\xff\x08\x21\x85\x51\x29\x84\x22\xa1\x78\x05\x76\xec\xc0\xae\x31\x86\xe2\x48\x08\x30\x6a\xa6\x21\x14\x6c\x73\x38\xa2\xd6\x14\xaf\x5c\x8a\xbc\x4c\x5a\x1c\xa9\x72\xab\x1e\xfa\x8d\x42\x96\x73\xb2\x32\x31\xee\xdf\xe9\x10\x22\x26\xc3\x60\xd8\x85\xe2\x6b\xb5\x23\xc4\xf5\x67\x83\x7c\x73\x58\x5e\x80\x8b\x2d\x66\x8c\x64\xa2\x2f\x0a\x59\xcc\xc9\x8a\x8b\xf7\x97\x02\x0c\x5b\x04\x77\x20\xfc\xa2\x0c\xbb\xa8\xf2\x5d\x5a\x70\xa4\xd7\xd0\xb6\x5a\x88\x17\x30\x27\x0b\xd1\x2a\x9f\x81\x06\xee\x1c\x5f\x5f\x96\x1b\x77\x06\x7c\x02\xc7\xca\x72\x44\x46\xce\x15\xea\xdc\x42\xfb\xe8\x12\xe2\xe8\x4f\x77\x86\x5c\x6d\x33\x88\xc8\x80\x5b\x12\x37\x48\x53\x85\xe6\x7c\xce\x60\x27\xb7\xc8\x51\xe3\x12\x84\x98\xdc\x42\x7c\x59\x28\x09\x66\x68\x02\xb7\x14\x32\x16\xa3\xcd\x12\x35\x88\xef\x44\x90\x3b\x5b\xec\x2f\x2c\x64\x62\xf4\xcb\xf5\x2f\xdf\x5f\x87\x2e\x53\x31\x84\x37\x37\x23\x11\x00\xc7\x41\xe9\xee\x38\x26\x33\x17\x3f\x8b\x20\x81\x75\x60\x72\xad\xff\x22\x12\x12\x4e\x03\x64\xe2\xcc\xff\x37\x30\xba\xf3\xf4\x8d\x71\xac\xb4\x6e\x7a\xfa\x8f\x1c\x2d\x24\x2f\xb6\xbd\xd7\x53\x87\xb8\xff\xea\xfe\xf3\xe8\xbe\x2d\xe5\xb6\x02\x6a\xb3\x58\x3a\x56\xdc\x8d\x64\x37\x54\x2f\xc9\x24\xe8\x65\x7d\x54\xbc\x9c\xdc\xa2\x63\x17\x15\xd7\xe3\x4d\xb6\x06\x18\x5c\xf1\xd7\x5f\x13\x2e\xee\xae\xdf\xac\xd1\x92\x49\xc1\xf0\x2b\xd4\xd0\xcb\xe2\x1d\x06\xb3\xee\x86\xec\xa3\x85\x32\x6a\xe9\x2a\x41\x2b\x64\x26\x82\xb5\xb2\x81\xc6\x59\xcd\x17\xac\x49\xe7\x29\x64\x3a\x5f\xa0\x71\x0f\x92\xd0\x32\x20\x55\x06\xe7\xe0\xf8\x14\x73\x9d\x20\x33\x55\xa6\xce\xa0\xcc\x94\x18\x2c\xe3\x1c\x63\xc5\x20\x55\xce\x4b\xb2\xc8\x5b\x99\x28\x56\xa3\x8e\x8a\xbb\x6b\x11\x5f\x85\xda\xac\xc4\x68\x97\x59\x34\x2c\x86\x7f\xdc\x8f\xc4\x57\x31\x53\x0e\x9e\x3f\x13\x32\xf1\xe9\xd5\xe2\x8d\xd5\x38\xb6\x3c\x38\x61\x5c\x9b\xb8\x50\x92\x5b\x90\xd5\xf5\xc8\x78\x61\x29\xcf\x64\x62\x71\x0d\xb6\x5f\x88\x2c\x8b\x96\xb0\xa9\x90\xf3\x3a\x01\xfb\x49\x6b\xca\xdc\x78\x63\xff\x7e\x20\x12\x42\x4a\x9f\xbf\x75\x6a\xb7\x8e\x6c\xf5\xca\x73\xa3\xc1\x39\xe9\x98\xb2\x0c\xda\xfc\x9a\x16\x95\x99\xd1\xaf\x94\x5b\xa3\x74\x47\x03\xf0\x86\xec\x2a\x5a\x92\x6b\x6b\xc8\x30\xe9\xdd\xb6\xb8\x46\x0d\x8b\xb6\xb2\x75\xf1\x8a\xc3\xe2\xc7\x6e\x3a\x67\xfe\x56\x63\x83\x81\x01\x1e\x27\x61\x6b\x69\xa9\x97\xfe\x2e\x0a\x61\x7b\x7d\x82\x23\x55\xf1\x12\x0d\x48\xac\x54\x34\xd6\x3d\x1c\x3e\xe7\x53\x4a\x72\xed\x15\x34\x17\x3d\xb4\x36\x37\x61\xf1\xd3\xe3\x9b\xdb\xba\xb0\xf8\xe9\x39\xa3\x8c\x0b\x47\x67\x68\xc2\xa3\x45\x8f\x0e\xff\x2c\xbc\x19\xe4\xa4\x05\x0d\xca\x41\xe9\x45\x63\xdd\xc3\x55\xbf\xde\x58\x69\x8c\x29\x6c\xaf\xef\xe3\x30\x18\x1e\x2d\x7a\xec\xaf\x8f\xcb\x34\x0d\xdb\xeb\x53\x1c\xb4\x08\x32\x4a\x5c\x78\xbc\x6a\x53\xcb\x94\x72\xc3\x82\x3d\x00\xcd\xd0\x24\x4f\x1d\xe5\x36\x86\x28\x48\x0d\x3f\x65\x65\x17\xc0\xe5\x7f\x7f\x28\x33\x4b\x99\x5a\xa8\xa2\xf6\x5a\xb7\x54\xb6\x93\xef\xa7\xc4\xb5\x0a\xdc\x41\x74\x7b\xff\x41\x6a\xfe\xb0\x2b\x20\x5d\xd9\x85\x40\x53\xbf\xed\x69\x79\x1f\x53\xb8\x65\xab\xa6\xca\x2e\x9c\xf8\x6d\xdf\x60\x1a\xee\x0a\x86\x7d\x5b\x12\x98\xc4\x0b\x3b\xa6\x1d\xee\xde\x7e\x7e\x31\x79\x37\xb9\x9a\xbe\xf9\xeb\xf9\xeb\xc9\xf4\xf3\xa7\x77\xfb\xb0\xb3\x7b\x75\xfe\x7a\xdf\xf2\x5f\x19\x32\xdb\x94\x72\x57\x94\xcf\x68\xae\xb4\x83\x36\x49\xce\x4b\x30\xec\x8b\x2c\x92\x91\x4c\x2b\x30\x72\x03\xb3\x25\xd1\xaa\x87\x94\x2c\xfe\xb3\xa4\x4c\x29\x81\xe8\x4b\x2f\x61\xac\x11\x0c\xcb\x58\xc9\x79\x1f\x1c\x95\xe5\xb6\xc3\x93\x3b\x06\x3b\x4d\x8c\x8b\x86\xbb\xc6\x6a\x5a\xc1\xe6\x14\xb3\xb6\x7b\x07\x2a\xf2\xbd\x49\x93\xad\xd8\x98\xba\x7c\x3e\xc7\xdb\x0e\x97\x41\xe9\x8b\xb8\x4c\xd0\x46\xc7\x85\xa7\x4d\x59\x94\xfa\x93\x70\x5a\xc1\xcd\x31\x0f\xdc\x22\x4b\x32\xd2\xf7\x9d\xb2\x6a\x20\x90\x4c\x8b\xea\x0e\xad\x3a\x49\xd7\x44\xb2\x63\xa6\x19\x11\x3b\xb6\x2a\x3b\x62\x3f\x8d\x83\x2d\x80\x20\xf6\x38\xda\xc0\x54\xd7\x41\x87\x78\x55\x45\xcc\xdb\x64\x73\x13\xf8\xad\x83\xbf\x7e\xd1\x0f\x17\xb2\xec\x0d\xa2\xd8\x60\x9b\x80\x12\x90\x5a\xcd\x40\xbb\x68\x38\xdc\xbd\xff\x70\x31\x99\xbe\x3b\x7f\x31\x79\x77\xd9\x0e\x4b\x46\x89\xac\xfb\x04\x99\x29\x5e\x76\x5c\x3b\x74\x11\x1d\xe8\x53\x89\x24\xa3\xb7\x32\x23\xcb\xd1\x0f\x9d\xe3\x05\xfa\xac\x90\x1b\xe4\xa5\x64\x85\xbe\x2b\xab\x6d\xb9\x3a\x7f\xf3\xfe\xaa\x63\x4b\xd9\xf0\x54\x5e\x95\x79\xf2\x3b\x7b\xa2\x1a\xc6\x35\x2d\xdc\x69\xc8\xa7\xac\xa6\xf3\x78\x7d\x92\xe8\x23\xb9\x83\x40\x9b\x76\xc8\xea\x06\x5f\xe9\x8d\xda\xba\xde\xe6\xfe\x9e\xa6\xd9\x77\xa9\x45\xcb\x9c\xe6\x9a\x51\xe6\x0e\xec\xb8\xac\x87\xc7\x53\x97\x57\x09\x45\x3c\xff\x2b\x63\x11\x9a\x85\x60\xaa\xd4\x88\xb7\x87\xa8\x0b\xaf\x51\x90\x11\x6e\x99\x73\x42\x1b\xf3\x7f\x35\xe9\xf4\x9c\x51\xd6\x49\xdc\xc6\xdd\x7d\x5b\x20\x1c\x93\x55\x0b\xf0\x73\xb0\x7f\x9f\x87\x81\xd8\x3f\x93\xb0\xb7\x15\x3e\x6e\xf7\x0b\xa6\x62\xb0\x0c\x85\xa5\x83\xaf\xbe\x84\x87\xe2\x87\xe7\xcf\x9e\xb5\xe3\x76\x30\x0a\x8d\x46\x03\xcd\x38\x0a\xd1\x01\xa3\x68\xb8\xab\x61\x0f\x53\xb5\x80\xa9\x4f\x99\xfd\x49\x8e\xab\xf3\xd7\x1d\x0e\x56\x8b\xd3\x0c\xe7\x9f\x5e\x5f\x46\x03\x5f\x5b\x21\x2e\x87\x05\x4d\xb1\xd2\x45\x04\x2a\x31\x83\x06\x73\xa3\xc8\x44\x83\xe1\xee\x57\x42\xf3\x78\xf0\x74\xf0\x54\x5c\x7b\x68\x5d\x3d\x15\xeb\x26\x50\x97\xc5\x49\x84\x62\x30\xdc\xad\xf6\xd1\x70\xb7\xde\x0f\x6e\x9e\xec\x3b\x02\xcb\x4a\xf1\x00\x81\x65\x85\x39\x21\xf0\x28\x66\x6e\xeb\x62\xd6\xe3\x24\x48\xd5\x6d\x11\x6f\xb9\x51\x1c\x2f\xc1\x15\xd0\x72\x7f\xec\x1e\x16\xaa\xb9\x1b\xa3\x21\xc6\xf9\x76\x9c\xaa\xdb\xa9\xd7\x31\xad\x74\x44\x67\xcf\xcf\x7e\x7c\x76\x6f\x22\x3d\x6c\xd4\xb9\x3f\xb9\xfe\xfc\x3b\x93\xeb\xfb\xef\x0e\x93\x60\x63\xd7\x01\x0b\x09\x8d\x0d\x5f\xf3\x7d\xc9\xaf\xbe\x06\x4d\x4b\xc3\xa6\xd5\x70\x33\x18\x3e\xae\xca\x25\x9a\x39\xf9\xfa\x3b\xda\xed\xc6\x2f\x0b\x9a\x8b\x82\x64\xbf\x1f\x3d\x69\x86\x38\x56\x2c\x7e\xfa\x69\xf2\xe1\x95\xf8\xf9\x7e\xb8\x6f\xf0\xa8\x0c\xff\x06\xd6\x21\x99\xbb\x6f\x0a\x25\xd1\x78\xf5\xa3\x1b\x23\x05\xeb\xb3\x19\xb0\x3a\x6b\xf0\xac\xd0\x24\xa1\xa8\xbe\x14\xbc\xac\xee\xb7\x68\xa8\x9a\xc6\x34\x0c\xf5\x69\x34\xdc\xf5\x79\x79\x94\xa2\x93\x0f\xaf\xee\x0d\x65\xb7\x04\xfd\x4f\xc2\xe6\x5f\xb0\x68\x4c\xb8\x4d\xd8\xbd\x77\xfc\xfc\x96\x21\xf0\x78\x60\xa9\x22\x14\x76\x36\xba\x5c\x12\x0c\xdb\x6d\x46\x68\xb8\xaf\xdc\xc4\xac\x5b\x1c\xbd\xf5\x2f\xec\xab\x71\x1d\x55\x0f\xec\x04\x2b\x5c\x2c\xc0\x70\xf8\xd8\x5f\x8f\xd7\xf1\xa4\xb7\xa6\x30\xa4\x49\x70\xf8\x7e\xe8\x05\x8c\x93\xa0\xee\xa4\xc1\x3e\xa4\xba\x7c\x23\x32\x5c\x7f\x2a\xb5\xde\x34\xf6\x2e\xde\x5f\x46\xc3\x9d\xb7\xb8\xe8\xe6\x31\x6b\xd6\xf9\x8b\xa2\x51\x77\xd1\x6f\xe3\x47\x99\x72\x6e\x53\x7e\xf3\x75\x60\x5b\xdf\x7c\x63\x3a\x60\xb9\x73\xcb\x69\x3d\x89\x40\x32\x5d\xc1\xd6\x85\x62\xb8\xf3\xdb\xfe\xff\xfe\xd1\xbf\x02\x00\x00\xff\xff\x87\x17\x01\x9b\x42\x16\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xdd\x8f\xd3\x48\x12\x7f\xe7\xaf\x28\xbc\x59\x0d\x48\xd3\xc9\xcc\x1d\xcb\xad\x7c\xeb\x95\x06\x08\x08\xc1\x01\x62\x86\xe3\x81\x63\xa3\x8e\x5d\x49\x9a\xb4\xbb\x7c\xdd\xe5\x64\xb2\x21\xfb\xb7\x9f\xda\x1f\x19\xc7\x76\xe6\x86\x3d\xad\x6e\x5f\x2c\x77\x77\xfd\xba\x3e\x5d\x1f\x16\x42\xdc\x73\x1b\xc7\x98\x26\xe1\x3d\x80\xdc\x28\x76\xfe\x05\x40\x80\x91\x29\x86\x90\x50\xbc\x44\x3b\x74\x68\x57\x2a\xc6\xe2\x08\x00\x8d\x9c\x6a\x0c\x81\x6d\x8e\x07\xd4\x9a\xe2\xa5\x4b\x15\x2f\x92\x16\x22\x95\x6e\xd9\x43\xbf\x96\x8a\xc5\x8c\xac\x48\x8c\xfb\x6f\x3c\x00\x62\x32\x8c\x86\x5d\x08\x5f\xab\x1d\x80\x4f\x1f\x8c\xe2\xcf\xfb\xe5\x33\x74\xb1\x55\x19\x2b\x32\xd1\x47\xa9\x18\x66\x64\xe1\xd9\x9b\x4b\x40\xc3\x56\xa1\xdb\x13\x7e\x94\x86\x5d\x54\xe9\x2e\x2c\x3a\xd2\x2b\x6c\x4b\x0d\xf0\x04\x67\x64\x31\x5a\xe6\x53\xd4\xc8\x9d\xe3\x4f\x97\xe5\xc6\x8d\x00\xef\xd1\xb1\xb4\x1c\x91\x11\x33\xa9\x74\x6e\xb1\x7d\x74\x89\x71\xf4\xc3\x8d\x20\x57\x9b\x0c\x23\x32\xe8\x16\xc4\x0d\xd2\x54\x2a\x73\x31\x63\xb4\xe3\x6b\xc5\x51\xc3\x08\x00\xe3\x6b\x8c\x2f\x0b\x26\xa3\xa9\x32\x23\xb7\x00\x11\xc3\xc9\x7a\xa1\x34\xc2\x7d\x18\xe5\xce\x16\xfb\x73\x8b\x19\x9c\xfc\xf2\xe9\x97\xef\x3e\x85\x2e\x93\x31\x86\x9f\x3f\x9f\xc0\x08\x39\x1e\x95\xea\x0e\x63\x32\x33\xf8\x19\x46\x09\xae\x46\x26\xd7\xfa\xef\x90\x10\x38\x8d\x98\xc1\xb9\x7f\x37\x78\x72\xa3\xe9\x4b\xe3\x58\x6a\xdd\xd4\xf4\xdf\xb9\xb2\x98\x3c\xd9\xf4\x9a\xa7\x76\x71\xbf\xe9\xfe\x77\xef\xbe\x2a\xef\x6d\x39\xd4\x66\xb1\x70\x2c\xb9\xeb\xc9\xae\xab\x9e\x92\x49\x94\xbf\xeb\x9d\xe4\xc5\xf8\x5a\x39\x76\x51\x61\x1e\x2f\xb2\x35\xc8\xe8\x8a\x57\x6f\x26\x35\xbf\x31\xbf\x59\x29\x4b\x26\x45\xc3\xcf\x95\xc6\x5e\x88\x57\x18\xcd\xaa\xeb\xb2\x77\x16\x4b\xaf\xa5\xcb\x44\x59\x10\x19\x8c\x56\xd2\x8e\xb4\x9a\xd6\xb8\xd1\x8a\x74\x9e\x62\xa6\xf3\xb9\x32\xee\x4e\x37\xb4\x04\x48\xa5\x51\x33\x74\x7c\x0c\x5c\x07\xc8\x54\x96\xa1\x13\x94\x91\x12\xa3\x65\x35\x53\xb1\x64\x14\x32\xe7\x05\x59\xc5\x1b\x91\x48\x96\x27\x1d\x16\x37\x66\x81\xaf\x20\xd7\x4b\x38\xd9\x66\x56\x19\x86\xc1\x5f\x76\x27\xf0\x15\xa6\xd2\xe1\xe3\x47\x20\x12\x1f\x5e\x2d\x6c\x2c\x87\xb1\xe5\xe0\x88\x70\x6d\xe2\x82\x49\x6e\x51\x54\xe6\x11\xf1\xdc\x52\x9e\x89\xc4\xaa\x15\xda\xfe\x4b\x44\x99\xb4\xc0\xa6\x20\x66\x75\x00\xf6\x93\xd6\x94\xb9\xf1\xc2\xfe\x6b\x4f\x04\x20\x84\x8f\xdf\x3a\xb4\x5b\x47\xb6\xfa\xca\x73\xa3\xd1\x39\xe1\x98\xb2\x0c\xdb\x78\x4d\xf3\x4a\xcc\xe8\x0b\xe5\xd6\x48\xdd\xe1\x80\xbc\x26\xbb\x8c\x16\xe4\xda\x1c\x32\x95\xf4\x6e\x5b\xb5\x52\x1a\xe7\x6d\x66\xab\xe2\x2b\x0e\x8b\x87\x5d\x77\xce\xbc\x55\x63\xa3\x46\x06\x79\x98\x84\xad\xa5\xa5\x5e\xfa\x1b\x2f\x84\xed\xf5\x11\x44\x2a\xe3\x85\x32\x28\x54\xc5\xa2\xb1\xee\x41\xf8\x98\x4f\x29\xc9\xb5\x67\xd0\x5c\xf4\xd0\xda\xdc\x84\xc5\xa3\x47\x37\xb7\x71\x61\xf1\xe8\x39\xa3\x8c\x0b\x45\xa7\xca\x84\x07\x8b\x1e\x1e\xfe\xb3\xf0\x62\x90\x13\x16\x35\x4a\x87\xa5\x16\x8d\x75\x0f\xaa\xfe\x7a\x63\xa9\x55\x4c\x61\x7b\x7d\x1b\xc2\xa8\xf0\x60\xd1\x23\x7f\x7d\x5c\x86\x69\xd8\x5e\x1f\x43\xd0\x7c\x94\x51\xe2\xc2\xc3\x55\x9b\x5a\xa4\x94\x1b\x06\xf6\x05\x68\xaa\x4c\x72\xea\x28\xb7\x31\x46\xa3\xd4\xf0\x29\x4b\x3b\x47\x2e\xdf\xfd\xa1\xc8\x2c\x65\x72\x2e\x8b\xdc\x6b\xdd\x42\xda\x4e\xbc\x1f\xbb\xae\x95\xe0\xf6\x57\xb7\xf7\xef\xc4\xe6\xfb\x6d\x51\xd2\xa5\x9d\x83\x32\xf5\xb7\x3d\x29\xed\x31\xc1\x6b\xb6\x72\x22\xed\xdc\xc1\x6f\xbb\x06\x68\xb0\x2d\x00\xbb\xf6\x4d\x68\x12\x7f\xd9\x21\xed\x60\xfb\xea\xc3\x93\xf1\xeb\xf1\xd5\xe4\xe5\x3f\x2e\x5e\x8c\x27\x1f\xde\xbf\xde\x85\x9d\xdd\xab\x8b\x17\xbb\x96\xfe\xd2\x90\xd9\xa4\x94\xbb\x22\x7d\x46\x33\xa9\x1d\xb6\x49\x72\x5e\xa0\x61\x9f\x64\x15\x19\xc1\xb4\x44\x23\xd6\x38\x5d\x10\x2d\x7b\x48\xc9\xaa\x5f\x4b\xca\x94\x12\x8c\x3e\xf6\x12\xc6\x5a\xa1\x61\x11\x4b\x31\xeb\x2b\x47\x65\xba\xed\x60\x72\xc7\x68\x27\x89\x71\xd1\x60\xdb\x58\x4d\xaa\xb2\x39\x51\x59\x5b\xbd\x3d\x15\xf9\xde\xa4\x09\x2b\x36\x26\x2e\x9f\xcd\xd4\x75\x07\x65\x94\xf0\x49\x5c\x24\xca\x46\x87\x89\xa7\x4d\x59\xa4\xfa\xa3\xe5\xb4\x2a\x37\x87\x18\xbc\x56\x2c\xc8\x08\xdf\x77\x8a\xaa\x81\x50\x64\x5a\x54\x37\xd5\xaa\x13\x74\xcd\x4a\x76\x08\x9a\x12\xb1\x63\x2b\xb3\x03\xf8\xf1\x3a\xd8\x2a\x10\xc4\xbe\x8e\x36\x6a\xaa\xeb\x54\x87\x78\x59\x79\xcc\xcb\x64\x73\x33\xf2\x5b\x7b\x7d\xfd\xa2\xbf\x5c\x88\xb2\x37\x88\x62\xa3\xda\x04\x94\xa0\xd0\x72\x8a\xda\x45\x83\xc1\xf6\xcd\xdb\x67\xe3\xc9\xeb\x8b\x27\xe3\xd7\x97\x6d\xb7\x64\x94\x88\xba\x4f\x10\x99\xe4\x45\x47\xb5\x7d\x17\xd1\x29\x7d\x32\x11\x64\xf4\x46\x64\x64\x39\x3a\xeb\x1c\xcf\x95\x8f\x0a\xb1\x56\xbc\x10\x2c\x95\xef\xca\x6a\x59\xae\x2e\x5e\xbe\xb9\xea\xc8\x52\x36\x3c\x95\x56\x65\x9c\x7c\x63\x4f\x54\x97\x71\x4d\x73\x77\xbc\xe4\x53\x56\xd3\xf9\x7a\x7d\x94\xe8\x1d\xb9\xfd\x85\x36\xed\x90\xd5\x0d\xbe\xd4\x6b\xb9\x71\xbd\xcd\xfd\x2d\x4d\xb3\xef\x52\x8b\x96\x39\xcd\x35\x2b\x91\x3b\xb4\xc3\x32\x1f\x1e\x4e\x5d\x9e\x25\x16\xfe\xfc\x43\xc6\x22\x65\xe6\xc0\x54\xb1\x81\x57\x7b\xaf\x83\xe7\x08\x64\xc0\x2d\x72\x4e\x68\x6d\xfe\x54\x93\x4e\xcf\x19\x65\x9d\xc0\x6d\xd8\xee\xf7\x39\xc2\x31\x59\x39\x47\x3f\x07\xfb\xef\x73\x3f\x10\xfb\xcf\x24\xec\x6d\x85\x0f\xdb\xfd\x02\x54\x0c\x96\x21\x58\xda\xeb\xea\x53\x78\x08\x67\x8f\x1f\x3d\x6a\xfb\x6d\x2f\x94\x32\x5a\x19\x6c\xfa\x11\xa0\x53\x8c\xa2\xc1\xb6\x2e\x7b\x2a\x95\x73\x9c\xf8\x90\xd9\x1d\x45\x5c\x5d\xbc\xe8\x20\x58\xce\x8f\x03\x2e\xde\xbf\xb8\x8c\x02\x9f\x5b\x31\x2e\x87\x05\x4d\xb1\xd4\x85\x07\xaa\x6b\x82\x06\xb8\x91\x64\xa2\x60\xb0\xfd\x42\xca\x3c\x08\x4e\x83\x53\xf8\xe4\x4b\xeb\xf2\x14\x56\xcd\x42\x5d\x26\x27\x08\x21\x18\x6c\x97\xbb\x68\xb0\x5d\xed\x82\xcf\x0f\x77\x9d\x0b\xcb\x4c\x71\x87\x0b\xcb\x0c\x73\xe4\xc2\x03\x9f\xb9\x8d\x8b\x59\x0f\x93\x51\x2a\xaf\x0b\x7f\x8b\xb5\xe4\x78\x81\xae\x28\x2d\xb7\xfb\xee\x6e\xae\x9a\xb9\xa1\x32\xc4\x6a\xb6\x19\xa6\xf2\x7a\xe2\x79\x4c\x2a\x1e\xd1\xf9\xe3\xf3\x1f\x1f\xdd\x1a\x48\x77\x1b\x75\x6e\x0f\xae\xbf\x7d\x63\x70\x7d\x77\x7f\x3f\x09\x36\x76\x1d\x32\x08\x6c\x6c\xf8\x9c\xef\x53\x7e\xf5\x37\x68\x52\x0a\x36\xa9\x86\x9b\x60\xf0\xa0\x4a\x97\xca\xcc\xc8\xe7\xdf\x93\xed\x76\xf8\xb4\xa0\x79\x56\x90\xec\x76\x27\x0f\x9b\x2e\x8e\x25\xc3\x4f\x3f\x8d\xdf\x3e\x87\x9f\x6f\x2f\xf7\x0d\x8c\xcc\xd4\x3f\xd1\x3a\x45\xe6\xe6\x9f\x42\x49\x34\x5c\xfe\xe8\x86\x8a\x46\xab\xf3\x29\xb2\x3c\x6f\x60\x96\xca\x24\x21\x54\x7f\x0a\x9e\x56\xf6\x2d\x1a\xaa\xa6\x30\x0d\x41\x7d\x18\x0d\xb6\x7d\x5a\x1e\x84\xe8\xf8\xed\xf3\x5b\x5d\xd9\x4d\x41\xff\x17\xb7\xf9\x2f\x18\x1a\x13\x6e\xb3\xec\xde\x3a\x7e\xfe\x9e\x21\xf0\x70\x60\xa9\x3c\x14\x76\x36\xba\x28\x81\x86\xed\x26\x23\x65\xb8\x2f\xdd\xc4\xac\x5b\x88\xde\xfc\x17\xf6\xe5\xb8\x0e\xab\x3b\x76\x82\x55\x5d\x2c\x8a\xe1\xe0\x81\x37\x8f\xe7\xf1\xb0\xeb\xf3\xd2\xb8\xa3\x44\x62\x4a\x66\xf8\xc5\xed\x03\xeb\x76\x7f\xff\x70\x76\xf6\x4d\xfe\xde\x1e\xa8\x11\x68\xb5\xc2\xe2\x17\x04\x59\x0c\xca\x56\xe0\xb4\x45\x41\x73\x41\x19\xbb\x20\x6c\x61\x01\x02\x9f\xfe\x9c\xfa\xd5\x23\x83\xf3\xb3\xb3\x34\x38\xed\xa3\xf0\x0a\x78\x8a\xbf\x06\x07\xa7\xcd\xb2\x51\xbe\x7f\xbf\xfd\x0d\xd4\x0c\x6a\x23\xc1\xfd\x08\x82\xa0\x1e\xa9\x0e\x8c\x55\x93\xfc\x21\x65\x72\xb0\xad\xaf\xbf\x11\x0b\x4d\xa2\x66\x5e\x94\x4c\x3a\xb7\x2e\xff\x70\x3b\xb4\xad\x3f\xdc\x31\xed\x3b\x17\xe7\x16\x93\x7a\xee\xc2\x64\xb2\xc4\x8d\x0b\x61\xb0\xf5\xdb\xfe\x7d\x77\xef\x3f\x01\x00\x00\xff\xff\x14\x16\xad\x09\x30\x17\x00\x00"), }, "/terraform-modules/worker/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1995, + uncompressedSize: 2112, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x95\xdf\x6f\xe2\x46\x10\xc7\xdf\xf9\x2b\x46\xbe\x87\x6b\xa5\xf3\x1e\x5c\xae\xa7\xaa\x52\x1e\x28\x97\xaa\x55\x4f\x24\x0a\x7d\x2b\x95\x33\xec\x8e\xcd\x88\xf5\xae\xb3\x3f\x68\x22\x94\xff\xbd\x5a\xdb\x44\x49\x70\x5a\x48\xe1\x05\xd9\x3b\xdf\xf9\xcc\xec\x77\x86\x77\x70\x4d\xb7\x91\x1d\x29\xd8\xa2\x63\x5c\x69\xf2\x62\xb4\xff\x09\x99\xc4\x42\x92\x0b\x19\xec\x46\x00\xe1\xbe\x21\xe8\x3f\xe7\xe0\x83\x63\x53\x8d\x00\x14\x79\xe9\xb8\x09\x6c\x0d\x9c\x43\xf6\x7b\x5c\x91\x33\x14\xc8\xc3\x6c\x0a\x29\x9a\x4b\x96\x18\x08\x0c\x91\x22\x05\x6c\x20\xac\x09\x36\x71\x45\xd2\x9a\x92\x2b\x28\x59\x93\xc8\x46\x0f\xa3\x27\x99\xb1\x61\x4f\x6e\x4b\xee\x94\xdc\xd3\x7d\x10\x34\x8e\xb7\x29\x27\x19\xd5\x58\x36\xe1\x98\xe4\xef\xe0\xb2\x55\x42\x3d\xdc\x0c\xef\xd7\xc5\x86\xee\xfd\x10\x91\x66\x1f\xbe\xeb\xb0\xbe\x3f\xe4\xfa\xc6\x3e\x80\x2d\x61\xb1\xf8\x15\x9a\xb8\xd2\x2c\x21\x09\x41\x69\x1d\x44\x4f\x0e\x6e\xa4\x75\x74\x23\xe0\x02\xe5\x1a\x48\x53\x4d\x26\x40\x1d\x7d\x80\x15\x81\x6f\x48\x72\xc9\x1d\x3d\xc2\x16\x35\x2b\xb8\x6c\xc8\x3c\x97\x4b\x6a\x35\x86\x0f\x80\x1e\x14\x95\x6c\xba\x80\xeb\x5f\x66\xf0\xf9\xd3\x0f\x67\xb0\x20\xd9\xf2\x7c\x11\x5f\x3e\x00\x89\x4a\xc0\x7b\xef\xd7\xb9\xf3\x08\xd3\xe9\x74\xfa\xf3\xd9\x5c\x08\xf1\x5e\x64\x2d\x7e\x89\x51\x87\xbe\xb6\x3f\xff\x7a\x7e\x35\xd2\x46\x13\x0a\x36\x8a\xee\x86\x5a\x61\x62\xbd\x22\x77\xd8\x84\x79\xfb\x3c\xb5\xc1\x58\x45\x1e\x82\x05\xe9\x08\x03\x0d\xa4\x9c\xbc\xc8\xa8\xa3\x0f\xe4\x0a\x65\x7c\x91\x2e\x98\x25\x15\xdc\x9c\xe2\x8c\xdf\xae\x00\x95\x72\xe4\x7d\x02\xe8\xf5\xe0\xeb\x7c\x01\x8b\x4e\x4f\xc0\x15\x7a\x4f\x2a\x61\x25\x77\x68\x0a\xa9\x91\x79\xfe\x24\x37\x34\xe8\xb0\xa6\x40\x6e\x00\x39\x9b\x8c\xc5\x99\x18\x8b\xc9\x38\x7b\x09\x2f\x0b\x6f\xb8\x69\x28\xbc\xc1\x3a\x17\x77\xc1\x21\xcc\xbe\xcd\x60\xaf\x91\x08\xd9\x48\x1d\x15\xed\xed\xdc\x59\x39\x3a\x4c\x51\x47\xdc\x60\x5f\x60\xc1\x35\x56\x54\x18\xac\xe9\x94\x5e\x2e\x6c\x74\x92\x52\x1f\xf7\x8d\xfa\x6a\xe5\x86\x1c\xb4\x72\x43\xad\xb9\x8d\x78\x2f\xd8\x7e\xdc\xb0\xd9\x5a\xbd\xf9\xd8\xc7\x65\xff\x46\x15\xb0\x3a\x05\xea\x0f\xac\xda\x71\x3a\x16\x69\x3b\x11\x9f\xc6\xe2\xf3\x2b\x08\x01\xd9\x0c\xdf\x56\x8d\xcd\xeb\x97\x35\xb7\x8a\xa0\x8b\x85\xe6\xc0\x4e\x79\xee\xa8\xe2\x64\xa6\xfc\x6f\x0e\xeb\xbc\x3f\x58\x6a\xac\x04\x5c\xa4\x81\xdc\xa5\x39\x9e\xc0\x39\x2c\xb3\x2d\xea\x48\x93\x9f\xe6\x76\x21\xd7\xa4\xa2\xa6\x65\x06\x0f\x87\x75\xec\x1e\x86\x0b\xd0\xb8\x22\xfd\xc6\x02\xba\xd8\xc1\x02\xd2\xe4\xe6\xfd\xfb\x67\xdc\x3b\x58\x66\xe9\xa5\xd8\x3c\xae\xff\x74\xe1\xe9\xd1\x32\x6b\x0b\x3a\x8e\xff\x71\xda\x6c\x8d\x6c\x0a\x1f\xcb\x92\x07\xb7\xcc\x6b\x3e\x98\xf5\xa3\xdd\x09\x40\x27\xf0\xdf\xc3\xdd\x9d\x6e\x4b\x1a\x30\x4b\x7f\x4c\x68\x2b\x51\xbf\xb0\xcc\xda\xfa\xd0\x2e\xa6\xff\xb3\x90\xd2\x22\xea\xff\xb9\xd2\x5a\xec\xc7\x99\xc0\x76\xf3\xdd\x2e\xcc\x21\xb0\x1f\x45\xfb\x4d\x48\xff\x04\x00\x00\xff\xff\xa8\xfb\x06\x91\xcb\x07\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x5d\x8f\x13\x37\x14\x7d\xcf\xaf\x38\x1a\x1e\x68\x25\xc6\x6c\x58\xca\x43\xc5\x22\xa5\x61\x2b\xaa\xa2\x80\x48\xdf\xba\xd5\x70\x63\xdf\x49\xac\x78\xec\xc1\x1f\x81\xd5\x6a\xff\x7b\xe5\x99\xc9\x76\x21\xb3\x25\x21\x4f\x91\xc7\xf7\xf8\x9c\x7b\xcf\xb1\x1f\xe1\x03\x7f\x4a\xda\xb3\xc2\x8e\xbc\xa6\x95\xe1\x20\x26\xfb\xbf\x28\x24\x55\x92\x7d\x2c\x70\x33\x01\xe2\x75\xcb\x18\x7e\x17\x08\xd1\x6b\xbb\x9e\x00\x8a\x83\xf4\xba\x8d\xda\x59\x5c\xa0\xf8\x33\xad\xd8\x5b\x8e\x1c\x30\x9f\x21\x57\xeb\x5a\x4b\x8a\x0c\xcb\xac\x58\x41\x5b\xc4\x0d\x63\x9b\x56\x2c\x9d\xad\xf5\x1a\xb5\x36\x2c\x8a\xc9\xed\xe4\xfe\xc9\x26\x85\xc8\xbe\xb2\xd4\xf0\x29\xc7\xcf\xfb\x3a\xe4\xba\x0e\xf3\x3f\x48\x6a\x75\x60\xbf\x63\x7f\x0a\xde\x6c\x5f\x84\xd6\xeb\x5d\x96\xc1\x56\xb5\x4e\xdb\x78\x8c\x9e\x47\x78\xd7\x21\x91\x19\xef\x6f\x08\x9b\x6a\xcb\xd7\x61\x8c\x91\xd1\x21\xfe\xd4\xd3\xfa\xf9\x90\xd7\x5b\x1d\x22\x5c\x8d\xe5\xf2\x0d\xda\xb4\x32\x5a\x22\x03\xa1\x76\x1e\x29\xb0\xc7\x47\xe9\x3c\x7f\x14\xb8\x24\xb9\x01\x1b\x6e\xd8\x46\x34\x29\x44\xac\x18\xa1\x65\xa9\x6b\xdd\xb3\x27\xec\xc8\x68\x85\x77\x2d\xdb\xaf\xe1\x32\x5a\x43\xf1\x09\x28\x40\x71\xad\x6d\x5f\xf0\xe1\xf7\x39\x9e\x3f\xfb\xe5\x1c\x4b\x96\x1d\x9f\x17\xe2\xc5\x13\xb0\x58\x0b\x3c\x0e\x61\x53\xfa\x40\x98\xcd\x66\xb3\xdf\xce\x17\x42\x88\xc7\xa2\xe8\xe8\xd7\x94\x4c\x1c\xb4\xfd\xfd\xcf\x37\xd3\x76\xc9\xc6\x4a\x5b\xc5\x5f\xc6\x5a\x61\x53\xb3\x62\x7f\xd8\x84\x45\xb7\x9e\xdb\x60\x9d\xe2\x80\xe8\x20\x3d\x53\xe4\x91\x23\xa7\xe3\xfe\x52\x36\x54\x79\xc0\x5a\x72\xa5\xdb\x53\x9c\xf1\xc7\x7b\x90\x52\x9e\x43\xc8\x04\x06\x3c\xbc\x5e\x2c\xb1\xec\xf1\x04\xde\x53\x08\xac\x32\xad\xec\x0e\xc3\x31\x37\xb2\x2c\xef\x9d\x8d\x96\x3c\x35\x1c\xd9\x8f\x50\x2e\xa6\x67\xe2\x5c\x9c\x89\xe9\xd9\x41\x38\x64\x15\xac\x6e\x5b\x8e\x3f\x60\x9d\xcb\x2f\xd1\x13\xe6\x6f\xe7\xd8\x63\x64\x86\xda\x4a\x93\x14\xef\xed\xdc\x5b\x39\x79\xca\x55\x47\x4c\x70\x10\x58\xe9\x86\xd6\x7c\x72\x6a\x97\x2e\x79\xc9\xb9\x8f\xfb\x46\xbd\x76\x72\xcb\x1e\x1d\xdc\x58\x6b\x3e\x25\xba\x16\xda\x3d\xdd\x6a\xbb\x73\x66\xfb\x74\xa8\x2b\xfe\x8f\x55\xa4\xf5\x29\xa4\xfe\xa2\x75\x17\xa7\x63\x29\xed\xa6\xe2\xd9\x99\x78\xfe\x00\x85\x48\xda\x8e\x4f\xab\xa1\xf6\xe1\x61\x2d\x9c\x62\xf4\xb5\x68\x0f\xec\x54\x96\x9e\xd7\x3a\x9b\xa9\xfc\xac\xe3\xa6\x1c\x36\xd6\x86\xd6\x02\x97\x39\x90\x37\x39\xc7\x53\x5c\xe0\xaa\xd8\x91\x49\x3c\xfd\x75\xe1\x96\x72\xc3\x2a\x19\xbe\x2a\x70\x7b\xa8\xe3\xe6\x76\x5c\x80\xa1\x15\x9b\x1f\x14\xd0\xd7\x8e\x0a\xc8\xc9\x2d\x87\xef\x5f\xf1\xbe\xc1\x55\x91\x3f\x8a\xed\xdd\x8b\x92\x07\x9e\x97\xae\x8a\x4e\xd0\x71\xfc\xef\xd2\xe6\x1a\xd2\xb6\x0a\xa9\xae\xf5\xe8\x2d\xf3\xbd\x27\xa5\x07\x40\x0f\xf0\xfd\x70\xf7\xbb\x3b\x49\x23\x66\x19\xb6\x09\xe3\x24\x99\x6f\x2c\x13\x38\x56\x21\x92\x55\xe4\x55\xb5\x71\x21\x3e\x14\xa7\x95\x73\x66\x24\x4c\x5d\xa2\x37\x8c\x7d\x29\x74\x8d\xe8\x13\x0b\xbc\xb9\x5b\x09\x08\x3d\xe3\x97\xf7\x5f\xda\x57\xe5\x67\xe7\xb7\xec\xcb\x97\xf7\x6e\xe4\x57\x87\xf4\x6b\x32\x81\x27\xb7\x93\x7f\x03\x00\x00\xff\xff\xe5\x13\xd1\x1f\x40\x08\x00\x00"), }, "/terraform-modules/worker/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -8278,6 +8296,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/dns"].(os.FileInfo), fs["/terraform-modules/google-cloud"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar"].(os.FileInfo), fs["/terraform-modules/node"].(os.FileInfo), fs["/terraform-modules/packet"].(os.FileInfo), fs["/terraform-modules/platforms"].(os.FileInfo), @@ -8366,20 +8385,14 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/LICENSE"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootstrap-configs.tf"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf"].(os.FileInfo), + fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf"].(os.FileInfo), + fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/outputs.tf"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/versions.tf"].(os.FileInfo), - } - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/bootstrap-kubeconfig.yaml.tmpl"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/controller.yaml.tmpl"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/worker.yaml.tmpl"].(os.FileInfo), + fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf"].(os.FileInfo), + fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf"].(os.FileInfo), } fs["/terraform-modules/bootkube"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/bootkube/.gitignore"].(os.FileInfo), @@ -8515,6 +8528,16 @@ var vfsgenAssets = func() http.FileSystem { 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/worker.yaml.tmpl"].(os.FileInfo), } + fs["/terraform-modules/matchbox-flatcar"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/terraform-modules/matchbox-flatcar/groups.tf"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/profiles.tf"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/templates"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/variables.tf"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/versions.tf"].(os.FileInfo), + } + fs["/terraform-modules/matchbox-flatcar/templates"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl"].(os.FileInfo), + } fs["/terraform-modules/node"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/node/README.md"].(os.FileInfo), fs["/terraform-modules/node/bootstrap-tokens.tf"].(os.FileInfo), diff --git a/pkg/platform/baremetal/baremetal.go b/pkg/platform/baremetal/baremetal.go index 5dd6afe09..08eb0077a 100644 --- a/pkg/platform/baremetal/baremetal.go +++ b/pkg/platform/baremetal/baremetal.go @@ -30,6 +30,9 @@ import ( "github.com/kinvolk/lokomotive/pkg/terraform" ) +// Labels represent the map of key value string pairs added the kubelet. +type Labels map[string]string + type config struct { AssetDir string `hcl:"asset_dir"` CachedInstall string `hcl:"cached_install,optional"` @@ -51,7 +54,8 @@ type config struct { WorkerNames []string `hcl:"worker_names"` WorkerMacs []string `hcl:"worker_macs"` WorkerDomains []string `hcl:"worker_domains"` - Labels map[string]string `hcl:"labels,optional"` + Labels Labels `hcl:"labels,optional"` + NodeSpecificLabels map[string]Labels `hcl:"node_specific_labels,optional"` OIDC *oidc.Config `hcl:"oidc,block"` EncryptPodTraffic bool `hcl:"encrypt_pod_traffic,optional"` IgnoreX509CNCheck bool `hcl:"ignore_x509_cn_check,optional"` @@ -233,7 +237,8 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { WorkerDomains string DisableSelfHostedKubelet bool KubeAPIServerExtraFlags []string - Labels map[string]string + Labels Labels + NodeSpecificLabels map[string]Labels EncryptPodTraffic bool IgnoreX509CNCheck bool CertsValidityPeriodHours int @@ -266,6 +271,7 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { DisableSelfHostedKubelet: cfg.DisableSelfHostedKubelet, KubeAPIServerExtraFlags: cfg.KubeAPIServerExtraFlags, Labels: cfg.Labels, + NodeSpecificLabels: cfg.NodeSpecificLabels, EncryptPodTraffic: cfg.EncryptPodTraffic, IgnoreX509CNCheck: cfg.IgnoreX509CNCheck, CertsValidityPeriodHours: cfg.CertsValidityPeriodHours, diff --git a/pkg/platform/baremetal/template.go b/pkg/platform/baremetal/template.go index 75c7cd2d4..40d3d6876 100644 --- a/pkg/platform/baremetal/template.go +++ b/pkg/platform/baremetal/template.go @@ -65,6 +65,20 @@ module "bare-metal-{{.ClusterName}}" { } {{- end}} + {{- if .NodeSpecificLabels}} + node_specific_labels = { + {{- range $nodeName, $mapOfLabels := .NodeSpecificLabels}} + {{- if $mapOfLabels }} + "{{$nodeName}}" = { + {{- range $key, $value := $mapOfLabels }} + "{{$key}}" = "{{$value}}", + {{- end }} + } + {{- end }} + {{- end }} + } + {{- end }} + ignore_x509_cn_check = {{.IgnoreX509CNCheck}} conntrack_max_per_core = {{.ConntrackMaxPerCore}} diff --git a/test/components/kubernetes/baremetal_kubelet_labels_test.go b/test/components/kubernetes/baremetal_kubelet_labels_test.go new file mode 100644 index 000000000..9166ac860 --- /dev/null +++ b/test/components/kubernetes/baremetal_kubelet_labels_test.go @@ -0,0 +1,82 @@ +// Copyright 2021 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. + +// +build baremetal +// +build e2e + +package kubernetes_test + +import ( + "context" + "testing" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + pkglabels "k8s.io/apimachinery/pkg/labels" + + testutil "github.com/kinvolk/lokomotive/test/components/util" +) + +func Test_Baremetal_NodeSpecificLabels(t *testing.T) { + // This map is copied from file ci/baremetal/baremetal-cluster.lokocfg.envsubst + // the field is `node_specific_labels`. + // The node name keys are constructed as follows: --. + // The labels include the labels common to every worker node derived from `labels` and + // labels specific to the node. + nodeNamesAndExpectedLabelsInCI := map[string]map[string]string{ + "mercury-controller-0": { + "testkey": "testvalue", + "node.kubernetes.io/master": "", + "node.kubernetes.io/controller": "true", + }, + "mercury-worker-0": { + "ingressnode": "yes", + "testing.io": "yes", + "roleofnode": "testing", + }, + "mercury-worker-1": { + "storagenode": "yes", + "testing.io": "yes", + "roleofnode": "testing", + }, + } + + client := testutil.CreateKubeClient(t) + + nodes, err := client.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{}) + if err != nil { + t.Fatalf("could not list nodes: %v", err) + } + + if len(nodes.Items) != len(nodeNamesAndExpectedLabelsInCI) { + t.Errorf("expected %d worker nodes, got: %d", len(nodeNamesAndExpectedLabelsInCI), len(nodes.Items)) + } + + for nodeName, labelsMap := range nodeNamesAndExpectedLabelsInCI { + labels := pkglabels.Set(labelsMap).String() + + nodes, err := client.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{ + LabelSelector: labels, + }) + if err != nil { + t.Errorf("expected node with name %q not found: %v", nodeName, err) + } + + // Currently we assume that the labels added to the node in CI are unique to the worker node. + // This check confirms that the expected set of labels as per CI configuration were + // present on the correct node. + if len(nodes.Items) == 1 && nodes.Items[0].Name != nodeName { + t.Errorf("expected node %q to have the labels %s", nodes.Items[0].Name, labels) + } + } +} diff --git a/test/components/kubernetes/kubelet_disruptive_test.go b/test/components/kubernetes/kubelet_disruptive_test.go index 16e71fe40..e95439148 100644 --- a/test/components/kubernetes/kubelet_disruptive_test.go +++ b/test/components/kubernetes/kubelet_disruptive_test.go @@ -31,16 +31,18 @@ import ( func TestSelfHostedKubeletLabels(t *testing.T) { client := testutil.CreateKubeClient(t) - // List all the nodes and then delete a node that is not controller. + // Find all nodes that are not controller nodes i.e worker nodes. nodes, err := client.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{ - LabelSelector: "node.kubernetes.io/node=", + LabelSelector: "node.kubernetes.io/controller!=true", }) if err != nil { t.Errorf("could not list nodes: %v", err) } + if len(nodes.Items) == 0 { t.Fatalf("no worker nodes found") } + chosenNode := nodes.Items[0].Name // Delete the chosen node.