From 2d312b3b2d04caa1bf95c924470e8d0ea44c6bd1 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Mon, 11 May 2020 21:55:58 +0200 Subject: [PATCH 01/10] packet: Refactor DNS handling Remove the `zone_id` knob. We can easily calculate this value and have no reason to bother the user with it. Remove the `aws_creds_path` knob under `dns.route53`. AFAICT the only case where this knob is useful is if I want to store Terraform state in S3 on AWS account A *and* I want to use Route 53 on AWS account B. To me it seems like a rather esoteric use case and therefore I think it's better to remove this knob for simplicity's sake. Convert dns.provider knob to a string. With the `zone_id` and `aws_creds_path` knobs removed, the `route53` block is now empty. Since the `manual` DNS options has no knobs and since `dns.zone` is provider-agnostic anyway, we can use a simple string to designate the selected provider. Convert dns.Validate() and dns.AskToConfigure() to methods on dns.Config. Run dns.Validate() during platform initialization. Running it in the Apply() method is too late and makes things break in an unexpected way when passing a wrong DNS provider in the config. Move DNS-related code outside of the Packet Terraform module for a better separation of concerns and clearer module boundaries. Instead of calculating the required DNS records inside the Packet module, return the *controller IPs* as an output to be consumed by the various DNS modules. This makes it easier to add new DNS providers and opens the way to supporting multiple DNS providers on platforms other than Packet. The "manual" DNS option is now a standalone Terraform module which doesn't create any resources and instead just returns outputs to be consumed by lokoctl. Remove trailing dot from kubeconfig URLs. Fixes #259. --- .../lokomotive-kubernetes/dns/manual/main.tf | 38 ++++++++++++ .../dns/manual/require.tf | 3 + .../dns/manual/variables.tf | 19 ++++++ .../lokomotive-kubernetes/dns/route53/main.tf | 49 ++++++++------- .../dns/route53/require.tf | 2 - .../dns/route53/variables.tf | 19 ++++++ .../flatcar-linux/kubernetes/bootkube.tf | 8 +-- .../flatcar-linux/kubernetes/controllers.tf | 42 ------------- .../flatcar-linux/kubernetes/outputs.tf | 12 ++-- pkg/assets/generated_assets.go | 59 +++++++++++++++---- pkg/dns/dns.go | 53 ++++++----------- pkg/platform/packet/packet.go | 40 ++++++++----- pkg/platform/packet/template.go | 33 +++-------- 13 files changed, 219 insertions(+), 158 deletions(-) create mode 100644 assets/lokomotive-kubernetes/dns/manual/main.tf create mode 100644 assets/lokomotive-kubernetes/dns/manual/require.tf create mode 100644 assets/lokomotive-kubernetes/dns/manual/variables.tf create mode 100644 assets/lokomotive-kubernetes/dns/route53/variables.tf diff --git a/assets/lokomotive-kubernetes/dns/manual/main.tf b/assets/lokomotive-kubernetes/dns/manual/main.tf new file mode 100644 index 000000000..1aa26c4bf --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/manual/main.tf @@ -0,0 +1,38 @@ +locals { + api_external_fqdn = format("%s.%s.", var.cluster_name, var.dns_zone) + api_fqdn = format("%s-private.%s.", var.cluster_name, var.dns_zone) + etcd_fqdn = [for i, d in var.controllers_private_ipv4 : format("%s-etcd%d.%s.", var.cluster_name, i, var.dns_zone)] + + dns_entries = concat( + [ + # apiserver public + { + name = local.api_external_fqdn, + type = "A", + ttl = 300, + records = var.controllers_public_ipv4 + }, + # apiserver private + { + name = local.api_fqdn, + type = "A", + ttl = 300, + records = var.controllers_private_ipv4 + }, + ], + # etcd + [ + for index, i in var.controllers_private_ipv4 : + { + name = local.etcd_fqdn[index], + type = "A", + ttl = 300, + records = [i], + } + ], + ) +} + +output "entries" { + value = local.dns_entries +} diff --git a/assets/lokomotive-kubernetes/dns/manual/require.tf b/assets/lokomotive-kubernetes/dns/manual/require.tf new file mode 100644 index 000000000..f94b61f62 --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/manual/require.tf @@ -0,0 +1,3 @@ +terraform { + required_version = ">= 0.12.0" +} diff --git a/assets/lokomotive-kubernetes/dns/manual/variables.tf b/assets/lokomotive-kubernetes/dns/manual/variables.tf new file mode 100644 index 000000000..21b6369bc --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/manual/variables.tf @@ -0,0 +1,19 @@ +variable "cluster_name" { + type = string + description = "Unique cluster name (prepended to dns_zone)" +} + +variable "controllers_public_ipv4" { + type = list(string) + description = "Public IPv4 addresses of all the controllers in the cluster" +} + +variable "controllers_private_ipv4" { + type = list(string) + description = "Private IPv4 addresses of all the controllers in the cluster" +} + +variable "dns_zone" { + type = string + description = "Zone name under which records should be created (e.g. example.com)" +} diff --git a/assets/lokomotive-kubernetes/dns/route53/main.tf b/assets/lokomotive-kubernetes/dns/route53/main.tf index da7591c38..3db98a726 100644 --- a/assets/lokomotive-kubernetes/dns/route53/main.tf +++ b/assets/lokomotive-kubernetes/dns/route53/main.tf @@ -1,27 +1,36 @@ -variable "entries" { - type = list( - object({ - name = string - type = string - ttl = number - records = list(string) - }) - ) +provider "aws" { + # The Route 53 service doesn't need a specific region to operate, however + # the AWS Terraform provider needs it and the documentation suggests to use + # "us-east-1": https://docs.aws.amazon.com/general/latest/gr/r53.html. + region = "us-east-1" } -variable "aws_zone_id" { - type = string - description = "AWS Route53 DNS Zone ID (e.g. Z3PAABBCFAKEC0)" +data "aws_route53_zone" "selected" { + name = "${var.dns_zone}." } -resource "aws_route53_record" "dns-records" { - count = length(var.entries) +resource "aws_route53_record" "apiserver_public" { + zone_id = data.aws_route53_zone.selected.zone_id + name = format("%s.%s.", var.cluster_name, var.dns_zone) + type = "A" + ttl = 300 + records = var.controllers_public_ipv4 +} + +resource "aws_route53_record" "apiserver_private" { + zone_id = data.aws_route53_zone.selected.zone_id + name = format("%s-private.%s.", var.cluster_name, var.dns_zone) + type = "A" + ttl = 300 + records = var.controllers_private_ipv4 +} - # Route53 DNS Zone where record should be created - zone_id = var.aws_zone_id +resource "aws_route53_record" "etcd" { + count = length(var.controllers_private_ipv4) - name = var.entries[count.index].name - type = var.entries[count.index].type - ttl = var.entries[count.index].ttl - records = var.entries[count.index].records + zone_id = data.aws_route53_zone.selected.zone_id + name = format("%s-etcd%d.%s.", var.cluster_name, count.index, var.dns_zone) + type = "A" + ttl = 300 + records = [var.controllers_private_ipv4[count.index]] } diff --git a/assets/lokomotive-kubernetes/dns/route53/require.tf b/assets/lokomotive-kubernetes/dns/route53/require.tf index e179fb608..d98a41f1a 100644 --- a/assets/lokomotive-kubernetes/dns/route53/require.tf +++ b/assets/lokomotive-kubernetes/dns/route53/require.tf @@ -1,5 +1,3 @@ -# Terraform version and plugin versions - terraform { required_version = ">= 0.12.0" diff --git a/assets/lokomotive-kubernetes/dns/route53/variables.tf b/assets/lokomotive-kubernetes/dns/route53/variables.tf new file mode 100644 index 000000000..21b6369bc --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/route53/variables.tf @@ -0,0 +1,19 @@ +variable "cluster_name" { + type = string + description = "Unique cluster name (prepended to dns_zone)" +} + +variable "controllers_public_ipv4" { + type = list(string) + description = "Public IPv4 addresses of all the controllers in the cluster" +} + +variable "controllers_private_ipv4" { + type = list(string) + description = "Private IPv4 addresses of all the controllers in the cluster" +} + +variable "dns_zone" { + type = string + description = "Zone name under which records should be created (e.g. example.com)" +} diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf index db367f744..d8448a8fa 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf @@ -3,12 +3,12 @@ module "bootkube" { cluster_name = var.cluster_name # Cannot use cyclic dependencies on controllers or their DNS records - api_servers = [local.api_fqdn] - api_servers_external = [local.api_external_fqdn] - etcd_servers = local.etcd_fqdn + api_servers = [format("%s-private.%s", var.cluster_name, var.dns_zone)] + api_servers_external = [format("%s.%s", var.cluster_name, var.dns_zone)] + etcd_servers = [for i, d in packet_device.controllers : format("%s-etcd%d.%s", var.cluster_name, i, var.dns_zone)] asset_dir = var.asset_dir network_mtu = var.network_mtu - etcd_endpoints = local.etcd_endpoints + etcd_endpoints = packet_device.controllers.*.access_private_ipv4 # Select private Packet NIC by using the can-reach Calico autodetection option with the first # host in our private CIDR. diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf index 71c463213..38199387d 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf @@ -1,45 +1,3 @@ -locals { - api_external_fqdn = format("%s.%s.", var.cluster_name, var.dns_zone) - api_fqdn = format("%s-private.%s.", var.cluster_name, var.dns_zone) - etcd_fqdn = [for index, device in packet_device.controllers : format("%s-etcd%d.%s.", var.cluster_name, index, var.dns_zone)] - etcd_endpoints = packet_device.controllers.*.access_private_ipv4 - - dns_entries = concat( - [ - # apiserver public - { - name = local.api_external_fqdn, - type = "A", - ttl = 300, - records = packet_device.controllers.*.access_public_ipv4, - }, - # apiserver private - { - name = local.api_fqdn, - type = "A", - ttl = 300, - records = packet_device.controllers.*.access_private_ipv4, - }, - ], - # etcd - [ - for index, device in packet_device.controllers : - { - name = local.etcd_fqdn[index], - type = "A", - ttl = 300, - records = [device.access_private_ipv4], - } - ], - ) -} - -resource null_resource "dns_entries" { - triggers = { - value = jsonencode(local.dns_entries) - } -} - resource "packet_device" "controllers" { count = var.controller_count hostname = "${var.cluster_name}-controller-${count.index}" diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/outputs.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/outputs.tf index 7893b3d88..1dd1d61e8 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/outputs.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/outputs.tf @@ -6,10 +6,6 @@ output "kubeconfig" { value = module.bootkube.kubeconfig-kubelet } -output "dns_entries" { - value = local.dns_entries -} - # values.yaml content for all deployed charts. output "pod-checkpointer_values" { value = module.bootkube.pod-checkpointer_values @@ -36,3 +32,11 @@ output "calico_values" { output "device_ids" { value = packet_device.controllers.*.id } + +output "controllers_public_ipv4" { + value = packet_device.controllers.*.access_public_ipv4 +} + +output "controllers_private_ipv4" { + value = packet_device.controllers.*.access_private_ipv4 +} diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 829d66526..f3af52407 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -4370,6 +4370,29 @@ var vfsgenAssets = func() http.FileSystem { name: "dns", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, + "/lokomotive-kubernetes/dns/manual": &vfsgen۰DirInfo{ + name: "manual", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/lokomotive-kubernetes/dns/manual/main.tf": &vfsgen۰CompressedFileInfo{ + name: "main.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 930, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\x91\x52\x68\x21\x0b\x85\xed\x34\xe8\x61\xcf\x11\x4a\xf0\x6c\x15\x0c\xae\x9d\xc9\x4a\xe8\x56\xf2\xee\x23\xb6\x97\xa6\xeb\x46\x0b\x63\xb9\x84\x28\xf2\xaf\x4f\xbf\x7f\xeb\x95\xb4\x01\x4e\x02\x40\xb6\xa6\xc1\x23\x23\x39\x69\x9b\xfd\x9b\x76\xb0\x85\xbd\xa7\x83\xe4\x55\xb1\x0c\xd5\x32\x54\x45\x09\xbd\xa4\x4a\xd9\x2e\x30\x52\xe3\xe4\x01\x53\x45\xbb\xd0\x7c\x78\x87\xeb\x2c\x13\x4f\x4f\xcf\x5c\xe6\xa1\x25\xd3\x4b\xc6\xbb\xe5\x90\x95\xbe\xd4\xdb\x42\xbd\xf7\x04\xa6\x04\x0d\xc6\x25\x09\xef\x98\xbc\xb5\x48\xa1\xc9\x03\x1a\xd3\xf6\x4f\xf0\x3c\x1f\x3d\x4a\x2d\xf5\xaf\x93\xcd\xb7\xe1\x3b\x21\x00\xc6\x2f\x74\x4c\x06\x03\x6c\x41\x79\xa7\x24\xaf\xc4\x88\x51\x8b\x84\xb3\x18\x37\x0e\x48\x3d\x12\xb4\xdd\xab\x35\x2a\xff\x38\x89\x2f\xe2\x51\x3f\x91\x47\xbb\xab\x2b\xa7\xcb\xa9\x95\xdf\xdb\xdc\x5a\xbc\x14\xb3\x32\xdb\xbc\xfb\xe3\x66\x73\x2e\x13\x2a\x4f\x7a\x24\xbb\x72\x21\x92\x44\x13\x72\xf7\x50\xfe\x04\x9c\xcc\xba\x8b\xf8\x9f\x40\x67\xd7\x75\x49\xba\x4b\xaf\x45\x8c\xc0\x85\xe5\xf1\xfa\x9d\xc6\x63\x09\xe6\x76\x04\x6e\x2e\x37\x45\xac\x8e\xa2\xbb\xbf\x2f\x59\x9b\x49\x64\x38\xef\xb2\x16\x83\x10\xbe\xe3\xb6\x63\x28\x72\xa8\x8a\xc8\xd5\x4b\xdb\xe1\xc4\x33\xcb\x9c\x18\xc4\x67\x00\x00\x00\xff\xff\x57\x4f\xb9\x6c\xa2\x03\x00\x00"), + }, + "/lokomotive-kubernetes/dns/manual/require.tf": &vfsgen۰FileInfo{ + name: "require.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + content: []byte("\x74\x65\x72\x72\x61\x66\x6f\x72\x6d\x20\x7b\x0a\x20\x20\x72\x65\x71\x75\x69\x72\x65\x64\x5f\x76\x65\x72\x73\x69\x6f\x6e\x20\x3d\x20\x22\x3e\x3d\x20\x30\x2e\x31\x32\x2e\x30\x22\x0a\x7d\x0a"), + }, + "/lokomotive-kubernetes/dns/manual/variables.tf": &vfsgen۰CompressedFileInfo{ + name: "variables.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 542, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xbd\x6a\xc3\x30\x14\x85\x77\x3f\xc5\xc1\x93\xb3\x78\xca\x9a\x07\xe8\x96\xa5\x4b\x17\x23\x4b\xa7\xb1\x40\xbe\x52\xef\x95\xdd\x3f\xfa\xee\xa5\x71\x0a\x81\x96\x42\x4b\x35\x0a\x3e\xce\xc7\xfd\x56\xa7\xd1\x8d\x89\x68\x7d\x5a\xac\x52\x07\x71\x33\x5b\xbc\x36\x40\x7d\x2e\xc4\xe5\x1d\x60\x55\xa3\x9c\x1a\x20\xd0\xbc\xc6\x52\x63\x16\x1c\xd0\xde\x4a\x7c\x58\x88\x0b\x8e\x0f\x1c\x5d\x51\x16\x4a\x60\x40\xcd\x08\x62\xc3\x4b\x16\xee\xda\xe6\xad\x69\xae\x16\xb3\x54\xcd\x29\x51\x6d\x28\xcb\x98\xa2\x1f\x62\x59\xf7\xdf\x8d\xa7\x68\xb5\xdb\x0c\x76\x5f\x15\x8e\x67\x18\x37\xc7\x75\x0f\x17\x82\xd2\x8c\x86\x7c\x0f\x97\x12\xea\x44\x5c\x2d\x21\xca\xf6\xb5\xf9\xfe\xa4\xa4\x71\x75\x95\x7f\x75\xda\xe8\xff\x90\xfa\xbc\xdf\x6f\xaa\xdc\x65\xe1\xd6\x62\x91\x40\xc5\xe3\x14\xfd\x04\xa5\xcf\x1a\x0c\x36\xe5\x25\x05\x8c\x84\x57\xba\xca\x80\x8e\xfd\xa9\x07\x9f\xdc\x5c\x12\x7b\x9f\xe7\x73\xac\xf7\x00\x00\x00\xff\xff\x2d\xd1\xe9\xdf\x1e\x02\x00\x00"), + }, "/lokomotive-kubernetes/dns/route53": &vfsgen۰DirInfo{ name: "route53", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -4377,16 +4400,21 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/dns/route53/main.tf": &vfsgen۰CompressedFileInfo{ name: "main.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 606, + uncompressedSize: 1133, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4d\x4b\xc3\x40\x10\xbd\xcf\xaf\x78\xc4\x4b\x72\x30\x08\xc5\x63\x0e\x69\xab\x20\x82\x88\x3d\x08\x15\x29\xf9\x18\xda\x95\x74\xb7\xcc\x6e\x5a\xb5\xf4\xbf\xcb\x26\x2b\x5d\xd0\xe6\x32\xe4\xed\x9b\x79\xef\xcd\xec\x2b\x51\x55\xdd\x31\x12\xd6\x4e\x14\xdb\x04\x47\x02\xdc\xd7\x8e\x51\xa0\x53\xd6\xa5\x04\x00\xa6\xfe\xe0\xc6\xa5\xc7\xe1\x07\xd0\xd5\x96\x7d\x2d\x60\x9d\x28\xbd\x0e\xf0\xd0\xf6\x0f\xec\x3a\x8c\xb0\xee\xb7\x35\x4b\x80\x85\x1b\x23\xad\xfd\xd5\x19\x5b\xb2\xe1\xf1\xe4\x4b\x46\x27\xa2\xb3\xc1\xea\x60\x57\xdf\x46\xf3\x4a\xb5\x91\xc9\xf0\x45\x8a\x2d\xdb\x46\xd4\xce\x29\xa3\x51\x20\x29\x5f\x17\x78\x31\xbd\xe3\xdb\x09\xe6\x4f\x0b\x2c\x8d\x66\x3c\xcc\x91\x72\xbe\xce\xb1\x9c\x3c\x97\xe5\x74\x3a\xbb\x2f\x1f\xef\x66\x37\x59\xe2\x25\x85\xad\xe9\xa5\x09\x92\x32\xf6\xae\x46\xb7\x09\x92\x56\xdb\xeb\x60\x7d\xf4\xd1\x98\x5e\x3b\x9f\x82\xf5\xda\x6d\xd2\x7d\x25\x79\x58\x66\x46\x04\x5c\xfd\x95\x3f\x6c\x58\x38\xe4\x87\xdd\x98\xbe\x6b\x51\x33\x1a\xe1\xca\x71\x4b\x40\xc8\x89\x02\x7e\x5a\x94\xdc\x0f\x3c\x2f\x3f\x92\x7a\x1b\x5c\xe4\x4a\xb7\xfc\xf9\x9e\x7b\x0a\xc5\xf7\xb8\xc8\xf4\x14\x8a\x4f\x74\x99\xe9\x3a\x8a\x8f\x76\x91\x18\x28\x74\xa2\x9f\x00\x00\x00\xff\xff\x4b\xb4\xd2\x7f\x5e\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x92\xc1\x6a\xdc\x30\x10\x86\xef\x7e\x8a\x41\x6d\x68\x02\x59\x39\x65\xbb\x97\xc0\x1e\xf2\x0a\x6d\xa0\x87\x10\xcc\x54\x9a\xd8\x02\x59\x32\x33\x63\x6f\x9b\xb0\xef\x5e\x64\x7b\x4b\x5a\x68\x68\x69\xe8\x51\x66\xe6\x9b\xef\xff\xf1\xc0\x79\x0a\x9e\x18\x0c\x1e\xc4\xc0\x53\x05\xf0\x06\x6e\x3b\x82\x8f\x79\x54\x82\xdd\x16\x84\x78\x0a\x8e\xc0\x67\x92\xf4\x4e\x21\x11\x79\x40\x90\x81\x5c\x78\x08\x0e\x98\xda\x90\x13\x68\x86\x3c\x10\xa3\xd2\x25\x74\xf9\x40\x13\xf1\xcc\xd2\x8e\xe0\xe6\xf3\x27\xb8\x25\x66\x7c\xc8\xdc\xc3\x8f\x93\x85\x24\x10\x14\x30\xf9\x79\xce\x67\x37\xf6\x94\x14\xb5\x10\x65\x6c\x5b\x12\x95\x82\x1e\x85\x66\x9a\x19\x65\x43\x28\xba\x79\x6f\xae\xa1\x53\x1d\xe4\xba\xae\x7d\x76\x62\xf1\x20\x16\x7b\x7c\xcc\xc9\xba\xdc\xd7\x2d\x25\x62\x8c\x75\x44\x25\xd1\xba\xe5\x9a\x77\x5b\xdb\x69\x1f\x6d\x05\x27\xe7\xfd\x73\x5e\x75\xac\x2a\x8f\x8a\x73\x13\x0d\x97\xf8\xbb\x6d\xf3\x98\x13\x19\x30\x42\x91\x9c\x92\x5f\x1a\x4a\xd8\x53\x59\x7e\xfb\x34\x21\x5b\x9f\x64\x1e\x3b\xda\x99\xc1\x24\x79\x64\x47\x3f\x73\x98\x5c\x66\x6f\xc0\xe0\x10\x4a\xa3\xc4\xcd\x30\x7e\x89\xc1\x2d\xc4\xb2\xdf\x04\x0f\x7b\x28\x0a\xf6\x57\x03\x7b\xba\x6f\xd7\xc1\x93\x04\x00\xec\xa1\xb4\x8a\x7a\x6e\xce\xc4\x9e\x89\x35\x97\x50\xac\x5c\x1c\x45\x89\x9b\x32\xb6\x7c\x39\x79\x5e\x54\x00\xfa\x6d\x58\x97\xcd\x8d\x29\x6f\x8d\xb0\xbc\xb7\x57\x57\x73\x41\x45\x57\x60\xbf\xb0\x72\x52\xce\x31\x12\xcb\x6a\xdd\x84\x61\xfa\xf0\x77\x69\x39\x4c\xa8\xf4\xaa\x71\x37\x2b\xf4\x7f\xc4\x5e\x2e\xfd\x69\x6e\x52\xb7\xfe\x2b\x2e\x8f\x49\x61\x0f\x91\x52\xab\xdd\xf9\x4b\xdc\x8b\xea\x15\xab\x29\x06\x67\xfe\xb7\xcd\xcc\x5a\x36\x24\x4f\x5f\xff\xa5\xa6\xbb\x97\xf2\xdc\x3d\x3b\x72\x7f\x5f\x1d\xab\xef\x01\x00\x00\xff\xff\x50\x09\x63\xe5\x6d\x04\x00\x00"), }, - "/lokomotive-kubernetes/dns/route53/require.tf": &vfsgen۰CompressedFileInfo{ - name: "require.tf", + "/lokomotive-kubernetes/dns/route53/require.tf": &vfsgen۰FileInfo{ + name: "require.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + content: []byte("\x74\x65\x72\x72\x61\x66\x6f\x72\x6d\x20\x7b\x0a\x20\x20\x72\x65\x71\x75\x69\x72\x65\x64\x5f\x76\x65\x72\x73\x69\x6f\x6e\x20\x3d\x20\x22\x3e\x3d\x20\x30\x2e\x31\x32\x2e\x30\x22\x0a\x0a\x20\x20\x72\x65\x71\x75\x69\x72\x65\x64\x5f\x70\x72\x6f\x76\x69\x64\x65\x72\x73\x20\x7b\x0a\x20\x20\x20\x20\x61\x77\x73\x20\x3d\x20\x22\x32\x2e\x34\x38\x2e\x30\x22\x0a\x20\x20\x7d\x0a\x7d\x0a"), + }, + "/lokomotive-kubernetes/dns/route53/variables.tf": &vfsgen۰CompressedFileInfo{ + name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 135, + uncompressedSize: 542, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x08\x49\x2d\x2a\x4a\x4c\xcb\x2f\xca\x55\x28\x4b\x2d\x2a\xce\xcc\xcf\x53\x48\xcc\x4b\x51\x28\xc8\x29\x4d\xcf\xcc\x83\x09\x15\x73\x71\x95\xc0\x95\x55\x73\x29\x28\x14\xa5\x16\x96\x66\x16\xa5\xa6\xc4\xc3\xf4\xd8\x2a\x28\xd9\xd9\x2a\x18\xe8\x19\x1a\xe9\x19\x28\x71\x21\xab\x28\x28\xca\x2f\xcb\x4c\x49\x2d\x2a\x06\x6b\x54\x50\x48\x2c\x2f\x06\xa9\x36\xd2\x33\xb1\x00\x29\x55\x50\xa8\xe5\xaa\xe5\x02\x04\x00\x00\xff\xff\x78\x0f\x40\x15\x87\x00\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xbd\x6a\xc3\x30\x14\x85\x77\x3f\xc5\xc1\x93\xb3\x78\xca\x9a\x07\xe8\x96\xa5\x4b\x17\x23\x4b\xa7\xb1\x40\xbe\x52\xef\x95\xdd\x3f\xfa\xee\xa5\x71\x0a\x81\x96\x42\x4b\x35\x0a\x3e\xce\xc7\xfd\x56\xa7\xd1\x8d\x89\x68\x7d\x5a\xac\x52\x07\x71\x33\x5b\xbc\x36\x40\x7d\x2e\xc4\xe5\x1d\x60\x55\xa3\x9c\x1a\x20\xd0\xbc\xc6\x52\x63\x16\x1c\xd0\xde\x4a\x7c\x58\x88\x0b\x8e\x0f\x1c\x5d\x51\x16\x4a\x60\x40\xcd\x08\x62\xc3\x4b\x16\xee\xda\xe6\xad\x69\xae\x16\xb3\x54\xcd\x29\x51\x6d\x28\xcb\x98\xa2\x1f\x62\x59\xf7\xdf\x8d\xa7\x68\xb5\xdb\x0c\x76\x5f\x15\x8e\x67\x18\x37\xc7\x75\x0f\x17\x82\xd2\x8c\x86\x7c\x0f\x97\x12\xea\x44\x5c\x2d\x21\xca\xf6\xb5\xf9\xfe\xa4\xa4\x71\x75\x95\x7f\x75\xda\xe8\xff\x90\xfa\xbc\xdf\x6f\xaa\xdc\x65\xe1\xd6\x62\x91\x40\xc5\xe3\x14\xfd\x04\xa5\xcf\x1a\x0c\x36\xe5\x25\x05\x8c\x84\x57\xba\xca\x80\x8e\xfd\xa9\x07\x9f\xdc\x5c\x12\x7b\x9f\xe7\x73\xac\xf7\x00\x00\x00\xff\xff\x2d\xd1\xe9\xdf\x1e\x02\x00\x00"), }, "/lokomotive-kubernetes/google-cloud": &vfsgen۰DirInfo{ name: "google-cloud", @@ -4647,9 +4675,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf": &vfsgen۰CompressedFileInfo{ name: "bootkube.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1196, + uncompressedSize: 1372, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\xdb\x61\x03\xb6\x0c\x7b\x80\x1c\x86\x74\x87\x5e\x8a\x62\x3d\x0e\x83\xc0\x48\x74\x4c\x54\x11\x3d\x8a\x4e\x13\x14\x7d\xf7\x41\x72\xe2\x39\xe9\x3a\x21\x40\x60\xfd\x9f\x7e\x8a\x14\xb9\x93\x30\x44\x82\xc5\x46\xc4\x1e\x87\x0d\x2d\xe0\xb9\x01\xc8\x32\xa8\x27\x18\xd7\x0a\x16\xcb\xe5\x97\xf1\x37\x61\x0d\x80\x8f\x43\x36\x52\x97\x70\x47\xb0\x82\x3d\xea\x72\xbe\xd5\x34\x00\xef\x60\x8d\x29\x89\xc1\x90\x09\xfc\xd1\x47\xf6\x10\xa8\xa7\x14\x28\x79\xa6\x0c\x92\xc0\x4b\x32\x95\x18\x49\x33\x88\x82\x75\xc4\x0a\x37\x77\x0f\xa0\xe4\x45\x43\x6e\x00\xb0\x67\x97\x49\xf7\x05\x99\xd6\x0a\x7e\x46\xf1\x18\x97\x45\x6d\x7f\x87\xf4\xeb\x92\x74\x74\x30\xd2\x84\xf1\x92\x3c\xef\x4e\x47\xc8\x7c\x78\xe5\xbe\x82\xf1\x44\x15\x0b\x59\xbc\x73\x26\x73\x81\x15\x60\x7e\x8b\x92\xf7\x24\x35\x00\x89\xec\x49\xf4\xd1\xed\x6c\xb8\xc6\x66\xd2\x39\x30\xa5\xd0\x0b\x27\xcb\xff\x0a\x3c\x89\x63\x2d\x1f\x28\x92\x37\xe8\x95\xf7\x68\x04\xf7\xe8\x1f\xc9\xe0\xee\x76\x0d\x9b\x23\x0c\x99\xd3\xb6\x54\x0f\x3c\xa6\xcf\x4a\xe8\x3b\x58\x63\x64\x2f\x80\x83\x49\x20\x23\x6f\x2c\x09\xa4\xaf\x7f\x4f\x6c\x5d\xc5\x5b\xd6\x6c\xd5\xbf\x93\x6c\xc0\x09\x64\xd0\x29\xc8\xfa\xf6\xe6\xc7\x72\x96\x15\xf7\xee\xc2\xce\xed\xc8\x3a\x09\xa5\x49\xa6\xb8\xab\xf7\xcf\x9e\x83\x16\xbb\x0f\x35\x6d\x09\xe4\x4e\x86\xae\x28\x9f\xe0\xeb\xc7\x97\x45\x49\xaa\x97\x50\x77\x00\x5e\x17\xf5\xac\x95\x7e\x24\xdd\xb3\xa7\x2b\x74\xc4\xe6\xda\xac\x2b\x83\xec\x90\x93\xcb\x43\xdb\xf2\xe1\xaa\x3d\x2f\xb4\xf2\x12\x09\x37\x91\x9c\x52\x2f\x6a\xa5\x8c\x33\xfb\x6b\xed\x2f\x8e\xdb\xad\xd2\x16\x6b\x35\xaf\xf1\x99\x56\xd2\xf4\xa4\x96\xdd\x1e\x23\x07\xb6\xa3\xeb\x49\x59\x82\xeb\x64\xd0\x7c\xbe\xda\xdb\x44\x35\x90\x64\xc8\x89\xd4\xa1\xfa\xee\x74\x46\x72\xfd\x2a\x3a\x1d\x7a\xc9\xe4\x24\x39\x8c\xd1\x71\x32\xd2\x16\x3d\x15\x77\xd3\xe1\x34\x8b\x37\x9c\xcb\xe5\xea\xab\x67\x8a\x6d\x7d\x70\x0a\x50\x06\x3a\x92\x95\x67\x0e\x23\xe2\x8a\xec\x46\xd9\x9d\xe4\x53\xd0\xff\x10\x35\xc8\xf7\x83\x29\x42\x1b\x71\x9b\xc1\x04\xbe\xdd\xdf\xc2\x38\x5c\xc5\xbe\x80\x0e\x7b\x1e\x77\xca\x2c\x2a\xba\x91\x1d\xdd\xdf\x06\x9a\x97\xe6\x4f\x00\x00\x00\xff\xff\x80\xf9\x76\x9e\xac\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xcf\x6a\xdb\x40\x10\xc6\xef\x7a\x8a\xc1\x6d\x20\x29\x89\x4a\xa1\xa7\x82\x0f\xc5\xe9\x21\x97\x10\x9a\x63\x29\xcb\x7a\x77\x6c\x0d\x59\xef\x88\x99\x91\xe3\x34\xe4\xdd\xcb\x4a\x8e\x2a\x3b\x75\xa9\x30\x18\xef\xf7\xf3\x37\xff\x34\xbb\xe1\xd8\x25\x84\xd9\x92\xd9\x1e\xba\x25\xce\xe0\xb9\x02\x50\xee\x24\x20\x0c\xcf\x1c\x66\x75\xfd\x71\xf8\x8c\x58\x05\x10\x52\xa7\x86\xe2\xb2\xdf\x20\xcc\x61\xeb\xa5\x9e\x1e\x55\x15\xc0\x3b\x58\xf8\x9c\xd9\xa0\x53\x84\xf0\x14\x12\x05\x88\xd8\x62\x8e\x98\x03\xa1\x02\x67\x08\x9c\x4d\x38\x25\x14\x05\x16\xb0\x06\x49\xe0\xfa\xf6\x1e\x04\x03\x4b\xd4\x0a\xc0\xb7\xe4\x14\x65\x5b\x90\xf1\x99\xc3\x8f\x15\xcb\xc6\xdb\xf9\xec\x4c\xaf\x5a\xa1\xad\x37\xac\xcf\x74\x76\xf9\x26\x95\xe1\x24\x66\x75\xbf\x38\xe3\xc5\xcf\x43\x4b\x87\x3b\x43\xc9\x3e\x1d\x5a\xfe\xb7\x15\x5a\x88\x6f\xd2\x1b\xac\x80\x2e\x21\x02\x65\x68\x7d\x78\x40\x73\x11\xb7\x14\xb0\x9e\x96\xfc\x05\x26\x55\x14\xab\xb3\x78\x2a\x32\xfd\xad\x0e\xd5\xe2\x4b\x02\x30\x6d\x4d\xe1\x46\xa9\x02\xc8\x68\x8f\x2c\x0f\x6e\x63\xdd\x31\x36\x91\x5e\x8b\xc1\x1c\x5b\xa6\x6c\x3a\x82\x27\xf3\xaf\x3f\xd4\x3e\x04\x54\x75\xfb\x09\x38\x6a\xb7\x9f\x87\xd9\xdf\x63\xc2\x60\xb0\x17\xe0\xae\xf7\x80\xdb\x9b\x05\x2c\x9f\xa0\x53\xca\xeb\x32\x6d\x08\x3e\x5f\x09\xfa\xd0\xc0\xc2\x27\x0a\x0c\xbe\x33\x8e\x68\x18\x8c\x38\x03\xb7\xfd\xd7\x23\x59\xd3\xe3\x2b\x12\xb5\xde\xbf\x61\xb5\xd2\x5c\xee\x64\x0c\xb2\xb8\xb9\xfe\x5e\x4f\x0a\xa6\xd6\x1d\xd8\xb9\x0d\x5a\xc3\xb1\xbc\xd4\x63\xdc\xf9\xfb\xe7\x40\x51\x8a\xdd\x79\xdf\x11\x8e\x38\x96\x53\x94\x4b\xf8\x74\xf1\x32\x2b\x45\xb5\x1c\xfb\x13\x80\xb7\xfd\x7e\xd5\xca\xfe\xa0\x94\x46\x1d\xa1\x03\x36\xd5\x26\x5b\x14\x79\xe3\x29\x3b\xed\x56\x2b\xda\x1d\xad\xd3\x81\x56\x86\x94\xfd\x32\xa1\x13\x6c\x59\xac\xb4\x71\x62\x7f\xac\xfd\xc1\xfd\x7a\x2d\xb8\xf6\x7d\x37\x8f\xf1\x89\x56\xca\x0c\x28\xa6\x6e\xeb\x13\x45\xb2\x27\xd7\xa2\x10\x47\xd7\x70\x27\xfa\x9a\xda\x69\xa2\x37\xe0\x6c\x9e\x32\x8a\xf3\x12\x9a\xfd\x7f\x58\xfb\x5f\x45\xc7\x5d\xcb\x8a\x8e\xb3\xf3\x29\x39\xca\x86\xb2\xf2\x01\x8b\xbb\x49\xb7\xbf\x3b\xae\x49\x4b\x72\xfd\xd4\x15\xd3\xaa\x1f\x38\x46\x28\x17\x50\x42\x2b\x63\x8e\x03\xe2\x8a\xec\x06\xd9\xed\xe5\x7d\xd0\x7f\x10\x7d\x90\x6f\x3b\x13\x0f\xab\xe4\xd7\x0a\xc6\xf0\xf5\xee\x06\x86\x5d\x2e\xf6\x05\x74\xbe\xa5\xe1\xa4\x5c\x14\xe2\xdd\xc0\x0e\xee\xa7\x81\xea\xa5\xfa\x1d\x00\x00\xff\xff\x0a\xef\x3b\xb4\x5c\x05\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/calico-host-protection": &vfsgen۰DirInfo{ name: "calico-host-protection", @@ -4746,16 +4774,16 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf": &vfsgen۰CompressedFileInfo{ name: "controllers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4277, + uncompressedSize: 3146, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x57\x5b\x6f\xdb\xb8\x12\x7e\xf7\xaf\x98\xa3\x38\x68\x72\x60\xcb\x4e\xdb\x73\x50\x04\x30\x16\x45\x5a\x60\xfb\xd2\x2d\x7a\x79\x0a\x02\x82\xa1\xc6\x36\x1b\x8a\x54\x49\xca\x97\x35\xfc\xdf\x17\x43\x52\xb6\x64\x3b\x69\x76\x0b\x6c\x5e\x62\x93\x33\x1f\xe7\xf2\xcd\x47\x5a\x19\xc1\x95\x83\x4d\x0f\x80\x57\x92\xe1\xca\xa3\xd5\x5c\xb1\xe9\x8f\x42\xc3\x04\xa6\xc6\x96\xdc\x5f\x64\xe7\x2e\x3f\x77\x79\x36\x80\x05\xb7\xb9\x50\xb5\xf3\x68\x99\xe6\x25\xc6\x95\x42\x3b\xf6\xa7\xd1\x78\x99\x60\x82\xf7\xee\xaf\x0d\x33\xac\xac\x5c\x70\x8f\xcf\x86\x43\x2f\x8a\x2e\xde\x04\x6e\xa7\xc6\x82\xd4\x05\xae\x06\x50\xe0\x42\x0a\x04\xa9\xa1\xe2\xe2\x01\x3d\x8b\x0b\xb9\x30\xda\x5b\xa3\x14\x5a\x07\xd7\xed\x00\x08\xf0\xbc\x78\xf4\xfc\x04\xdb\x09\xe3\xae\x89\x03\x75\x51\x19\xa9\xbd\x8b\x71\x3c\x7a\x62\xfe\xdf\x9c\x0b\x81\xce\xb1\x94\x2e\x93\xd5\xe2\x75\xaf\x07\x40\x98\xa8\xbd\x95\xe8\x60\x02\xc2\x68\xc1\xfd\x45\x8f\xe0\x6e\x7b\x31\xbd\x33\xaa\xa0\x43\xbb\x40\x0b\x55\x7d\xaf\xa4\x48\x1b\x9b\x5e\x53\x01\x8a\x34\x46\x10\xda\x97\x1f\x75\x6e\xb0\x33\xf5\xeb\x2a\x99\x66\x6f\xb3\xd6\xb2\x57\xa9\x96\xaf\xc6\xe3\xfd\xb2\x45\x61\x6c\xe1\x9e\x99\x5a\x08\x2e\x64\xd6\x20\x6c\x07\xa7\x92\x88\x25\x78\x56\x16\xff\x5e\xf0\xad\xbe\x1c\x44\x7f\x17\xff\x9d\x85\x96\x77\x5a\xf3\x77\x69\xf7\xd3\x94\x77\xe4\xbe\x0d\xb0\x77\xbf\x9e\xfa\x6d\x8a\xe3\x44\x9a\x3b\xf4\xed\x3e\xcd\xcb\xde\xb6\xd7\xb3\xe8\x4c\x6d\x05\x82\xae\x95\x62\xbb\x6f\x59\x8b\xab\x59\x48\xc2\x5b\x39\x9b\x51\x66\x93\x94\xd3\x82\xab\x1a\x61\x02\xdf\x9d\xd1\xa8\x85\x29\xf0\x22\x26\xd6\x72\xa5\x21\xde\x76\x8e\xc9\x3a\x25\xcb\x20\x6b\x15\x2d\x1e\x24\x4c\xad\x3d\x40\x5b\x42\xc2\xa4\xee\xec\x58\xb0\xe8\x01\xcc\x8d\xf3\x4d\x55\x93\x65\xd6\xdf\x1c\x8e\xf5\x76\xb8\x77\x1d\xf6\x37\xc1\x39\x0f\x25\xdf\x66\x3d\x80\x4a\x71\x0d\x4f\x1e\x47\xed\xe8\x01\x4c\xb9\x90\x4a\x7a\x1a\xde\xc6\xf0\x96\x2c\xd3\xfa\x9a\x84\xc2\x54\x68\xb9\x97\x7a\xc6\xdc\xda\x79\x2c\x13\x98\xac\x56\xc8\x9c\xb0\xb2\xf2\xac\xb6\x0a\xfe\x33\x81\x2c\x83\xdf\x20\x13\xb5\xf3\xa6\x64\xb4\x9f\xb5\x94\x6a\xaa\xb8\x17\xdc\xb2\x73\x97\x64\xca\x38\x26\xe6\x5c\x6b\x54\x54\xd1\x7b\xa9\x14\x9d\x21\xd6\x42\x35\x44\x99\x9b\xda\xaa\x75\x48\xc8\x9a\xef\x28\x3c\x93\x45\x27\xa1\xfd\x72\x0f\xa0\x76\x68\x59\xc1\x3d\xef\x26\xfd\x58\x9c\x64\x99\x0b\xcf\x84\xd1\x53\x39\x6b\xd5\x66\x28\xb5\xf3\x5c\xa9\xa1\x9c\x69\xe9\xa5\xd1\xee\xb6\x55\xdf\xbb\xdc\xa2\x2e\xd0\x62\x01\xd7\x4f\x61\x3c\xed\x4b\xca\x79\x06\x1f\xa6\xa0\x8d\x87\xca\xa2\x43\xed\x69\xf6\xfc\x1c\xa1\xe4\xd5\x00\xa4\xa7\x7c\x1c\xc4\xd6\x93\x81\x5d\x70\x02\x64\xb2\x70\xac\xc0\x29\xaf\x95\xdf\xe6\x44\x18\x6e\x8b\x25\xb7\xc8\xba\x46\x61\x24\xcd\x43\x5d\x5d\x24\x62\x1f\xa1\xc4\xe9\x69\xda\xd3\x8a\xfd\x7c\x91\x0d\xa0\x15\xf6\xe5\xe0\x31\x88\x26\x90\x38\x79\x3d\x80\xc3\x62\x9f\x6c\x01\xdd\xa9\x6a\xc9\xd7\x8e\x55\x2b\x6c\x5a\x35\xe5\xca\x11\x23\x3d\x9f\xb9\x63\xe6\xd2\x6a\xac\xd9\xd7\xb9\x74\xb0\xe4\x6b\xf0\x06\xe6\x5c\x17\x0a\xa1\xc0\x8a\xca\xaa\x05\xd1\x78\xc9\x1d\x48\xed\x2a\x49\x1d\x0a\x15\x95\xee\x3a\x78\xce\xbd\xaf\xdc\xf5\x68\x54\x48\x27\x6a\xe7\xf2\x39\x77\x73\x29\x8c\xad\x72\x61\xca\x91\x1f\x79\x59\xb9\xe1\xdc\x2c\xbd\x19\xca\xb2\x52\x58\xa2\xf6\xc3\xd2\x14\xb5\xc2\x61\x3c\xc2\x0d\x8d\x1e\x62\x59\xab\x50\x80\xd1\xcb\x57\xe3\xff\x8d\x5e\xd2\x1d\x18\x77\x99\xd1\xcd\xfc\x68\x53\x20\x55\x87\xd6\x99\xd1\x77\x24\x17\x81\x9a\xd9\x8e\x2d\x1d\x99\x38\xe6\x5c\x5b\x37\x1e\x15\x0b\x5a\xc2\x60\xe0\xb1\xac\x14\xf7\x38\x95\x0a\x2f\xb2\xfe\xa6\xe2\x7e\x9e\xc7\xe0\xb7\x23\xa1\x46\xc7\x47\xe5\x6b\x5e\xaa\xdc\x97\x95\xca\x06\x49\xfd\xf6\x13\x79\xd4\x80\xfd\x56\x63\xb9\x40\xeb\xa4\xd1\xa7\x2c\xd3\x56\x63\xc9\xad\x98\xc3\x09\x39\x4a\x5b\x91\x86\x49\x1d\x94\xd4\xf5\x8a\x19\x2c\x93\x04\x44\x65\xcd\x82\x8d\x73\x73\xf6\x80\x6b\x77\x00\xd5\xd2\x6a\x42\x6d\xac\x2e\x83\x4f\x65\x9c\x4f\x09\xb3\xa6\xb6\x30\xf9\x85\xc1\x05\xd8\x5e\xfe\xbc\x9b\xa7\xba\xf8\x94\xea\x53\xef\x68\x12\xbb\x29\xff\x93\xf6\x9e\x6e\x6b\x68\xc1\x71\xd5\xcf\xe0\x86\x6b\x92\xa0\xda\x21\x90\xf2\x4a\xd1\x9d\x26\xa3\xa1\xfd\x00\x30\x96\x14\x4a\x5a\x78\xf7\xf1\x4b\x73\x47\x07\xa0\x70\xef\x77\xae\xad\xd8\x3e\x5a\x3f\xbe\x9e\x92\x7d\x61\x4a\x2e\x3b\xcf\xea\x93\x37\xdd\x31\x46\x1e\xcd\x9a\xe7\x6c\x1b\x93\x52\x63\x9e\xcf\x98\xab\xa7\x53\xb9\xea\xe6\x0c\x93\x09\x64\xdc\x96\xff\x7f\x1d\x2e\xaa\x61\xfa\x78\x0d\xd9\x21\x82\xa9\x42\xfb\x8e\xb8\x7a\x80\xf0\xfe\xeb\xcd\x3b\xf6\xed\xe3\x97\x6f\x9f\x3e\xfd\xf1\xf9\xeb\xfb\x77\xec\xed\xe7\x9b\xdf\x27\x87\xb0\xf1\xe1\x35\x9e\x34\x02\x94\xd2\x0b\x89\x8d\x73\x5c\x71\x52\x1b\x12\xa1\x01\xad\x5c\x9d\xb4\xbb\xea\xd8\xe5\x79\xbe\x0f\x58\x12\xd7\xb8\x62\xc9\x3c\x8c\x84\x91\xfa\x22\x1b\x64\x83\x48\xf4\x86\x3d\x8c\xe8\x13\xde\x68\xf4\x70\x6c\x28\x1d\x07\xe5\xa1\xbe\xc7\x48\xe5\x6e\x0b\xa9\xe2\xda\x5f\x5c\x8d\x07\x10\xf9\x96\xdf\x1b\xe3\xc9\x3a\xdf\xbb\x0c\xe9\xa3\x42\x7f\xf9\xf8\x9c\xfe\x6c\x50\x1f\xde\x38\x46\x0d\xa5\xfb\x45\x0a\x7a\xe0\x45\x27\x21\x0b\x4b\x6f\xa2\xe8\x92\x36\x69\x71\x00\x57\xe3\xe8\xda\xd0\x25\xf2\xa9\xdb\xf9\x93\x7b\xd1\xeb\x60\x0a\x1f\x79\x28\xc5\x09\x4d\x7d\x5c\x22\x68\xc4\x82\xee\x9e\xca\x86\x39\x01\x4e\x9f\xe8\xbc\x17\x85\x11\x0f\x68\xaf\x47\xa3\x17\xe1\x5d\x1d\x58\x30\x80\x7b\x14\x9c\xa6\x2b\x7c\x05\x59\xf2\x19\xba\x84\x66\x34\xfc\xa8\xf9\x9a\x00\x16\x34\xe6\xb5\x83\xa9\x35\x25\x14\x66\xa9\x95\xe1\x85\xd4\x33\x78\x7b\xf3\x01\x84\xb1\x16\x85\x57\xeb\x3c\x39\x7e\x31\x20\xfd\x0b\x07\x4b\x63\x1f\xb8\x35\xb5\x0e\x11\x35\x6e\x9d\xa3\xa0\xd6\x5e\xaa\x78\x4e\x5a\x11\xa6\x56\x05\xdc\x23\x4c\xe5\x0a\x8b\x88\x19\xb6\x22\xf5\x6b\xab\x58\x4a\xe9\x29\xea\xef\xb2\xdd\x11\x7d\x4b\xdd\x70\x5a\x56\x15\x7a\x77\xa2\x90\x4a\xb0\x66\x77\x2f\xa0\x1d\x6a\x66\x51\x30\x9e\xad\x9a\x8d\xf3\x4e\x69\xfa\x9b\x28\x10\xbb\x11\xea\xf7\x37\x27\xc4\xa4\x31\xcb\xfb\xfd\xcd\x4e\x44\xae\x5f\xbe\x7a\x33\xce\xa8\xd3\x0b\xde\xfa\x45\x10\x2c\xf7\x1c\x6e\xc9\x50\x87\x7b\x41\xfb\x26\x47\x3f\xbf\x83\x4d\x73\x44\x8b\x60\xcd\x52\xfa\x29\xf1\x57\x00\x00\x00\xff\xff\x7c\x9c\x56\xff\xb5\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xdf\x6f\xdb\x36\x10\x7e\xd7\x5f\x71\x53\x5d\x34\x19\x6c\x39\x69\xb7\xa1\x30\x60\x0c\x45\x5a\x60\x7d\xe9\x8a\xfe\x78\x2a\x0a\x82\x21\xcf\x16\x6b\x8a\xe4\x48\xca\x3f\x66\xf8\x7f\x1f\x8e\x92\x6c\xcb\x76\x92\x61\xcb\x93\x72\xf7\xdd\x91\x77\xf7\xdd\x47\x7b\x0c\xb6\xf6\x02\x21\x77\x5c\x2c\x30\x32\x89\x4b\x25\x30\x87\x5c\x58\x13\xbd\xd5\x1a\x7d\xc8\x61\x9b\x01\x08\x5b\x9b\x08\x47\x7f\x53\x58\x72\x5f\x1c\x70\x2c\x21\x32\x80\xd2\x86\x68\x78\x85\x47\xc8\x7c\xb0\x4d\x60\x5d\x87\x88\x9e\x91\x77\x37\x3a\x84\x8e\x06\xdb\x14\x5c\x28\x23\x71\xbd\xcb\x33\x00\xa7\xb9\x81\x47\x8f\x8b\x1b\x87\x19\xc0\x8c\x0b\xa5\x55\x54\x18\xf6\xc0\x6f\x84\x6c\xed\x9b\xef\x19\x80\x75\xe8\x79\x54\x66\xce\xc2\x26\x44\xac\xda\x64\xca\xad\x91\x05\xe1\x95\x8b\xac\xf6\x1a\x7e\x9a\x42\x9e\xc3\xef\x90\x8b\x3a\x44\x5b\x31\xf2\xe7\x30\x81\x99\xf5\x15\x8f\x57\xf9\x4c\xf3\x28\xb8\x67\xcf\x43\x3e\x4c\x09\x6c\x60\xa2\xe4\xc6\xa0\xbe\xce\x00\xee\x95\xd6\x74\x86\xd8\x08\x8d\x6d\xdd\xa5\xad\xbd\xde\xa4\x82\xbc\xfd\x81\x22\x32\x25\x7b\x05\x1d\xcc\x19\x40\x1d\xd0\x33\xc9\x23\xef\x17\xfd\xd0\x3d\x09\x59\x88\xc8\x84\x35\x33\x35\x3f\xea\xcd\x48\x99\x10\xb9\xd6\x23\x35\x37\x2a\x2a\x6b\xc2\xb7\xa3\xfe\x7e\x2f\x3c\x1a\x89\x1e\x25\x4c\x1e\xcb\xf1\x78\x6c\x96\x01\x3c\x83\xf7\x33\x30\x36\x82\xf3\x18\xd0\x44\x50\x06\x62\x89\x50\x71\x37\x04\x15\xa9\x9e\x00\xcd\xe8\x09\xe0\x97\x9c\x12\x32\x25\x03\x93\x38\xe3\xb5\x8e\xbb\x82\x08\xc3\xbd\x5c\x71\x8f\xac\x0f\x82\x29\x68\x6b\x17\xb5\xbb\xca\xa8\x17\x17\xb2\x0c\x93\xa3\x1b\xcf\xd1\xdd\x9f\x2f\xf3\x21\x1c\x5d\xfb\x7a\xf8\x50\x8a\xee\x22\x04\xb8\xa6\x9a\x4e\x9b\x7d\x71\x04\x19\x00\xd7\x2b\xbe\x09\xcc\xad\xb1\x1b\xd5\x8c\xeb\x40\x8c\x8c\x7c\x1e\xce\x99\x4b\xd6\xa6\x67\x5f\x4a\x15\x60\xc5\x37\x10\x2d\x94\xdc\x48\x8d\x20\xd1\x51\x5b\x8d\x20\x1a\xaf\x78\x00\x65\x82\x53\x34\xa1\xd4\x51\x15\x26\x29\xb2\x8c\xd1\x85\xc9\x78\x2c\x55\x10\x75\x08\x45\xc9\x43\xa9\x84\xf5\xae\x10\xb6\x1a\xc7\x71\x54\x2e\x8c\x4a\xbb\x8a\x76\xa4\x2a\xa7\xb1\x42\x13\x47\x95\x95\xb5\xc6\x51\x73\x44\x18\x59\x33\xc2\xaa\xd6\xa9\x01\xe3\x97\xaf\x6e\x7e\x1d\xbf\xcc\xa0\xbd\x40\x60\xd6\x74\xfb\x63\xac\x44\xea\x0e\xd9\x99\x35\xdf\xb3\x5d\x96\x25\x6a\xe6\x7b\xb6\xf4\x64\xe2\x9c\x73\xc7\xba\xf1\xa0\x58\x90\x09\x13\x20\x62\xe5\x34\x8f\x38\x53\x1a\xaf\xf2\xc1\xd6\xf1\x58\x16\xcd\xe5\x77\x63\xa1\xc7\xe7\x47\x15\x1b\x5e\xe9\x22\x56\x4e\xe7\xc3\x74\x16\xc0\x61\x23\xcf\x06\x70\x70\x75\xc8\x25\xfa\xa0\xac\xb9\x84\x6c\x5d\x1d\x92\x7b\x51\xc2\x05\x39\x6a\x5d\x0d\x0d\x5b\x75\xd0\xca\xd4\x6b\x66\xb1\x6a\x25\xa0\x51\xd6\x3c\x61\x42\x28\xd9\x02\x37\xe1\x24\xd5\x8f\x60\x0d\x1a\x61\x25\x5e\x51\xd6\x0e\x75\x9d\x62\x9c\x0d\xb1\x2d\x98\x75\xbd\x85\xe9\xff\x58\x5c\x80\xdd\xf5\xd3\xd3\xbc\x34\xc5\xc7\x54\x9f\x66\x47\x9b\xd8\x2f\xf9\xbf\x8c\xf7\xf2\x58\xd3\x08\xce\xbb\xfe\x0c\xee\xb8\x21\x09\xaa\x03\x02\x29\xaf\x12\xfd\x6d\xb2\x06\x8e\xde\x32\xb0\x9e\x14\x4a\x79\x78\xfb\xe1\x33\x78\x14\xd6\xcb\x90\x12\x61\x14\x92\xf5\x9e\xad\x66\x7c\x64\x3f\x7f\x9e\x5a\xbc\xb4\x15\x57\x06\x9e\x7a\xe9\xce\x73\x14\x0d\x4c\x9a\xc0\xfe\xb6\x06\x8f\x73\x52\x69\x2c\xf2\x39\x0b\xf5\x6c\xa6\xd6\xfd\x9a\x61\x3a\x85\x9c\xfb\xea\xb7\x5f\xd2\x43\x35\x6a\x3f\x27\x90\x9f\x66\xb0\x2e\x8d\xef\x8c\xab\x27\x19\xde\x7d\xb9\x7b\xcb\xbe\x7e\xf8\xfc\xf5\xe3\xc7\x3f\x3f\x7d\x79\xf7\x96\xbd\xf9\x74\xf7\xc7\xf4\x34\xed\xb3\x94\xf8\x66\xda\x09\x50\x5b\x5e\x2a\xec\xa6\xc0\x35\x27\xb5\x21\x11\x1a\x92\xe5\xf6\x22\xee\xb6\x87\x2b\x8a\xe2\x70\x61\x45\x5c\xe3\x9a\xb5\xf0\xb4\x12\x56\x99\xab\x7c\x98\x0f\x1b\xa2\x77\xec\x61\x44\x9f\x82\x82\x42\xf1\xf3\x9e\xd2\xcd\xa2\x2c\xea\x7b\x6c\xa8\xdc\x1f\x21\x75\xdc\xc4\xab\xdb\x9b\x21\x34\x7c\x2b\xee\xad\x8d\x84\x2e\x0e\x21\x23\xfa\xd4\x18\xaf\x1f\xde\xd3\xa7\x16\x75\xf1\x3a\x30\x1a\x28\xbd\x2f\x4a\x20\x53\xae\x09\x12\x4a\x7a\xfa\x4d\xd4\x84\xb4\x4e\x32\x0e\xe1\xf6\xa6\x09\xed\xe8\xd2\xf0\xa9\x3f\xf9\x8b\xbe\x26\xea\x64\x0b\x1f\xf8\xa1\xd4\x6c\x68\x3b\xc7\x15\x82\x41\x94\xf4\xf6\x38\x9f\xf6\x04\x38\x7d\xd1\x79\x2f\xa4\x15\x0b\xf4\x93\xf1\xf8\x05\x3d\xaa\x90\x58\x30\x84\x7b\x14\x9c\xb6\x2b\xfd\x0b\xaa\xe2\x73\x0c\x6d\x36\x6b\xe0\xaf\x9a\x6f\x28\xc1\x92\xd6\xbc\x0e\x30\xf3\xb6\x02\x69\x57\x46\x5b\x2e\x95\x99\xc3\x9b\xbb\xf7\x20\xac\xf7\x28\xa2\xde\x14\x6d\xe0\x67\x0b\x2a\xbe\x08\xb0\xb2\x7e\xc1\xbd\xad\x4d\xba\x51\x17\xd6\x3b\x0a\x6a\x13\x95\x6e\xce\x69\x2d\xc2\xd6\x5a\xc2\x3d\xc2\x4c\xad\x51\x36\x39\x93\xab\xa1\x7e\xed\x35\x6b\x4b\x7a\x8c\xfa\xfb\x6a\xf7\x44\xdf\xd1\x34\x82\x51\xce\x61\x0c\x17\x1a\xa9\x05\xeb\xbc\x07\x01\xed\x51\x33\x6f\x04\xe3\x5f\xab\x66\x17\xbc\x57\x9a\xc1\xb6\x11\x88\xfd\x0a\x0d\x06\xdb\x0b\x62\xd2\xc1\x8a\xc1\x60\xbb\x17\x91\xc9\xcb\x57\xaf\x6f\x72\x9a\xf4\x92\x7b\xba\x7f\x23\x9e\x09\x79\xe0\xf0\x91\x0c\xf5\xb8\x97\xb4\xaf\x4f\x39\x32\x25\x4c\x77\xc4\x11\xc1\x3a\x13\xb5\x2d\xdb\x65\xff\x04\x00\x00\xff\xff\xd4\xfd\x1d\x77\x4a\x0c\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 779, + uncompressedSize: 917, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xd2\xcf\x6a\xc3\x30\x0c\x06\xf0\x7b\x9e\x42\xb4\x87\xc1\xa0\x7e\x83\xdd\x76\xde\x2b\x04\xd7\xfe\xda\x9a\x2a\x52\xb0\xe5\x8e\x30\xfa\xee\xc3\x64\xac\x6d\xf6\x87\xdc\x02\xfa\xf4\x8b\xb0\xa4\xd5\xc6\x6a\xb4\x39\xd7\x3d\x82\xca\x21\x1d\x77\x3e\x0e\x49\x36\xf4\xd1\x11\x5d\x3c\x57\xd0\x0b\x0d\x1a\x2b\xc3\xed\x55\xad\x05\xdd\x32\xdd\x5d\xbb\xee\xa7\xb4\xda\x68\x9f\x0c\xbb\x57\xa2\x94\x1e\x62\x39\xa1\x3c\x32\xac\xc1\xb3\xbb\x2b\xb7\xae\xed\x5c\x2e\x6e\xf2\x03\x53\x50\x31\x88\xd1\x41\x33\x79\x66\x8a\x18\x59\x27\x44\x0a\x27\x9f\xad\xb8\xef\x9f\x8c\x1a\x77\xe1\x84\x70\x1e\x35\x89\x21\xf7\xb3\xf2\xff\xdc\x7f\x34\x2d\x9f\x60\xe7\xc7\x54\x90\x2f\x2b\xd5\x5f\x5b\x96\x66\x16\x18\xca\x6a\xef\x21\xbe\xb4\x18\xb6\x1a\xba\x65\xef\x95\xe0\x39\x05\x5d\x85\x3c\x44\xe7\x85\xbd\xd6\x61\x98\xe8\xcb\xaa\x05\x91\x4c\x29\x64\x78\x43\x5b\x18\x24\x42\x42\x42\x21\x15\x9e\xba\x2d\xbd\xa9\xd1\xb1\xfa\xec\xc5\xd0\xc2\x27\x6f\xf4\xae\xf2\x64\x6d\xab\x72\xc4\xed\x72\x70\x49\x01\x7d\x8a\x8b\x99\x46\x1f\xce\xb0\x7e\x2e\xbb\x76\x23\x59\x99\x91\x8b\x7b\x76\x29\x76\xd7\xee\x33\x00\x00\xff\xff\x42\xcc\x15\x8c\x0b\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xd2\xc1\x6a\xc3\x30\x0c\x06\xe0\xbb\x9f\x42\xb4\x87\xc1\xa0\x3e\xed\xba\xdb\xce\x7b\x85\xa0\xca\x6a\x6b\xea\x58\xc6\x96\x33\xc2\xe8\xbb\x0f\x93\xd1\x36\xd9\x3a\xc2\x6e\x01\xff\xff\x17\x19\x59\xaa\xa6\xaa\xb0\x39\xd7\x3d\x93\xc4\x83\x3f\xee\xd0\xf5\x3e\x6e\xe0\xd3\x00\x0c\x18\x2a\xc3\x2b\xf4\xe2\x6a\x60\xbb\x17\xd1\x16\xb4\xcb\xb4\xb9\x18\xf3\x53\x5a\x6d\xb4\xcf\xc0\xda\x94\xed\x94\x2f\x76\xc4\x3e\x00\x49\x54\x8e\x0a\x07\xc9\x80\x21\x80\xe3\x14\x64\x64\x07\x74\xc2\xac\xc5\x5e\x7f\x9a\xc4\xed\xe8\xc4\x74\x4e\xe2\xa3\x72\xee\x26\xe5\xef\x09\x1e\x94\x96\x97\xd9\x61\xf2\x85\xf3\xb0\x52\xfd\xb5\xb2\x34\x73\x64\xe5\xb2\xda\x9b\xc5\x97\x56\x60\x5d\x0d\xdd\xb2\xf7\x0a\x61\xf0\x24\xab\x90\x59\x74\x5a\xd8\x5b\xed\xfb\x11\xbe\xad\x5a\xd8\x81\x0a\x50\x66\x54\x6e\x0b\xe3\xe8\x38\x92\xe7\x02\x12\xc3\x68\xb6\xf0\x2e\x0a\xc7\x8a\x19\xa3\x72\x0b\x9f\x50\xe1\x43\xe2\x93\xb6\xad\xc6\x23\x5f\xc7\x72\x3c\x78\xe2\xce\xbb\xc5\x4c\x09\xe9\xcc\xda\x4d\xc7\xb6\xbd\x91\x2c\x21\x70\x2e\xf6\xd9\x7a\x37\xbb\xd8\xed\xac\x4b\x75\x1f\x3c\x75\x3e\x0d\x2f\xeb\x39\x24\xe2\x32\xeb\x3e\xe4\xb3\x1f\x50\xf9\x9f\xfe\x5d\xd9\x5c\xcc\x57\x00\x00\x00\xff\xff\xed\x67\xf6\x07\x95\x03\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/require.tf": &vfsgen۰CompressedFileInfo{ name: "require.tf", @@ -5698,11 +5726,18 @@ var vfsgenAssets = func() http.FileSystem { fs["/lokomotive-kubernetes/bootkube/resources/charts/pod-checkpointer/templates/sa.yaml"].(os.FileInfo), } fs["/lokomotive-kubernetes/dns"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/lokomotive-kubernetes/dns/manual"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/route53"].(os.FileInfo), } + fs["/lokomotive-kubernetes/dns/manual"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/lokomotive-kubernetes/dns/manual/main.tf"].(os.FileInfo), + fs["/lokomotive-kubernetes/dns/manual/require.tf"].(os.FileInfo), + fs["/lokomotive-kubernetes/dns/manual/variables.tf"].(os.FileInfo), + } fs["/lokomotive-kubernetes/dns/route53"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/lokomotive-kubernetes/dns/route53/main.tf"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/route53/require.tf"].(os.FileInfo), + fs["/lokomotive-kubernetes/dns/route53/variables.tf"].(os.FileInfo), } fs["/lokomotive-kubernetes/google-cloud"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/lokomotive-kubernetes/google-cloud/flatcar-linux"].(os.FileInfo), diff --git a/pkg/dns/dns.go b/pkg/dns/dns.go index 2c8297ea4..9ba9def29 100644 --- a/pkg/dns/dns.go +++ b/pkg/dns/dns.go @@ -25,29 +25,17 @@ import ( "github.com/pkg/errors" ) -type DNSProvider int - const ( - DNSNone DNSProvider = iota - DNSManual - DNSRoute53 + // Manual represents a manual DNS configuration. + Manual = "manual" + // Route53 represents DNS managed in Route 53. + Route53 = "route53" ) -type route53Provider struct { - ZoneID string `hcl:"zone_id,optional"` - AWSCredsPath string `hcl:"aws_creds_path,optional"` -} - -type dnsProvider struct { - Route53 *route53Provider `hcl:"route53,block"` - Manual *manualProvider `hcl:"manual,block"` -} - -type manualProvider struct{} - +// Config represents a Lokomotive DNS configuration. type Config struct { - Zone string `hcl:"zone"` - Provider dnsProvider `hcl:"provider,block"` + Provider string `hcl:"provider"` + Zone string `hcl:"zone"` } type dnsEntry struct { @@ -57,34 +45,27 @@ type dnsEntry struct { Records []string `json:"records"` } -// ParseDNS checks that the DNS provider configuration is correct and returns -// the configured provider. -func ParseDNS(config *Config) (DNSProvider, error) { - // Check that only one provider is specified. - if config.Provider.Manual != nil && config.Provider.Route53 != nil { - return DNSNone, fmt.Errorf("multiple DNS providers specified") - } - - if config.Provider.Manual != nil { - return DNSManual, nil - } - - if config.Provider.Route53 != nil { - return DNSRoute53, nil +// Validate ensures the specified DNS provider is valid. +func (c *Config) Validate() error { + switch c.Provider { + case Manual: + return nil + case Route53: + return nil } - return DNSNone, fmt.Errorf("no DNS provider specified") + return fmt.Errorf("invalid DNS provider %q", c.Provider) } // AskToConfigure reads the required DNS entries from a Terraform output, // asks the user to configure them and checks if the configuration is correct. -func AskToConfigure(ex *terraform.Executor, cfg *Config) error { +func (c *Config) AskToConfigure(ex *terraform.Executor) error { dnsEntries, err := readDNSEntries(ex) if err != nil { return err } - fmt.Printf("Please configure the following DNS entries at the DNS provider which hosts %q:\n", cfg.Zone) + fmt.Printf("Please configure the following DNS entries at the DNS provider which hosts %q:\n", c.Zone) prettyPrintDNSEntries(dnsEntries) for { diff --git a/pkg/platform/packet/packet.go b/pkg/platform/packet/packet.go index 110b46635..39db923e9 100644 --- a/pkg/platform/packet/packet.go +++ b/pkg/platform/packet/packet.go @@ -143,6 +143,10 @@ func (c *config) Initialize(ex *terraform.Executor) error { "either specify AuthToken or use the PACKET_AUTH_TOKEN environment variable") } + if err := c.DNS.Validate(); err != nil { + return errors.Wrap(err, "parsing DNS configuration failed") + } + assetDir, err := homedir.Expand(c.AssetDir) if err != nil { return err @@ -161,16 +165,11 @@ func (c *config) Apply(ex *terraform.Executor) error { c.AssetDir = assetDir - dnsProvider, err := dns.ParseDNS(&c.DNS) - if err != nil { - return errors.Wrap(err, "parsing DNS configuration failed") - } - if err := c.Initialize(ex); err != nil { return err } - return c.terraformSmartApply(ex, dnsProvider) + return c.terraformSmartApply(ex, c.DNS) } func (c *config) Destroy(ex *terraform.Executor) error { @@ -250,24 +249,37 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { } // terraformSmartApply applies cluster configuration. -func (c *config) terraformSmartApply(ex *terraform.Executor, dnsProvider dns.DNSProvider) error { +func (c *config) terraformSmartApply(ex *terraform.Executor, dc dns.Config) error { // If the provider isn't manual, apply everything in a single step. - if dnsProvider != dns.DNSManual { + if dc.Provider != dns.Manual { return ex.Apply() } arguments := []string{"apply", "-auto-approve"} - // Get DNS entries (it forces the creation of the controller nodes). - arguments = append(arguments, fmt.Sprintf("-target=module.packet-%s.null_resource.dns_entries", c.ClusterName)) + // Create controllers. We need the controllers' IP addresses before we can + // apply the 'dns' module. + arguments = append(arguments, fmt.Sprintf("-target=module.packet-%s.packet_device.controllers", c.ClusterName)) + if err := ex.Execute(arguments...); err != nil { + return errors.Wrap(err, "creating controllers") + } - // Create controller + // Apply 'dns' module. + arguments = append(arguments, "-target=module.dns") if err := ex.Execute(arguments...); err != nil { - return errors.Wrap(err, "failed executing Terraform") + return errors.Wrap(err, "applying 'dns' module") + } + + // Run `terraform refresh`. This is required in order to make the outputs from the previous + // apply operations available. + // TODO: Likely caused by https://github.com/hashicorp/terraform/issues/23158. + if err := ex.Execute("refresh"); err != nil { + return errors.Wrap(err, "refreshing") } - if err := dns.AskToConfigure(ex, &c.DNS); err != nil { - return errors.Wrap(err, "failed to configure DNS entries") + // Prompt user to configure DNS. + if err := dc.AskToConfigure(ex); err != nil { + return errors.Wrap(err, "prompting for manual DNS configuration") } // Finish deployment. diff --git a/pkg/platform/packet/template.go b/pkg/platform/packet/template.go index 72d0a4eeb..c341ef648 100644 --- a/pkg/platform/packet/template.go +++ b/pkg/platform/packet/template.go @@ -200,36 +200,21 @@ module "worker-{{ $pool.Name }}" { {{- end }} } -{{ end }} - -{{- if .Config.DNS.Provider.Manual }} -output "dns_entries" { - value = module.packet-{{.Config.ClusterName}}.dns_entries -} {{- end }} -{{- if .Config.DNS.Provider.Route53 }} module "dns" { - source = "../lokomotive-kubernetes/dns/route53" - - providers = { - aws = aws.default - } + source = "../lokomotive-kubernetes/dns/{{.Config.DNS.Provider}}" - entries = module.packet-{{.Config.ClusterName}}.dns_entries - aws_zone_id = "{{.Config.DNS.Provider.Route53.ZoneID}}" + cluster_name = "{{ .Config.ClusterName }}" + controllers_public_ipv4 = module.packet-{{.Config.ClusterName}}.controllers_public_ipv4 + controllers_private_ipv4 = module.packet-{{.Config.ClusterName}}.controllers_private_ipv4 + dns_zone = "{{ .Config.DNS.Zone }}" } -provider "aws" { - version = "2.48.0" - alias = "default" - # The Route 53 service doesn't need a specific region to operate, however - # the AWS Terraform provider needs it and the documentation suggests to use - # "us-east-1": https://docs.aws.amazon.com/general/latest/gr/r53.html. - region = "us-east-1" - {{- if .Config.DNS.Provider.Route53.AWSCredsPath }} - shared_credentials_file = "{{.Config.DNS.Provider.Route53.AWSCredsPath}}" - {{- end }} +{{- if eq .Config.DNS.Provider "manual" }} + +output "dns_entries" { + value = module.dns.entries } {{- end }} From f3a4bc9e906b46bb0a845ea6434186c311b388e6 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Thu, 7 May 2020 21:01:40 +0200 Subject: [PATCH 02/10] packet: Add Cloudflare DNS support --- .../dns/cloudflare/main.tf | 37 +++++++++++++++++++ .../dns/cloudflare/require.tf | 7 ++++ .../dns/cloudflare/variables.tf | 19 ++++++++++ pkg/assets/generated_assets.go | 29 +++++++++++++++ pkg/dns/dns.go | 4 ++ 5 files changed, 96 insertions(+) create mode 100644 assets/lokomotive-kubernetes/dns/cloudflare/main.tf create mode 100644 assets/lokomotive-kubernetes/dns/cloudflare/require.tf create mode 100644 assets/lokomotive-kubernetes/dns/cloudflare/variables.tf diff --git a/assets/lokomotive-kubernetes/dns/cloudflare/main.tf b/assets/lokomotive-kubernetes/dns/cloudflare/main.tf new file mode 100644 index 000000000..65f8f2fbd --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/cloudflare/main.tf @@ -0,0 +1,37 @@ +data "cloudflare_zones" "selected" { + filter { + name = var.dns_zone + status = "active" + paused = false + } +} + +resource "cloudflare_record" "apiserver_public" { + count = length(var.controllers_public_ipv4) + + zone_id = lookup(data.cloudflare_zones.selected.zones[0], "id") + name = format("%s.%s.", var.cluster_name, var.dns_zone) + type = "A" + ttl = 300 + value = var.controllers_public_ipv4[count.index] +} + +resource "cloudflare_record" "apiserver_private" { + count = length(var.controllers_private_ipv4) + + zone_id = lookup(data.cloudflare_zones.selected.zones[0], "id") + name = format("%s-private.%s.", var.cluster_name, var.dns_zone) + type = "A" + ttl = 300 + value = var.controllers_private_ipv4[count.index] +} + +resource "cloudflare_record" "etcd" { + count = length(var.controllers_private_ipv4) + + zone_id = lookup(data.cloudflare_zones.selected.zones[0], "id") + name = format("%s-etcd%d.%s.", var.cluster_name, count.index, var.dns_zone) + type = "A" + ttl = 300 + value = var.controllers_private_ipv4[count.index] +} diff --git a/assets/lokomotive-kubernetes/dns/cloudflare/require.tf b/assets/lokomotive-kubernetes/dns/cloudflare/require.tf new file mode 100644 index 000000000..20c02973f --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/cloudflare/require.tf @@ -0,0 +1,7 @@ +terraform { + required_version = ">= 0.12.0" + + required_providers { + cloudflare = "~> 2.0" + } +} diff --git a/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf b/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf new file mode 100644 index 000000000..21b6369bc --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf @@ -0,0 +1,19 @@ +variable "cluster_name" { + type = string + description = "Unique cluster name (prepended to dns_zone)" +} + +variable "controllers_public_ipv4" { + type = list(string) + description = "Public IPv4 addresses of all the controllers in the cluster" +} + +variable "controllers_private_ipv4" { + type = list(string) + description = "Private IPv4 addresses of all the controllers in the cluster" +} + +variable "dns_zone" { + type = string + description = "Zone name under which records should be created (e.g. example.com)" +} diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index f3af52407..98aae2c06 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -4370,6 +4370,29 @@ var vfsgenAssets = func() http.FileSystem { name: "dns", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, + "/lokomotive-kubernetes/dns/cloudflare": &vfsgen۰DirInfo{ + name: "cloudflare", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/lokomotive-kubernetes/dns/cloudflare/main.tf": &vfsgen۰CompressedFileInfo{ + name: "main.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1078, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x21\x50\x68\xa1\x86\x82\x5e\xf7\xe0\x73\x94\xb2\xc4\x64\xaa\xc1\x34\x59\x66\x26\x8b\x7f\xe8\xbb\x4b\xd2\x55\x5b\xa1\x60\x0f\x16\x6f\x3b\x9b\x19\xbe\xef\xf7\xf3\x56\x2c\x68\x17\x73\xf1\xdb\x68\x09\xfb\xb7\x9c\x90\x35\x68\xc6\x88\x4e\xd0\x6b\x78\x57\x00\xdb\x10\x05\xa9\x7d\x02\x24\xbb\x43\x00\xe8\x60\xb4\x64\x7c\xe2\x76\xd3\x5e\x58\xac\x14\x86\x0e\xb4\x75\x12\x46\xd4\xed\xef\x60\x0b\xa3\x87\x0e\xb6\x36\x72\x5d\xdc\xab\xbd\x52\x84\x9c\x0b\x39\x3c\x49\x27\x74\x99\xbc\x06\x6d\x87\xc0\x48\x23\x52\x3f\x94\x87\x18\xdc\xa1\x86\xcb\x25\x09\x74\x10\x31\x3d\xca\xd3\xbc\xe6\xbb\x9c\x84\x72\x8c\x48\x3c\xad\xf6\x61\x18\xef\x16\x4a\x01\xd4\x5e\x7d\xa8\xc9\x31\xe7\xe7\x32\xcc\x2b\xad\xf9\x09\x6b\x3e\x51\x4d\x1b\xd7\xab\xcd\x12\x74\xf0\x7a\xa1\xbe\x50\x6b\xf7\x4c\x3b\x2b\x73\x3d\x63\x33\x63\xa3\x97\x0d\xde\xc5\xc2\x82\xd4\xd7\xb5\xe5\x89\x8e\x7a\x2c\xaf\xc3\x74\xac\xef\xab\x09\x91\x08\x87\xf9\x76\xb5\x52\x00\xa3\x8d\xe5\x5b\xe4\x19\x90\x75\x63\x36\x21\x79\x7c\xd9\x5c\xe4\x8d\xc2\x68\x05\x7f\x27\xee\xb0\xfb\xd7\xe6\x6e\xa6\x9c\x6b\x18\x3c\x22\xba\x50\x21\x8a\xf3\xff\xca\x5a\x2d\x34\xf3\x67\xa5\x1d\xd1\x5d\xcb\xe0\x47\x00\x00\x00\xff\xff\xef\x8d\xc2\x14\x36\x04\x00\x00"), + }, + "/lokomotive-kubernetes/dns/cloudflare/require.tf": &vfsgen۰FileInfo{ + name: "require.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + content: []byte("\x74\x65\x72\x72\x61\x66\x6f\x72\x6d\x20\x7b\x0a\x20\x20\x72\x65\x71\x75\x69\x72\x65\x64\x5f\x76\x65\x72\x73\x69\x6f\x6e\x20\x3d\x20\x22\x3e\x3d\x20\x30\x2e\x31\x32\x2e\x30\x22\x0a\x0a\x20\x20\x72\x65\x71\x75\x69\x72\x65\x64\x5f\x70\x72\x6f\x76\x69\x64\x65\x72\x73\x20\x7b\x0a\x20\x20\x20\x20\x63\x6c\x6f\x75\x64\x66\x6c\x61\x72\x65\x20\x3d\x20\x22\x7e\x3e\x20\x32\x2e\x30\x22\x0a\x20\x20\x7d\x0a\x7d\x0a"), + }, + "/lokomotive-kubernetes/dns/cloudflare/variables.tf": &vfsgen۰CompressedFileInfo{ + name: "variables.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 542, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xbd\x6a\xc3\x30\x14\x85\x77\x3f\xc5\xc1\x93\xb3\x78\xca\x9a\x07\xe8\x96\xa5\x4b\x17\x23\x4b\xa7\xb1\x40\xbe\x52\xef\x95\xdd\x3f\xfa\xee\xa5\x71\x0a\x81\x96\x42\x4b\x35\x0a\x3e\xce\xc7\xfd\x56\xa7\xd1\x8d\x89\x68\x7d\x5a\xac\x52\x07\x71\x33\x5b\xbc\x36\x40\x7d\x2e\xc4\xe5\x1d\x60\x55\xa3\x9c\x1a\x20\xd0\xbc\xc6\x52\x63\x16\x1c\xd0\xde\x4a\x7c\x58\x88\x0b\x8e\x0f\x1c\x5d\x51\x16\x4a\x60\x40\xcd\x08\x62\xc3\x4b\x16\xee\xda\xe6\xad\x69\xae\x16\xb3\x54\xcd\x29\x51\x6d\x28\xcb\x98\xa2\x1f\x62\x59\xf7\xdf\x8d\xa7\x68\xb5\xdb\x0c\x76\x5f\x15\x8e\x67\x18\x37\xc7\x75\x0f\x17\x82\xd2\x8c\x86\x7c\x0f\x97\x12\xea\x44\x5c\x2d\x21\xca\xf6\xb5\xf9\xfe\xa4\xa4\x71\x75\x95\x7f\x75\xda\xe8\xff\x90\xfa\xbc\xdf\x6f\xaa\xdc\x65\xe1\xd6\x62\x91\x40\xc5\xe3\x14\xfd\x04\xa5\xcf\x1a\x0c\x36\xe5\x25\x05\x8c\x84\x57\xba\xca\x80\x8e\xfd\xa9\x07\x9f\xdc\x5c\x12\x7b\x9f\xe7\x73\xac\xf7\x00\x00\x00\xff\xff\x2d\xd1\xe9\xdf\x1e\x02\x00\x00"), + }, "/lokomotive-kubernetes/dns/manual": &vfsgen۰DirInfo{ name: "manual", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -5726,9 +5749,15 @@ var vfsgenAssets = func() http.FileSystem { fs["/lokomotive-kubernetes/bootkube/resources/charts/pod-checkpointer/templates/sa.yaml"].(os.FileInfo), } fs["/lokomotive-kubernetes/dns"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/lokomotive-kubernetes/dns/cloudflare"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/manual"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/route53"].(os.FileInfo), } + fs["/lokomotive-kubernetes/dns/cloudflare"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/lokomotive-kubernetes/dns/cloudflare/main.tf"].(os.FileInfo), + fs["/lokomotive-kubernetes/dns/cloudflare/require.tf"].(os.FileInfo), + fs["/lokomotive-kubernetes/dns/cloudflare/variables.tf"].(os.FileInfo), + } fs["/lokomotive-kubernetes/dns/manual"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/lokomotive-kubernetes/dns/manual/main.tf"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/manual/require.tf"].(os.FileInfo), diff --git a/pkg/dns/dns.go b/pkg/dns/dns.go index 9ba9def29..0cf273686 100644 --- a/pkg/dns/dns.go +++ b/pkg/dns/dns.go @@ -26,6 +26,8 @@ import ( ) const ( + // Cloudflare represents DNS managed in Cloudflare. + Cloudflare = "cloudflare" // Manual represents a manual DNS configuration. Manual = "manual" // Route53 represents DNS managed in Route 53. @@ -52,6 +54,8 @@ func (c *Config) Validate() error { return nil case Route53: return nil + case Cloudflare: + return nil } return fmt.Errorf("invalid DNS provider %q", c.Provider) From 6f7607781acede91fe343658a51c80b18e7c1a1f Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Tue, 12 May 2020 19:33:14 +0200 Subject: [PATCH 03/10] docs: Update DNS knobs in Packet config reference --- .../platforms/packet.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/docs/configuration-reference/platforms/packet.md b/docs/configuration-reference/platforms/packet.md index 559313ed5..06440ce29 100644 --- a/docs/configuration-reference/platforms/packet.md +++ b/docs/configuration-reference/platforms/packet.md @@ -84,15 +84,8 @@ cluster "packet" { project_id = var.packet_project_id dns { - zone = var.dns_zone - - provider { - route53 { - zone_id = var.route53_zone_id - } - } - - # manual {} + zone = var.dns_zone + provider = "route53" } ssh_pubkeys = var.ssh_public_keys @@ -197,12 +190,8 @@ node_type = var.custom_default_worker_type | `controller_count` | Number of controller nodes. | 1 | false | | `controller_type` | Packet instance type for controllers. | "baremetal_0" | false | | `dns` | DNS configuration block. | - | true | -| `dns.zone` | DNS Zone. | - | true | -| `dns.provider` | DNS Provider configuration block. Route 53 or Manual. | - | true | -| `dns.provider.route53` | Route 53 DNS Configuration. | - | false | -| `dns.provider.route53.zone_id` | Route 53 DNS Zone ID. | - | true | -| `dns.provider.route53.aws_creds_path` | AWS credentials for managing Route 53 DNS. | - | false | -| `dns.provider.manual` | Manual DNS configuration. | - | false | +| `dns.zone` | A DNS zone to use for the cluster. The following format is used for cluster-related DNS records: `..` | - | true | +| `dns.provider` | DNS provider to use for the cluster. Valid values: `cloudflare`, `route53`, `manual`. | - | true | | `oidc` | OIDC configuration block. | - | 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. | - | false | | `oidc.client_id` | A client id that all tokens must be issued for. | "gangway" | false | From 762b920ff24a4b039efe7f9c4df9d26934159ece Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Tue, 12 May 2020 19:34:21 +0200 Subject: [PATCH 04/10] docs/concepts: Add a document about DNS DNS-related behavior varies in Lokomotive based on the chosen platform. In addition, multiple DNS providers are supported. This document lists the supported DNS providers. In addition, it describes what records are created in detail. --- docs/concepts/dns.md | 80 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 docs/concepts/dns.md diff --git a/docs/concepts/dns.md b/docs/concepts/dns.md new file mode 100644 index 000000000..a67d2a4d0 --- /dev/null +++ b/docs/concepts/dns.md @@ -0,0 +1,80 @@ +# DNS + +Lokomotive relies on DNS records for cluster bootstrap as well as routine operation. When choosing +one of the [supported DNS providers](#supported-providers), Lokomotive can provision the necessary +DNS records on your behalf. + +## Supported providers + +- [AWS Route 53](https://aws.amazon.com/route53/) - supported with AWS and Packet clusters +- [Cloudflare](https://www.cloudflare.com/dns/) - supported with Packet clusters +- Manual - supported with Packet clusters + +>NOTE: The *manual* DNS provider is a special provider. When using this option, no DNS records are +>provisioned automatically. Instead, the user is prompted to configure the necessary DNS records on +>their own. + +The records on which Lokomotive relies are mostly DNS **A records**. They are constructed based on +the DNS zone provided by the user and the configured cluster name in the following format: + + .. + +The exact set of records created varies slightly based on the platform on top of which Lokomotive +is deployed. The following sections provide a per-platform explanation. + +## AKS + +AKS is a managed Kubernetes platform which takes care of any required DNS configuration on the +user's behalf. Consequently, Lokomotive doesn't manage DNS for AKS deployments. + +## AWS + +Lokomotive deployments on AWS leverage an AWS +[Network Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/introduction.html) +(NLB). This load balancer serves a dual purpose by default: routing Kubernetes API traffic to the +controller nodes and routing HTTP/S traffic to ingress pods. + +Following is a sample record set for an AWS cluster called `my-cluster` with 3 controller nodes +under a zone called `example.com`. For illustration, assume the controller nodes have the following +IP addresses: + +- Controller 1: `35.0.0.1` (public) and `10.0.0.1` (private) +- Controller 2: `35.0.0.2` (public) and `10.0.0.2` (private) +- Controller 3: `35.0.0.3` (public) and `10.0.0.3` (private) + +Based on the information above, the following DNS records are created: + +- `my-cluster.example.com` - an + [alias record](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resource-record-sets-choosing-alias-non-alias.html) + which automatically resolves to one of the NLB's IP addresses +- `my-cluster-etcd0.example.com` - resolves to `10.0.0.1` +- `my-cluster-etcd1.example.com` - resolves to `10.0.0.2` +- `my-cluster-etcd2.example.com` - resolves to `10.0.0.3` +- `*.my-cluster.example.com` - a CNAME record which resolves to `my-cluster.example.com` + +>NOTE: The wildcard CNAME record allows to configure arbitrary subdomains on an ingress controller. +>This enables exposing Kubernetes services to the internet automatically, without having to +>configure an individual DNS record for each service. + +## Bare Metal + +Lokomotive currently doesn't support DNS provisioning for bare metal clusters. The user has to +create the necessary records *in advance*, before deploying a cluster. + +## Packet + +Following is a sample record set for a Packet cluster called `my-cluster` with 3 controller nodes +under a zone called `example.com`. For illustration, assume the controller nodes have the following +IP addresses: + +- Controller 1: `147.0.0.1` (public) and `10.0.0.1` (private) +- Controller 2: `147.0.0.2` (public) and `10.0.0.2` (private) +- Controller 3: `147.0.0.3` (public) and `10.0.0.3` (private) + +Based on the information above, the following DNS records are created: + +- `my-cluster.example.com` - resolves to the following IPs in round robin: `147.0.0.1`, `147.0.0.2`, `147.0.0.3` +- `my-cluster-private.example.com` - resolves to the following IPs in round robin: `10.0.0.1`, `10.0.0.2`, `10.0.0.3` +- `my-cluster-etcd0.example.com` - resolves to `10.0.0.1` +- `my-cluster-etcd1.example.com` - resolves to `10.0.0.2` +- `my-cluster-etcd2.example.com` - resolves to `10.0.0.3` From 8651b10c1d60cc48413b0021d2a179af58e9f288 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Tue, 12 May 2020 19:47:01 +0200 Subject: [PATCH 05/10] docs: Remove extra space --- docs/configuration-reference/platforms/packet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration-reference/platforms/packet.md b/docs/configuration-reference/platforms/packet.md index 06440ce29..daffbe39b 100644 --- a/docs/configuration-reference/platforms/packet.md +++ b/docs/configuration-reference/platforms/packet.md @@ -162,7 +162,7 @@ block in the cluster configuration. Example: The default for node_type is `baremetal_0`. If you wish to change the default, then you -define the variable and use it to refer in the cluster configuration. +define the variable and use it to refer in the cluster configuration. ```tf variable "custom_default_worker_type" { From 7ca560771fbe7a62033f59a0ea8c8778675c6149 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Tue, 12 May 2020 20:28:37 +0200 Subject: [PATCH 06/10] docs/how-to-guides: Add a guide for Cloudflare DNS Although at the moment Cloudflare is supported only with Packet clusters, Cloudflare DNS support isn't strictly tied to Packet. Since the Packet quickstart guide is using Route 53 as the DNS provider, it makes sense to me to add the Cloudflare-related information as a how-to guide for the sake of keeping the quickstart simple and minimal. Putting this information in the configuration reference seemed strange to me since we aren't really providing information about config knobs but are rather giving a "recipe" for achieving a specific result (a cluster with Cloudflare DNS). --- docs/how-to-guides/cloudflare-dns.md | 67 ++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 docs/how-to-guides/cloudflare-dns.md diff --git a/docs/how-to-guides/cloudflare-dns.md b/docs/how-to-guides/cloudflare-dns.md new file mode 100644 index 000000000..4cc57447a --- /dev/null +++ b/docs/how-to-guides/cloudflare-dns.md @@ -0,0 +1,67 @@ +# Using Cloudflare as a DNS provider for Lokomotive + +## Contents + +* [Introduction](#introduction) +* [Prerequisites](#prerequisites) +* [Step 1: Configure Cloudflare as the DNS provider](#step-1-configure-cloudflare-as-the-dns-provider) +* [Step 2: Deploy the cluster](#step-2-deploy-the-cluster) +* [Additional resources](#additional-resources) + +## Introduction + +This guide explains how to use [Cloudflare](https://www.cloudflare.com/) as a +DNS provider for a Lokomotive cluster. + +## Prerequisites + +The following are required: + +- A Cloudflare account with a hosted DNS zone. +- A [Cloudflare API token](https://developers.cloudflare.com/api/tokens/create) +is required. This token will be used by the Lokomotive tooling to create DNS +records on Cloudflare on your behalf. + +The token needs to have the following permissions: + +- `Zone.Zone` - read +- `Zone.DNS` - edit + +## Steps + +### Step 1: Configure Cloudflare as the DNS provider + +In your cluster configuration file, configure Cloudflare as the DNS provider: + +```hcl +cluster "packet" { + cluster_name = "my-cluster" + ... + dns { + zone = "example.com" + provider = "cloudflare" + } + ... +} +``` + +### Step 2: Deploy the cluster + +Set your Cloudflare API token in the `CLOUDFLARE_API_TOKEN` environment +variable: + +``` +export CLOUDFLARE_API_TOKEN=6IgMwujC2q92AvSgOJ60aCQD5uo9sA +``` + +Deploy the cluster: + +``` +lokoctl cluster apply +``` + +## Additional resources + +For full information about how to deploy a Lokomotive cluster, refer to the +[configuration reference](../configuration-reference) or to one of the +[quickstart guides](../quickstarts). From ad43144010d52aaab7126ea2d93f39e244ba72bd Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Tue, 12 May 2020 21:06:08 +0200 Subject: [PATCH 07/10] ci/packet: Update DNS config The DNS configuration syntax has been changed. --- ci/packet-arm/packet-arm-cluster.lokocfg.envsubst | 9 ++------- ci/packet/packet-cluster.lokocfg.envsubst | 9 ++------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/ci/packet-arm/packet-arm-cluster.lokocfg.envsubst b/ci/packet-arm/packet-arm-cluster.lokocfg.envsubst index c60fa9601..429b6b10b 100644 --- a/ci/packet-arm/packet-arm-cluster.lokocfg.envsubst +++ b/ci/packet-arm/packet-arm-cluster.lokocfg.envsubst @@ -4,13 +4,8 @@ cluster "packet" { controller_count = 1 dns { - zone = "$AWS_DNS_ZONE" - - provider { - route53 { - zone_id = "$AWS_DNS_ZONE_ID" - } - } + provider = "route53" + zone = "$AWS_DNS_ZONE" } facility = "$PACKET_LOCATION" diff --git a/ci/packet/packet-cluster.lokocfg.envsubst b/ci/packet/packet-cluster.lokocfg.envsubst index 2795ba918..ac1e389c7 100644 --- a/ci/packet/packet-cluster.lokocfg.envsubst +++ b/ci/packet/packet-cluster.lokocfg.envsubst @@ -4,13 +4,8 @@ cluster "packet" { controller_count = 1 dns { - zone = "$AWS_DNS_ZONE" - - provider { - route53 { - zone_id = "$AWS_DNS_ZONE_ID" - } - } + provider = "route53" + zone = "$AWS_DNS_ZONE" } facility = "$PACKET_LOCATION" From 27841e70aaa28394addf4fcef35c3a3e3945a591 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Thu, 14 May 2020 20:16:00 +0200 Subject: [PATCH 08/10] dns: Use symlinks to reduce TF var duplication Since we have the same Terraform variables for all DNS modules, we can reduce duplication by symlinking a shared file. --- .../dns/cloudflare/variables.tf | 20 +---------------- .../dns/manual/variables.tf | 20 +---------------- .../dns/route53/variables.tf | 20 +---------------- .../dns/shared-variables.tf | 22 +++++++++++++++++++ pkg/assets/generated_assets.go | 20 ++++++++++++----- 5 files changed, 39 insertions(+), 63 deletions(-) mode change 100644 => 120000 assets/lokomotive-kubernetes/dns/cloudflare/variables.tf mode change 100644 => 120000 assets/lokomotive-kubernetes/dns/manual/variables.tf mode change 100644 => 120000 assets/lokomotive-kubernetes/dns/route53/variables.tf create mode 100644 assets/lokomotive-kubernetes/dns/shared-variables.tf diff --git a/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf b/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf deleted file mode 100644 index 21b6369bc..000000000 --- a/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf +++ /dev/null @@ -1,19 +0,0 @@ -variable "cluster_name" { - type = string - description = "Unique cluster name (prepended to dns_zone)" -} - -variable "controllers_public_ipv4" { - type = list(string) - description = "Public IPv4 addresses of all the controllers in the cluster" -} - -variable "controllers_private_ipv4" { - type = list(string) - description = "Private IPv4 addresses of all the controllers in the cluster" -} - -variable "dns_zone" { - type = string - description = "Zone name under which records should be created (e.g. example.com)" -} diff --git a/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf b/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf new file mode 120000 index 000000000..f2be296cd --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/cloudflare/variables.tf @@ -0,0 +1 @@ +../shared-variables.tf \ No newline at end of file diff --git a/assets/lokomotive-kubernetes/dns/manual/variables.tf b/assets/lokomotive-kubernetes/dns/manual/variables.tf deleted file mode 100644 index 21b6369bc..000000000 --- a/assets/lokomotive-kubernetes/dns/manual/variables.tf +++ /dev/null @@ -1,19 +0,0 @@ -variable "cluster_name" { - type = string - description = "Unique cluster name (prepended to dns_zone)" -} - -variable "controllers_public_ipv4" { - type = list(string) - description = "Public IPv4 addresses of all the controllers in the cluster" -} - -variable "controllers_private_ipv4" { - type = list(string) - description = "Private IPv4 addresses of all the controllers in the cluster" -} - -variable "dns_zone" { - type = string - description = "Zone name under which records should be created (e.g. example.com)" -} diff --git a/assets/lokomotive-kubernetes/dns/manual/variables.tf b/assets/lokomotive-kubernetes/dns/manual/variables.tf new file mode 120000 index 000000000..f2be296cd --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/manual/variables.tf @@ -0,0 +1 @@ +../shared-variables.tf \ No newline at end of file diff --git a/assets/lokomotive-kubernetes/dns/route53/variables.tf b/assets/lokomotive-kubernetes/dns/route53/variables.tf deleted file mode 100644 index 21b6369bc..000000000 --- a/assets/lokomotive-kubernetes/dns/route53/variables.tf +++ /dev/null @@ -1,19 +0,0 @@ -variable "cluster_name" { - type = string - description = "Unique cluster name (prepended to dns_zone)" -} - -variable "controllers_public_ipv4" { - type = list(string) - description = "Public IPv4 addresses of all the controllers in the cluster" -} - -variable "controllers_private_ipv4" { - type = list(string) - description = "Private IPv4 addresses of all the controllers in the cluster" -} - -variable "dns_zone" { - type = string - description = "Zone name under which records should be created (e.g. example.com)" -} diff --git a/assets/lokomotive-kubernetes/dns/route53/variables.tf b/assets/lokomotive-kubernetes/dns/route53/variables.tf new file mode 120000 index 000000000..f2be296cd --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/route53/variables.tf @@ -0,0 +1 @@ +../shared-variables.tf \ No newline at end of file diff --git a/assets/lokomotive-kubernetes/dns/shared-variables.tf b/assets/lokomotive-kubernetes/dns/shared-variables.tf new file mode 100644 index 000000000..f4e6215f3 --- /dev/null +++ b/assets/lokomotive-kubernetes/dns/shared-variables.tf @@ -0,0 +1,22 @@ +# This file contains variables which are shared among all modules in this directory. Its purpose is +# to reduce duplication and assist in enforcing a common "interface" for all the modules. + +variable "cluster_name" { + type = string + description = "Unique cluster name (prepended to dns_zone)" +} + +variable "controllers_public_ipv4" { + type = list(string) + description = "Public IPv4 addresses of all the controllers in the cluster" +} + +variable "controllers_private_ipv4" { + type = list(string) + description = "Private IPv4 addresses of all the controllers in the cluster" +} + +variable "dns_zone" { + type = string + description = "Zone name under which records should be created (e.g. example.com)" +} diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 98aae2c06..538308097 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -4389,9 +4389,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/dns/cloudflare/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 542, + uncompressedSize: 733, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xbd\x6a\xc3\x30\x14\x85\x77\x3f\xc5\xc1\x93\xb3\x78\xca\x9a\x07\xe8\x96\xa5\x4b\x17\x23\x4b\xa7\xb1\x40\xbe\x52\xef\x95\xdd\x3f\xfa\xee\xa5\x71\x0a\x81\x96\x42\x4b\x35\x0a\x3e\xce\xc7\xfd\x56\xa7\xd1\x8d\x89\x68\x7d\x5a\xac\x52\x07\x71\x33\x5b\xbc\x36\x40\x7d\x2e\xc4\xe5\x1d\x60\x55\xa3\x9c\x1a\x20\xd0\xbc\xc6\x52\x63\x16\x1c\xd0\xde\x4a\x7c\x58\x88\x0b\x8e\x0f\x1c\x5d\x51\x16\x4a\x60\x40\xcd\x08\x62\xc3\x4b\x16\xee\xda\xe6\xad\x69\xae\x16\xb3\x54\xcd\x29\x51\x6d\x28\xcb\x98\xa2\x1f\x62\x59\xf7\xdf\x8d\xa7\x68\xb5\xdb\x0c\x76\x5f\x15\x8e\x67\x18\x37\xc7\x75\x0f\x17\x82\xd2\x8c\x86\x7c\x0f\x97\x12\xea\x44\x5c\x2d\x21\xca\xf6\xb5\xf9\xfe\xa4\xa4\x71\x75\x95\x7f\x75\xda\xe8\xff\x90\xfa\xbc\xdf\x6f\xaa\xdc\x65\xe1\xd6\x62\x91\x40\xc5\xe3\x14\xfd\x04\xa5\xcf\x1a\x0c\x36\xe5\x25\x05\x8c\x84\x57\xba\xca\x80\x8e\xfd\xa9\x07\x9f\xdc\x5c\x12\x7b\x9f\xe7\x73\xac\xf7\x00\x00\x00\xff\xff\x2d\xd1\xe9\xdf\x1e\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbd\x8e\x14\x31\x10\x84\xf3\x79\x8a\xd2\x5c\xb2\x97\x4c\x74\xe9\x3d\xc0\x65\x17\x40\x42\xb2\xf2\xda\x35\x3b\x2d\x79\xdc\xa6\xdb\x5e\x38\x10\xef\x8e\x66\xff\x04\x02\x21\x81\x70\xec\xea\xef\x73\x97\x1f\xf0\x6e\x11\xc7\x2c\x99\x88\x5a\x5a\x90\xe2\x38\x05\x93\x70\xc8\x74\x7c\x5a\x24\x2e\x08\x46\xf8\x12\x8c\x09\x61\xd5\x72\x44\xc8\x19\xab\xa6\xbe\x5d\x91\x82\xb6\x8d\x48\x62\x8c\x4d\xed\x6d\xc2\x4b\x73\xd4\x6e\x55\x9d\x10\x1f\x1e\xd0\x14\xc6\xd4\x23\x91\x7a\xcd\x12\x43\x13\x2d\x08\x25\x21\xb8\x8b\xb7\x6d\x08\xcb\xac\x16\x65\x9b\x8e\xa8\xeb\xaa\x05\xa3\x94\x46\x9b\x43\xe4\x88\x59\xed\x8c\x6d\x0b\x6f\xe8\x69\x18\x6e\xa6\x18\x63\xee\xde\x68\xfb\x12\x56\x8e\xf8\x3a\x00\xed\xad\x12\xd7\xf3\x0c\x6f\x26\xe5\x38\x00\x89\x1e\x4d\xea\xd9\xe0\x19\xe3\xfb\x22\x1f\x3b\x71\x8d\x63\x8b\x63\x57\x8d\x95\x25\x31\x6d\xe6\xa9\xf8\xfe\x8b\x16\x3e\x8e\xc3\xb7\x9f\x88\x5a\x9a\x69\xce\x34\xdf\xd7\x7e\xc8\x12\xf7\x52\x4f\x4f\xbf\x83\x67\xf1\xb6\xbb\x18\x3c\xfe\xaa\xf0\x7a\x0e\xe3\xe5\xf5\xf4\x84\x90\x92\xd1\x9d\x0e\x9d\xef\xef\xfd\x81\x74\x59\xf7\xdd\xf7\x4f\x4a\x26\xa7\xd0\xf8\xaf\x4e\x97\xf4\xff\x90\xba\xed\xef\x6f\x5a\xf9\xa0\x85\x97\x2e\x7a\x49\xb4\xeb\x3f\x34\x46\xb5\xe4\xf0\x45\x7b\x4e\x38\x10\xd1\x18\x1a\x13\x76\x9c\x8e\x13\xf8\x39\xac\x35\x73\x8a\xba\x9e\xcb\xfa\x1e\x00\x00\xff\xff\x4e\xb2\x14\xd2\xdd\x02\x00\x00"), }, "/lokomotive-kubernetes/dns/manual": &vfsgen۰DirInfo{ name: "manual", @@ -4412,9 +4412,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/dns/manual/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 542, + uncompressedSize: 733, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xbd\x6a\xc3\x30\x14\x85\x77\x3f\xc5\xc1\x93\xb3\x78\xca\x9a\x07\xe8\x96\xa5\x4b\x17\x23\x4b\xa7\xb1\x40\xbe\x52\xef\x95\xdd\x3f\xfa\xee\xa5\x71\x0a\x81\x96\x42\x4b\x35\x0a\x3e\xce\xc7\xfd\x56\xa7\xd1\x8d\x89\x68\x7d\x5a\xac\x52\x07\x71\x33\x5b\xbc\x36\x40\x7d\x2e\xc4\xe5\x1d\x60\x55\xa3\x9c\x1a\x20\xd0\xbc\xc6\x52\x63\x16\x1c\xd0\xde\x4a\x7c\x58\x88\x0b\x8e\x0f\x1c\x5d\x51\x16\x4a\x60\x40\xcd\x08\x62\xc3\x4b\x16\xee\xda\xe6\xad\x69\xae\x16\xb3\x54\xcd\x29\x51\x6d\x28\xcb\x98\xa2\x1f\x62\x59\xf7\xdf\x8d\xa7\x68\xb5\xdb\x0c\x76\x5f\x15\x8e\x67\x18\x37\xc7\x75\x0f\x17\x82\xd2\x8c\x86\x7c\x0f\x97\x12\xea\x44\x5c\x2d\x21\xca\xf6\xb5\xf9\xfe\xa4\xa4\x71\x75\x95\x7f\x75\xda\xe8\xff\x90\xfa\xbc\xdf\x6f\xaa\xdc\x65\xe1\xd6\x62\x91\x40\xc5\xe3\x14\xfd\x04\xa5\xcf\x1a\x0c\x36\xe5\x25\x05\x8c\x84\x57\xba\xca\x80\x8e\xfd\xa9\x07\x9f\xdc\x5c\x12\x7b\x9f\xe7\x73\xac\xf7\x00\x00\x00\xff\xff\x2d\xd1\xe9\xdf\x1e\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbd\x8e\x14\x31\x10\x84\xf3\x79\x8a\xd2\x5c\xb2\x97\x4c\x74\xe9\x3d\xc0\x65\x17\x40\x42\xb2\xf2\xda\x35\x3b\x2d\x79\xdc\xa6\xdb\x5e\x38\x10\xef\x8e\x66\xff\x04\x02\x21\x81\x70\xec\xea\xef\x73\x97\x1f\xf0\x6e\x11\xc7\x2c\x99\x88\x5a\x5a\x90\xe2\x38\x05\x93\x70\xc8\x74\x7c\x5a\x24\x2e\x08\x46\xf8\x12\x8c\x09\x61\xd5\x72\x44\xc8\x19\xab\xa6\xbe\x5d\x91\x82\xb6\x8d\x48\x62\x8c\x4d\xed\x6d\xc2\x4b\x73\xd4\x6e\x55\x9d\x10\x1f\x1e\xd0\x14\xc6\xd4\x23\x91\x7a\xcd\x12\x43\x13\x2d\x08\x25\x21\xb8\x8b\xb7\x6d\x08\xcb\xac\x16\x65\x9b\x8e\xa8\xeb\xaa\x05\xa3\x94\x46\x9b\x43\xe4\x88\x59\xed\x8c\x6d\x0b\x6f\xe8\x69\x18\x6e\xa6\x18\x63\xee\xde\x68\xfb\x12\x56\x8e\xf8\x3a\x00\xed\xad\x12\xd7\xf3\x0c\x6f\x26\xe5\x38\x00\x89\x1e\x4d\xea\xd9\xe0\x19\xe3\xfb\x22\x1f\x3b\x71\x8d\x63\x8b\x63\x57\x8d\x95\x25\x31\x6d\xe6\xa9\xf8\xfe\x8b\x16\x3e\x8e\xc3\xb7\x9f\x88\x5a\x9a\x69\xce\x34\xdf\xd7\x7e\xc8\x12\xf7\x52\x4f\x4f\xbf\x83\x67\xf1\xb6\xbb\x18\x3c\xfe\xaa\xf0\x7a\x0e\xe3\xe5\xf5\xf4\x84\x90\x92\xd1\x9d\x0e\x9d\xef\xef\xfd\x81\x74\x59\xf7\xdd\xf7\x4f\x4a\x26\xa7\xd0\xf8\xaf\x4e\x97\xf4\xff\x90\xba\xed\xef\x6f\x5a\xf9\xa0\x85\x97\x2e\x7a\x49\xb4\xeb\x3f\x34\x46\xb5\xe4\xf0\x45\x7b\x4e\x38\x10\xd1\x18\x1a\x13\x76\x9c\x8e\x13\xf8\x39\xac\x35\x73\x8a\xba\x9e\xcb\xfa\x1e\x00\x00\xff\xff\x4e\xb2\x14\xd2\xdd\x02\x00\x00"), }, "/lokomotive-kubernetes/dns/route53": &vfsgen۰DirInfo{ name: "route53", @@ -4435,9 +4435,16 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/dns/route53/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 542, + uncompressedSize: 733, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbd\x8e\x14\x31\x10\x84\xf3\x79\x8a\xd2\x5c\xb2\x97\x4c\x74\xe9\x3d\xc0\x65\x17\x40\x42\xb2\xf2\xda\x35\x3b\x2d\x79\xdc\xa6\xdb\x5e\x38\x10\xef\x8e\x66\xff\x04\x02\x21\x81\x70\xec\xea\xef\x73\x97\x1f\xf0\x6e\x11\xc7\x2c\x99\x88\x5a\x5a\x90\xe2\x38\x05\x93\x70\xc8\x74\x7c\x5a\x24\x2e\x08\x46\xf8\x12\x8c\x09\x61\xd5\x72\x44\xc8\x19\xab\xa6\xbe\x5d\x91\x82\xb6\x8d\x48\x62\x8c\x4d\xed\x6d\xc2\x4b\x73\xd4\x6e\x55\x9d\x10\x1f\x1e\xd0\x14\xc6\xd4\x23\x91\x7a\xcd\x12\x43\x13\x2d\x08\x25\x21\xb8\x8b\xb7\x6d\x08\xcb\xac\x16\x65\x9b\x8e\xa8\xeb\xaa\x05\xa3\x94\x46\x9b\x43\xe4\x88\x59\xed\x8c\x6d\x0b\x6f\xe8\x69\x18\x6e\xa6\x18\x63\xee\xde\x68\xfb\x12\x56\x8e\xf8\x3a\x00\xed\xad\x12\xd7\xf3\x0c\x6f\x26\xe5\x38\x00\x89\x1e\x4d\xea\xd9\xe0\x19\xe3\xfb\x22\x1f\x3b\x71\x8d\x63\x8b\x63\x57\x8d\x95\x25\x31\x6d\xe6\xa9\xf8\xfe\x8b\x16\x3e\x8e\xc3\xb7\x9f\x88\x5a\x9a\x69\xce\x34\xdf\xd7\x7e\xc8\x12\xf7\x52\x4f\x4f\xbf\x83\x67\xf1\xb6\xbb\x18\x3c\xfe\xaa\xf0\x7a\x0e\xe3\xe5\xf5\xf4\x84\x90\x92\xd1\x9d\x0e\x9d\xef\xef\xfd\x81\x74\x59\xf7\xdd\xf7\x4f\x4a\x26\xa7\xd0\xf8\xaf\x4e\x97\xf4\xff\x90\xba\xed\xef\x6f\x5a\xf9\xa0\x85\x97\x2e\x7a\x49\xb4\xeb\x3f\x34\x46\xb5\xe4\xf0\x45\x7b\x4e\x38\x10\xd1\x18\x1a\x13\x76\x9c\x8e\x13\xf8\x39\xac\x35\x73\x8a\xba\x9e\xcb\xfa\x1e\x00\x00\xff\xff\x4e\xb2\x14\xd2\xdd\x02\x00\x00"), + }, + "/lokomotive-kubernetes/dns/shared-variables.tf": &vfsgen۰CompressedFileInfo{ + name: "shared-variables.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 733, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xbd\x6a\xc3\x30\x14\x85\x77\x3f\xc5\xc1\x93\xb3\x78\xca\x9a\x07\xe8\x96\xa5\x4b\x17\x23\x4b\xa7\xb1\x40\xbe\x52\xef\x95\xdd\x3f\xfa\xee\xa5\x71\x0a\x81\x96\x42\x4b\x35\x0a\x3e\xce\xc7\xfd\x56\xa7\xd1\x8d\x89\x68\x7d\x5a\xac\x52\x07\x71\x33\x5b\xbc\x36\x40\x7d\x2e\xc4\xe5\x1d\x60\x55\xa3\x9c\x1a\x20\xd0\xbc\xc6\x52\x63\x16\x1c\xd0\xde\x4a\x7c\x58\x88\x0b\x8e\x0f\x1c\x5d\x51\x16\x4a\x60\x40\xcd\x08\x62\xc3\x4b\x16\xee\xda\xe6\xad\x69\xae\x16\xb3\x54\xcd\x29\x51\x6d\x28\xcb\x98\xa2\x1f\x62\x59\xf7\xdf\x8d\xa7\x68\xb5\xdb\x0c\x76\x5f\x15\x8e\x67\x18\x37\xc7\x75\x0f\x17\x82\xd2\x8c\x86\x7c\x0f\x97\x12\xea\x44\x5c\x2d\x21\xca\xf6\xb5\xf9\xfe\xa4\xa4\x71\x75\x95\x7f\x75\xda\xe8\xff\x90\xfa\xbc\xdf\x6f\xaa\xdc\x65\xe1\xd6\x62\x91\x40\xc5\xe3\x14\xfd\x04\xa5\xcf\x1a\x0c\x36\xe5\x25\x05\x8c\x84\x57\xba\xca\x80\x8e\xfd\xa9\x07\x9f\xdc\x5c\x12\x7b\x9f\xe7\x73\xac\xf7\x00\x00\x00\xff\xff\x2d\xd1\xe9\xdf\x1e\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbd\x8e\x14\x31\x10\x84\xf3\x79\x8a\xd2\x5c\xb2\x97\x4c\x74\xe9\x3d\xc0\x65\x17\x40\x42\xb2\xf2\xda\x35\x3b\x2d\x79\xdc\xa6\xdb\x5e\x38\x10\xef\x8e\x66\xff\x04\x02\x21\x81\x70\xec\xea\xef\x73\x97\x1f\xf0\x6e\x11\xc7\x2c\x99\x88\x5a\x5a\x90\xe2\x38\x05\x93\x70\xc8\x74\x7c\x5a\x24\x2e\x08\x46\xf8\x12\x8c\x09\x61\xd5\x72\x44\xc8\x19\xab\xa6\xbe\x5d\x91\x82\xb6\x8d\x48\x62\x8c\x4d\xed\x6d\xc2\x4b\x73\xd4\x6e\x55\x9d\x10\x1f\x1e\xd0\x14\xc6\xd4\x23\x91\x7a\xcd\x12\x43\x13\x2d\x08\x25\x21\xb8\x8b\xb7\x6d\x08\xcb\xac\x16\x65\x9b\x8e\xa8\xeb\xaa\x05\xa3\x94\x46\x9b\x43\xe4\x88\x59\xed\x8c\x6d\x0b\x6f\xe8\x69\x18\x6e\xa6\x18\x63\xee\xde\x68\xfb\x12\x56\x8e\xf8\x3a\x00\xed\xad\x12\xd7\xf3\x0c\x6f\x26\xe5\x38\x00\x89\x1e\x4d\xea\xd9\xe0\x19\xe3\xfb\x22\x1f\x3b\x71\x8d\x63\x8b\x63\x57\x8d\x95\x25\x31\x6d\xe6\xa9\xf8\xfe\x8b\x16\x3e\x8e\xc3\xb7\x9f\x88\x5a\x9a\x69\xce\x34\xdf\xd7\x7e\xc8\x12\xf7\x52\x4f\x4f\xbf\x83\x67\xf1\xb6\xbb\x18\x3c\xfe\xaa\xf0\x7a\x0e\xe3\xe5\xf5\xf4\x84\x90\x92\xd1\x9d\x0e\x9d\xef\xef\xfd\x81\x74\x59\xf7\xdd\xf7\x4f\x4a\x26\xa7\xd0\xf8\xaf\x4e\x97\xf4\xff\x90\xba\xed\xef\x6f\x5a\xf9\xa0\x85\x97\x2e\x7a\x49\xb4\xeb\x3f\x34\x46\xb5\xe4\xf0\x45\x7b\x4e\x38\x10\xd1\x18\x1a\x13\x76\x9c\x8e\x13\xf8\x39\xac\x35\x73\x8a\xba\x9e\xcb\xfa\x1e\x00\x00\xff\xff\x4e\xb2\x14\xd2\xdd\x02\x00\x00"), }, "/lokomotive-kubernetes/google-cloud": &vfsgen۰DirInfo{ name: "google-cloud", @@ -5752,6 +5759,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/lokomotive-kubernetes/dns/cloudflare"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/manual"].(os.FileInfo), fs["/lokomotive-kubernetes/dns/route53"].(os.FileInfo), + fs["/lokomotive-kubernetes/dns/shared-variables.tf"].(os.FileInfo), } fs["/lokomotive-kubernetes/dns/cloudflare"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/lokomotive-kubernetes/dns/cloudflare/main.tf"].(os.FileInfo), From e233f6db8c564120b385a1f768e52a64574eaf52 Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Thu, 14 May 2020 21:00:54 +0200 Subject: [PATCH 09/10] dns: Rename Ttl to TTL Acronyms should have a consistent case according to the Go style guide. --- pkg/dns/dns.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/dns/dns.go b/pkg/dns/dns.go index 0cf273686..886031915 100644 --- a/pkg/dns/dns.go +++ b/pkg/dns/dns.go @@ -42,7 +42,7 @@ type Config struct { type dnsEntry struct { Name string `json:"name"` - Ttl int `json:"ttl"` + TTL int `json:"ttl"` EntryType string `json:"type"` Records []string `json:"records"` } @@ -115,7 +115,7 @@ func prettyPrintDNSEntries(entries []dnsEntry) { for _, entry := range entries { fmt.Printf("Name: %s\n", entry.Name) fmt.Printf("Type: %s\n", entry.EntryType) - fmt.Printf("Ttl: %d\n", entry.Ttl) + fmt.Printf("TTL: %d\n", entry.TTL) fmt.Printf("Records:\n") for _, record := range entry.Records { fmt.Printf("- %s\n", record) From 8c5b5158c6495a8a4e499e1b3850f004fad27d2f Mon Sep 17 00:00:00 2001 From: Johannes Liebermann Date: Thu, 28 May 2020 18:56:13 +0200 Subject: [PATCH 10/10] packet: Wait for cloud DNS records Ensure DNS records were created at the DNS provider before starting kubelet. This eliminates cases where kubelet attempts to resolve records before they were created. This results in negative DNS caching which in turn breaks the cluster bootstrap process. --- .../kubernetes/cl/controller.yaml.tmpl | 65 +++++++++++++++++-- .../flatcar-linux/kubernetes/controllers.tf | 2 + .../kubernetes/workers/cl/worker.yaml.tmpl | 60 ++++++++++++++++- .../kubernetes/workers/variables.tf | 5 ++ .../kubernetes/workers/workers.tf | 2 + pkg/assets/generated_assets.go | 20 +++--- pkg/platform/packet/template.go | 2 + 7 files changed, 141 insertions(+), 15 deletions(-) diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/cl/controller.yaml.tmpl b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/cl/controller.yaml.tmpl index 5d95c1de0..ca5406eba 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/cl/controller.yaml.tmpl +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/cl/controller.yaml.tmpl @@ -42,14 +42,13 @@ systemd: [Unit] Description=Wait for DNS entries Wants=systemd-resolved.service - Before=kubelet.service + Before=kubelet.service etcd-member.service bootkube.service [Service] Type=oneshot RemainAfterExit=true - ExecStart=/bin/sh -c 'while ! /usr/bin/grep '^[^#[:space:]]' /etc/resolv.conf > /dev/null; do sleep 1; done' + ExecStart=/bin/sh -c 'while ! /usr/bin/grep '^[^#[:space:]]' /etc/resolv.conf > /dev/null; do sleep 1; done; /opt/wait-for-dns ${dns_zone} ${cluster_name}-private 3600' [Install] - RequiredBy=kubelet.service - RequiredBy=etcd-member.service + RequiredBy=kubelet.service etcd-member.service bootkube.service - name: create-etcd-config.service # This service will extract value of private interface from the env var file `/run/metadata/flatcar`. # And then assign it to the variables that which will be stored in file `/etc/kubernetes/etcd.config`, @@ -323,6 +322,64 @@ storage: kind: KubeletConfiguration cgroupDriver: "$${docker_cgroup_driver}" EOF + - path: /opt/wait-for-dns + filesystem: root + mode: 0544 + contents: + inline: | + #!/bin/bash + # TODO: Workaround for https://github.com/flatcar-linux/Flatcar/issues/123. + function dig { + docker run -i --rm quay.io/kinvolk/alpine-dig:3.9.6 dig "$@" 2>/dev/null + } + if [[ $# -ne 3 ]]; then + echo "Usage: $0 " + exit 1 + fi + zone=$1 + record=$2 + max_attempts=$3 + echo "Figuring out the nameservers for $zone" + nameservers="" + counter=0 + while [[ $counter -lt $max_attempts ]]; do + out=$(dig +short +timeout=2 "$zone" ns) + ret=$? + if [[ $ret -eq 0 && "$out" != "" ]]; then + nameservers=$out + break + fi + echo "Failed with exit code $ret: $out" + sleep 1 + counter=$((counter+1)) + done + if [[ "$nameservers" == "" ]]; then + echo "Could not resolve nameservers for $zone" + exit 1 + fi + for ns in $nameservers; do + echo "Polling $ns for $record.$zone..." + counter=0 + ok=false + while [[ $counter -lt $max_attempts ]]; do + out=$(dig +short +timeout=2 @"$ns" "$record"."$zone" a) + ret=$? + if [[ $ret -eq 0 && "$out" != "" ]]; then + echo "Looks good!" + ok=true + break + fi + echo "Not available yet" + sleep 1 + counter=$((counter+1)) + done + if ! $ok; then + echo "$record.$zone didn't become available within the allowed time" + exit 1 + fi + done + echo "$record.$zone is available on all nameservers" + exit 0 passwd: users: - name: core diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf index 38199387d..79cf75bb0 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf @@ -53,6 +53,8 @@ data "ct_config" "controller-ignitions" { k8s_dns_service_ip = cidrhost(var.service_cidr, 10) cluster_domain_suffix = var.cluster_domain_suffix controller_count = var.controller_count + dns_zone = var.dns_zone + cluster_name = var.cluster_name # we need to prepend a prefix 'docker://' for arm64, because arm64 images # on quay prevent us from downloading ACI correctly. diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl index d17ff706d..819affb08 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl @@ -31,7 +31,7 @@ systemd: [Service] Type=oneshot RemainAfterExit=true - ExecStart=/bin/sh -c 'while ! /usr/bin/grep '^[^#[:space:]]' /etc/resolv.conf > /dev/null; do sleep 1; done' + ExecStart=/bin/sh -c 'while ! /usr/bin/grep '^[^#[:space:]]' /etc/resolv.conf > /dev/null; do sleep 1; done; /opt/wait-for-dns ${dns_zone} ${cluster_name}-private 3600' [Install] RequiredBy=kubelet.service - name: coreos-metadata.service @@ -351,6 +351,64 @@ storage: kind: KubeletConfiguration cgroupDriver: "$${docker_cgroup_driver}" EOF + - path: /opt/wait-for-dns + filesystem: root + mode: 0544 + contents: + inline: | + #!/bin/bash + # TODO: Workaround for https://github.com/flatcar-linux/Flatcar/issues/123. + function dig { + docker run -i --rm quay.io/kinvolk/alpine-dig:3.9.6 dig "$@" 2>/dev/null + } + if [[ $# -ne 3 ]]; then + echo "Usage: $0 " + exit 1 + fi + zone=$1 + record=$2 + max_attempts=$3 + echo "Figuring out the nameservers for $zone" + nameservers="" + counter=0 + while [[ $counter -lt $max_attempts ]]; do + out=$(dig +short +timeout=2 "$zone" ns) + ret=$? + if [[ $ret -eq 0 && "$out" != "" ]]; then + nameservers=$out + break + fi + echo "Failed with exit code $ret: $out" + sleep 1 + counter=$((counter+1)) + done + if [[ "$nameservers" == "" ]]; then + echo "Could not resolve nameservers for $zone" + exit 1 + fi + for ns in $nameservers; do + echo "Polling $ns for $record.$zone..." + counter=0 + ok=false + while [[ $counter -lt $max_attempts ]]; do + out=$(dig +short +timeout=2 @"$ns" "$record"."$zone" a) + ret=$? + if [[ $ret -eq 0 && "$out" != "" ]]; then + echo "Looks good!" + ok=true + break + fi + echo "Not available yet" + sleep 1 + counter=$((counter+1)) + done + if ! $ok; then + echo "$record.$zone didn't become available within the allowed time" + exit 1 + fi + done + echo "$record.$zone is available on all nameservers" + exit 0 passwd: users: - name: core diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/variables.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/variables.tf index 301d7b13f..43381c31e 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/variables.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/variables.tf @@ -175,3 +175,8 @@ variable "nodes_depend_on" { type = list(any) default = null } + +variable "dns_zone" { + type = string + description = "DNS Zone (e.g. example.com)" +} diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/workers.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/workers.tf index a19adaa08..9025403a7 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/workers.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/workers.tf @@ -65,6 +65,8 @@ data "ct_config" "ignitions" { setup_raid_hdd = var.setup_raid_hdd setup_raid_ssd = var.setup_raid_ssd setup_raid_ssd_fs = var.setup_raid_ssd_fs + cluster_name = var.cluster_name + dns_zone = var.dns_zone } ) platform = "packet" diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 538308097..a084aa636 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -4797,16 +4797,16 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/packet/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: 15327, + uncompressedSize: 17438, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7b\x6d\x77\xdb\xb8\xb1\xf0\xf7\xfc\x8a\x59\x45\x5d\x3b\xad\x21\xd9\x8e\x37\x49\xb5\xe5\x9e\x2a\xb2\xb2\xd1\x13\xc7\xf6\x91\x95\xcd\x73\x4f\x9a\x6a\x21\x72\x28\xa2\xa2\x00\x2e\x00\x4a\xd6\x3a\xee\x6f\xbf\x07\xe0\x8b\x48\x8a\x92\xec\x64\x7b\x4f\xdb\x0f\x2b\x83\xf3\x3e\x83\x99\x01\x30\x21\x84\x3c\x51\x2b\xa5\x71\xee\x75\x9e\x00\xc4\x9c\x69\x65\x7e\x00\x10\xe0\x74\x8e\x1d\x40\xed\x7a\x64\x8e\xf3\x09\xca\x96\x42\xb9\x60\x2e\xda\xef\x00\xc8\xe9\x24\xc4\x0e\x68\x19\x67\x4b\x9e\x14\x11\xe3\x29\x85\x22\x95\xb3\x63\x62\x09\xb9\x61\xac\x34\xca\x96\x2b\xb8\x9f\x03\x01\xb8\x82\x6b\xe4\x5a\x75\xe0\x4b\x61\x15\xe0\xd3\x07\xce\xf4\xe7\xd2\xd2\x10\x7f\x8b\x99\x44\xe5\xb8\x12\xa9\xc6\x94\xac\xe0\x3e\x9b\x56\xe4\x4b\xfe\xd7\xf5\x35\xca\x87\x02\x7f\xba\x49\x16\xcb\x2c\xfb\x7c\xc1\xa4\xe0\x73\xe4\xfa\x0d\x0b\xd1\x69\xa3\x76\xdb\xb3\x78\x82\x92\xa3\x46\x65\xfe\xf4\x5a\x09\xd5\x6d\x78\x4e\xa3\x3f\xea\x9d\x8f\x07\xef\xbb\x3f\xf7\xc7\x1f\x86\x17\x8e\x27\xdc\x19\xca\x4e\xbb\xfd\x5b\x4c\x57\x2d\x26\xda\xae\x90\x28\x12\x5a\x8d\xed\x54\x86\xef\x46\xe3\xe1\x87\xcb\x71\x77\xf8\xf3\x8d\x43\x08\xe3\x0a\xdd\x58\x22\x11\x91\x66\x82\x2b\x87\xcd\xe9\x14\x77\xe0\x17\xa4\x18\x75\x7f\x76\x16\xcf\x5b\x67\xad\x97\xcd\x3b\xc3\x75\x4c\xa5\x1b\x8c\x35\x9d\x8e\x55\xec\xfb\xec\xf6\x7e\x1f\x99\xcb\xee\xfb\xbe\x93\xe2\x1a\x2f\xef\x45\xe8\x9e\xff\xd2\x1f\x8e\x06\x37\xfd\x71\xef\x62\xd0\xbf\x1c\x19\x43\xdc\x38\x81\xd6\x91\xea\xb4\xdb\x29\x25\x4f\xcc\x29\xe3\xf7\x9d\xd3\xe7\x2f\xff\xba\x57\x91\xcb\xc1\x68\xd0\xbd\x28\x10\xbe\xee\xf7\x87\x7b\xc8\xbe\x3a\x7e\x28\xd9\xde\xc5\x87\x9b\x51\x7f\x98\xe9\xc8\x38\xd3\x8c\x86\xe3\x34\x86\xf7\xaa\x7b\x33\x1a\x0e\x7a\xa3\xf1\xb0\xdf\xbb\xba\x7c\x33\xf8\x79\xdc\x7b\xdb\xef\xbd\x73\xcc\x6e\xd9\x8b\x79\x73\x31\x3e\x1f\x0c\x93\x40\x53\x2a\xdc\x17\x15\x16\x69\x34\x34\xd2\x9e\x8f\x7b\xdd\xf1\x9b\xc1\x45\x7f\x8d\xec\xa2\xd4\x49\x60\xb5\x4d\xcc\xa3\x24\x2e\x6d\xb9\x52\xef\x23\xd8\xeb\x0f\x47\xfb\x48\x3d\x84\xce\xbb\xfe\xff\xec\x25\x33\xc3\xd5\x5e\x71\x92\x98\xb1\x52\x75\x3f\x8c\xde\x3e\xc8\x92\x36\x1e\x1e\x62\x99\x08\x1f\x6c\x17\x4b\x73\xb7\x71\x0c\xb5\x07\x93\xda\x69\x1f\x4b\xe9\x01\xd6\x49\x84\x7a\xa4\x89\x8a\x1b\x3f\xcd\x20\xd5\xa8\xbe\x45\xf7\x46\x8b\xe8\x5a\x28\xed\x90\xb6\x88\xb4\x15\x8b\x48\xfc\x97\x60\xbc\x54\x28\x92\x8c\xb6\xaf\x46\x64\xd0\xa1\x70\x67\x6a\xce\x74\xe0\x55\x30\xe6\x54\xcd\x6a\xe0\x93\xf4\x48\xe6\xa8\xa9\x47\x35\x25\x4a\x05\x33\x5c\xa9\xbf\x9b\xf5\x87\x51\x58\x52\xa6\x89\x2f\x24\xf1\xb8\xda\x5f\xc9\xea\x2a\x52\xa5\x1a\x9d\xa3\x72\x25\xb3\x66\x73\x3e\x52\xa6\xc1\x17\x12\xce\x2f\x6f\x00\xb9\x96\x0c\x55\x0e\xf8\x91\x72\xad\x9c\xb4\xcc\x12\x89\x4a\x84\x0b\xac\xea\x0d\xf0\x1a\x7d\x21\xd1\x31\x85\x25\x44\xbd\xf1\x79\xb3\x36\x8d\x56\x11\x3a\x82\xa3\x0a\x84\xce\x17\x87\x68\x12\x9d\xad\x7a\xfd\x5b\xa6\x9d\x82\x4e\x99\x3b\xa9\xd4\x4e\x7b\xc2\x78\x5b\x05\x40\x5c\x38\x58\x06\x2c\x44\xf8\x0e\xda\xb1\x92\x76\x7d\x2a\x31\x82\x83\x7f\x7e\xfa\xe7\xd3\x4f\x1d\x15\x51\x17\x3b\x9f\x3f\x1f\x80\x0d\xcf\x44\x7a\x5b\xed\xe0\x27\x68\x7b\xb8\x68\xf3\x38\x0c\x7f\x04\x4f\x80\x0a\x11\x23\x38\x31\xbf\x39\x1e\xac\x05\x1f\x70\xa5\x69\x18\x7e\x2e\xc8\x68\x6b\xb8\xf7\x7a\xb5\x55\xdb\x02\xc8\xb6\x0e\x24\x0f\x8d\x7d\xb5\xfd\x29\x8c\x02\xa6\x20\x5d\x84\x25\x0b\x43\xc0\x5b\x2d\xa9\xab\x61\x41\xc3\x18\x41\xf8\x10\x49\xb6\xa0\x1a\x81\x71\x8d\xd2\xa7\x2e\x82\x2f\xc5\x1c\x74\x80\x80\x7c\x01\x0b\x2a\xc1\x37\x66\xfa\xb5\x2d\x63\xde\xce\xe2\xb0\xed\x87\x54\xbb\x54\xfe\xda\xca\x79\x75\xb9\x67\xb0\x38\x50\xa5\xd8\x94\x03\xd3\xa0\x85\xa5\xb3\xa0\x92\x99\x40\x53\xa0\x03\xaa\x61\x19\x30\x37\x48\xa4\x99\x20\x28\x2d\x24\x7a\xc0\x78\xc6\x66\x7b\x93\xf1\xeb\x51\xce\x4c\x1b\xc5\x2c\x82\x51\x50\xc4\xd2\x45\x0f\x26\xab\x62\xd7\x96\xe9\xdd\xfa\xc3\x82\xbd\x67\x0d\x0e\xd4\x72\xb1\xd6\xb1\x12\x68\x61\xf4\x88\xd5\x5a\x02\xb3\x14\x32\xa5\x91\x83\xe0\x9b\x16\xae\x46\xfe\xf6\x56\xb3\xd8\xf6\x95\x13\xc1\x06\x60\xda\xef\xed\x81\xda\xdc\x4c\x1b\x4d\x5e\x9d\x9b\xff\xf0\xad\x87\x6e\x20\x20\xc9\xe0\x17\x83\x9b\x51\xff\xb2\xbe\x35\xea\x5d\x0d\xfb\x57\x37\xe3\xeb\x6e\xef\x5d\x7f\x34\x1e\x5c\xff\x72\x36\xbe\x1e\x0e\x7e\xe9\x8e\xfa\xe3\xe3\xa4\x53\x32\x9b\x71\x7b\xc4\xc0\xf7\xdf\xc3\x26\xab\x9a\x66\x69\x0f\xa3\x57\xc7\x0d\xf8\xe9\x2b\x38\xbd\xef\x9b\x5e\xe8\x66\xcd\xec\x21\xbc\x4e\xf6\xf1\x7a\x60\x8a\xd9\x9b\x3f\x76\xc6\xca\xb7\x6f\x97\x37\x49\xec\xc0\xfb\x94\x01\x74\xa7\xc8\xf5\x63\xf3\x7a\xb1\x70\xa7\x96\x7b\xdf\x1f\x75\xcf\xbb\xa3\xee\xf8\xea\x7a\x34\xbe\x1e\x5e\xfd\x32\x38\xef\x0f\x1d\x42\xdc\xb9\x17\x32\x5e\x1b\x7a\x59\x86\xaf\xe8\x0c\xcd\xe6\xdd\x2e\xa2\xf7\x40\x08\xd5\x5a\xb2\x49\xac\x51\xed\xd9\x1b\x3b\x9d\x91\x5b\x59\x53\x39\x45\x5d\x72\x44\x7d\x2d\xf8\x76\x07\xbc\x4b\xe8\xc2\x82\x51\x78\xbb\x8a\x50\x1a\x46\xff\xad\x99\x65\xdf\x61\x33\x33\x12\xf2\x45\x6d\x6c\x54\x8f\x88\x71\xcc\x3c\x62\xf2\x33\x51\x74\x81\x4e\x7b\x41\x65\xdb\xa5\x6e\x80\x19\x25\x12\x09\xaf\x65\xa0\xe0\x1f\x85\xd6\x8f\x90\x85\x08\xe3\x39\x3a\x49\xc1\x3f\x9a\x31\xee\x39\x81\x50\xfa\x28\xa9\x32\xce\x46\x37\x50\xc6\x9e\x8b\x98\x6b\x28\xd3\x48\x5c\xbe\x0f\x33\xc1\x31\xc5\x92\x84\x6c\x42\x5c\xce\x6a\x98\x1b\x2d\x42\x36\x69\xbb\x9c\xed\x62\x5c\x24\x92\x71\xdf\x8e\x5a\xe5\x4c\x43\xe6\x8a\x5d\xcc\x2d\xc0\x83\xf8\x27\xa4\x36\x44\xa8\x23\x90\x4a\x21\x22\x6d\xc4\x26\x13\xc6\x6b\x44\x30\x8d\xb8\xcb\x99\xd9\xcb\xbb\xf8\x17\x89\x64\xcc\xb7\xa3\x16\xf5\x17\xd3\x6d\x8a\x8b\xe9\x5e\x8d\xc5\xb4\xac\xea\x06\xca\xbe\x7b\x8b\x3c\x63\x5d\x4b\x4c\xea\xe5\x7c\xe6\x31\x09\x24\x82\xa2\xfc\x0f\x82\xaf\xec\x9f\x39\xe5\xcc\x47\xa5\xd5\xd7\x20\x1b\xbe\x1c\x75\xcb\xfb\x2a\xe4\x00\xdd\x59\x24\x18\xd7\x44\xa1\x2b\xf1\xeb\x44\x60\x9c\xba\x9a\x2d\x90\x3c\x4e\x91\x42\xd4\x3f\x0e\xde\x86\xe8\xa3\x50\xd2\xbc\xd2\x4e\x22\x22\x0a\xe3\x29\xe3\xdb\x84\xcc\xea\xd1\x84\x26\x0d\x51\x23\x39\x7a\x98\x03\x30\xf3\x99\x6b\xfa\x7a\x1a\xeb\x40\x48\xa6\x57\xc4\xe4\xcb\x83\x0d\x83\x98\x9f\x69\xef\xf1\x05\xe8\x72\x06\x07\x77\x91\x64\x5c\x43\xf3\xf4\xfe\x00\xbe\xc0\x84\x2a\x7c\x71\x06\xc4\xab\x69\x91\xaa\x07\xfe\x92\x70\x24\x97\x4e\xce\x34\xc8\x39\x14\x92\xe9\xae\x3c\xba\x45\xd5\x2a\x6b\x2b\xb2\xd9\x03\x19\xbe\x3b\x95\x22\x8e\x88\x27\xd9\x02\xe5\xb6\xe2\x6d\x7d\x92\x5c\x15\x66\x78\x4b\x49\xa3\x08\x65\x65\x8b\x71\xe1\x21\x61\x91\xb3\xae\xec\xb5\x8d\xd6\x7d\x05\x8d\x72\xc1\x57\x73\x11\x2b\x6b\x77\xc7\xa7\xa1\xc2\x2a\x48\x6c\x8e\x37\xda\x78\x87\x09\x4e\xb4\x98\x21\x27\x4b\x9c\x04\x42\xcc\x6a\x40\x85\x64\xbf\x27\x90\x73\xe1\xa1\xf3\xb1\x16\xd0\x0d\x19\x72\x4d\x5c\x9a\x5a\xb7\xd6\x4f\x1b\x38\xf6\x1e\x6e\xec\x71\xe5\x34\xef\x66\xaf\x94\xf9\x35\x4e\xeb\xf1\x98\x45\x55\xd5\x72\x78\x7b\x15\xe8\x34\xef\xca\x0b\xd9\xb5\x67\x15\x8b\x33\x7b\xaa\x24\x1e\x93\x9b\x72\x65\xf9\xa0\x8a\x64\x9d\xbb\xb5\x76\xa7\xe1\x5a\xc6\xc1\x5b\xa6\x89\xe0\x24\x14\xee\x8c\xa4\x1d\x0e\x13\xd5\x1c\xbd\x8e\xf6\x5a\xea\xb5\x94\x2d\xc5\x75\xd4\x9a\xf6\xc3\x2c\xe5\xe2\x98\x3f\xaa\xd1\x83\x7a\x29\xe4\x8c\x24\xbb\xd7\xd9\xac\x95\x36\xbc\x42\x3a\xc1\x50\x99\x10\xbb\xbc\x3a\xef\x8f\x2f\xba\xaf\xfb\x17\x37\x55\x03\x16\x21\x43\x31\x13\x73\x61\xd2\x57\x8b\x86\x51\x40\x5b\x33\xc6\x17\x22\x9c\xb5\x98\x68\x47\xf1\x24\x64\x2e\x61\xd1\xe2\x6c\x5b\xd0\x7e\x78\x7d\x31\xe8\x6d\xc6\x6c\x24\xbc\x3c\x1b\x92\x88\xea\x60\xc3\x34\x79\xae\xac\x60\x4a\xa4\x1e\x11\x3c\x5c\x91\x48\x48\xed\x1c\x6f\x7c\x9e\x9a\xd3\xab\x24\x4b\xa6\x03\xa2\x29\xe3\x7a\xad\xed\xa8\x3b\xb8\x1c\x6d\x68\x4b\x3d\x4f\xa2\x52\x8f\xdd\x76\x49\xae\x4c\xcd\x9d\x84\xda\x63\xd2\xa9\x88\x2a\xd9\x4a\x69\x11\x3d\x3a\x5f\x0d\x51\xd9\x44\x43\xc3\x25\x5d\xa9\xea\xf2\x0d\xba\xce\xc9\xf1\x8e\x2e\xff\x23\xe5\x3a\xe9\xf1\xe3\x50\x33\x12\x2b\x94\x75\x5d\xfe\x44\x08\x6d\x44\xa8\x74\xce\x8f\xec\xe9\x5f\x0b\xa1\x95\x96\x34\x02\x0a\xef\x72\x47\x43\xba\xa5\x73\x94\x9e\xe0\x1e\x33\x08\xd7\x54\x07\xfd\x5b\xa6\xb4\x72\xbe\xb3\x2d\x44\x26\x46\x9b\x71\xa6\xc7\xb9\x50\x9e\xe0\x7f\xec\x95\xdb\x47\x21\x67\x8c\x4f\xcf\x99\x44\x57\x0b\xb9\x72\x4a\xdc\xeb\xd2\x7c\x49\xba\xec\x07\xb1\x3e\xa8\x29\x2d\x42\xa5\x37\x0a\x5a\xc4\x6e\x00\x0f\xd7\xed\x6b\xfd\xd7\x60\x91\xb6\xb7\x58\x44\xa2\xbd\xb4\xca\x1c\xd9\x28\x1d\xd8\xbc\xd2\x89\x6d\xeb\x3d\x70\x83\x45\x2f\xbe\x91\x9c\xc1\xa2\x53\xec\x3c\x01\x7b\x0f\x95\xbf\x5f\x9a\x4c\xd0\xd9\xd1\x2e\xa4\xb4\x2c\x8e\xbd\x9b\xed\x80\x14\xb9\x5b\x4d\xb1\xea\xc0\xf1\x8b\xb3\xb3\x6a\x80\xe6\x06\x63\xdc\x1c\xb3\xcb\x6f\x96\xcd\xbb\x35\x83\xfb\xbd\x82\x94\x0f\x72\x7f\xac\x24\xef\x3e\xbc\xee\x5f\x98\xc4\xb3\xf9\xe6\x38\x7b\xa5\x5a\x53\x57\x9a\xac\x1b\x64\xe7\x61\xd2\xbc\x13\xca\x3e\x05\xdc\x6f\x25\x62\x9f\x0c\x4f\x5a\x27\xaf\x5a\xcf\xb7\xc2\xd8\x63\x67\xc3\x94\x33\x74\xd3\x96\x45\xb8\x34\xb4\x21\x9a\xaa\x5c\x7c\x62\x28\x14\x0e\xa7\x61\x4a\x45\x6b\x6d\x22\x23\xdf\x9c\x9a\xfd\x7c\x54\xf3\xc5\x58\x41\x8a\x30\x44\xb9\xf1\xcc\x51\xc8\xcf\x09\x51\x22\x45\x58\x4f\xd9\xe9\x5c\x8a\x1b\x37\x40\x2f\x0e\x53\x12\x25\x7f\xa9\x95\x72\x75\xd8\xf2\xda\x73\x7a\x6b\x77\x04\x59\x52\xed\x06\xa8\x8a\x2f\xd8\x5b\xfc\xf6\x30\x37\xf9\xaa\xc5\xb8\xd0\xcc\x5f\xb5\xe6\xf4\x76\x6c\x78\x8c\x53\x1e\xce\xc9\x8b\x93\x57\x67\x65\xa1\xf6\x27\x87\xdd\x51\xf4\x43\x1e\x45\x86\x53\x41\x34\xaf\x03\x3f\x1c\x67\xe9\xdd\x76\xa2\xdb\x3e\x3e\x4c\xaf\xa7\xdf\xe5\x8d\x7d\x71\x15\x3e\xa6\xdd\xaa\x2f\x64\x5e\x0a\xa0\x9c\xdc\x00\x14\x6a\x20\x58\xc2\xbb\x96\x48\xa2\x38\x0c\x21\x8f\x58\xb0\x87\x46\x98\xa0\x4b\x63\x85\xb0\x0c\xd0\x5e\xb6\x33\x05\x21\xd5\x28\xc1\x40\xa3\x07\x93\x58\x83\xa6\x33\x54\xa0\x85\x80\x50\xf0\xa9\xbd\x92\x67\x73\x54\x20\xe2\x22\xd7\x64\x7f\x58\x3c\xd8\xb3\x45\x3a\x9b\xdb\xe0\x29\xbc\x17\x0b\x04\xbc\x8d\x50\xb2\x39\x72\x4d\x43\xd8\x3c\xa3\x01\x7c\x02\xc2\xa1\xd1\x3c\x0c\x55\xc5\x9b\x54\x29\xd4\x85\x5e\x85\xfc\xb9\xfd\x67\x38\xfd\x29\x7f\x63\x79\xd6\x80\xcf\xf0\xfd\xf7\x30\x5f\x3c\x04\x71\x37\x88\xa1\x63\x4e\x34\xd2\xdf\x4b\xab\x20\xba\xd9\xd3\x50\x3e\x15\xc5\xe5\x06\xd5\xf4\x32\x4a\xd3\x29\x9e\xa4\x8d\x58\x7a\x66\x79\x71\x66\xc0\xdb\xe9\x27\xeb\x38\x95\xfd\xe5\x87\xab\x16\x75\xd9\x06\x9d\xfa\x4b\x82\x0d\x30\x2d\x63\xa5\xc9\x0c\x57\x8a\xf8\x52\xcc\x89\xbd\xcb\xde\x80\x4a\xef\x36\x12\xf5\xb6\x5c\xa8\x54\x8c\xb0\x41\xa3\x74\xd1\x91\x52\xca\xee\x39\xb6\xa0\xa4\x6c\x27\x59\xb7\xb2\xe5\x1e\x6d\x9d\x99\x76\x33\x5d\xd3\x29\xde\xa5\x6d\xc5\x6e\x36\xef\x86\xef\x46\xe3\xab\xeb\x6a\x9f\x6a\xea\x94\xb5\x66\xf2\xf6\x1b\xcb\x70\x1c\x49\x34\xa7\x9f\x6c\x1c\x25\x6d\xcc\x73\x9b\x74\x16\xc7\xad\x93\xb3\xd6\x31\x09\x30\x9c\x17\x36\xc2\x86\xbc\x1c\xb5\xd5\x6f\xe3\x83\x39\xa6\xd5\x7e\x48\x2a\x45\x9e\x0b\x08\x49\xd2\x81\x69\xa6\x8d\x51\x93\x6e\x38\xb5\x6f\xa3\xf9\xf7\xc6\x66\x42\xac\x3e\x49\xef\x4d\x82\x3f\xfc\xf0\x07\xe4\xb2\x24\x49\x89\x18\x22\x16\xa1\x4f\x59\x58\x4a\x06\x43\x2b\x0e\xd0\xac\x25\x05\xaa\xc0\x97\xa8\x02\x30\x05\x29\xc9\x56\xf6\x8d\xcc\xa5\x9c\x0b\x0d\x05\xe1\x13\x02\x87\xd8\x9a\xb6\x8e\x80\x9a\xb6\x12\x24\x46\x62\xc1\x14\x13\x9c\xf1\xe9\x11\xb8\x92\xaa\x80\xf1\x29\x08\x99\x90\x9b\xa0\xf9\xcb\x13\x4b\xfe\xac\x55\xa2\x72\x83\x7a\xcf\x23\x3e\x68\x61\xb7\xf1\x5a\x22\xa3\x0b\x7a\x40\xb9\x57\x22\x65\x92\x6c\xfa\x14\xaa\x40\xf8\x75\x93\x61\x15\xde\x33\x16\x01\xf3\xc1\xa8\x17\xc9\x54\x7e\x2c\x12\x65\x3e\x7c\x82\xef\x80\x78\xd0\x28\xcd\xba\xb4\x1b\xf0\xf9\xc7\xe4\x15\xd5\x1c\x8b\xe1\xf8\x47\xf0\x59\x89\xb6\x90\x30\x15\xc9\x39\x27\x42\xaf\x55\xa5\xd9\x68\xf6\xff\xff\x60\x34\xee\x5d\x9d\xf7\x1b\xe0\x40\x63\xc6\x4c\x2d\xd8\x43\x95\x8b\xa5\xd3\x3c\xf4\xa8\x46\xf8\xcb\x9f\xd4\xb3\x2a\x4d\xe2\xaf\xef\xb8\xac\xee\x21\x55\x9a\x18\x63\x65\x64\x4b\x81\x6d\xbe\x3a\xcd\x43\x97\xea\x6d\x68\x45\x0e\x18\x2a\xdc\x44\x3f\x2e\x36\x0a\x45\x51\x93\x27\xb6\x26\x17\x4b\xfb\xf2\x57\x4f\xbf\x00\x1f\xa2\x86\x86\x07\x0e\x18\x14\x20\xd0\x34\x40\x8d\x4d\x6f\x51\xee\x81\x4c\xce\x7b\x20\x71\x1a\x87\x54\x86\x2b\xa3\x3e\xd3\xe0\x09\x54\xd6\x97\x56\x65\x73\x24\x66\x1c\x4e\x4e\x8f\x55\x8d\xf5\xbd\x06\x90\xa9\x36\x5f\x77\x9b\x1c\x6f\xcd\xc1\x1b\xfa\xa3\xde\x79\x6f\x74\x31\xee\x5e\x0f\x9c\x62\x4d\x8d\x65\xa8\x9c\xe6\x61\xaa\x6d\xdd\x70\x56\x03\xbe\x80\x96\xd0\x38\x6a\x40\xe3\x1f\xdc\xfc\xe5\xc6\xda\x06\x94\xd3\x30\x1e\x3b\x4d\xbf\x9b\x6f\x06\xe8\x0b\x04\x48\x3d\x20\x2e\x90\x93\x67\x25\xfd\x9b\x4d\xdb\x93\x68\x94\x92\xfa\x42\xce\x8b\x52\x72\xcf\xde\xdb\x2a\xa7\xd1\x6c\xde\x19\xa1\xda\xed\xd3\xe7\xaf\x8e\xdb\xa7\xcf\x5f\xfe\xb5\x34\x31\x93\x75\xbf\x2e\x75\x51\xea\xf2\x00\x57\x3b\x9d\x80\x4c\x6f\xba\xec\x8d\x16\x21\xbb\xe1\x52\xa0\x19\xae\x76\xc0\xcc\x70\x65\xd2\x68\x2e\x64\x33\xff\x59\xf6\x70\x2f\x40\x77\x66\x3c\x14\xf3\x00\x69\xa8\x83\x15\x1c\xaa\x40\xc4\xa1\x07\x93\x75\x1f\x65\x53\x00\x4b\x3c\x2d\x63\x6e\x12\x4e\xd1\x50\x29\xee\xca\x69\x1e\x1e\x1a\x50\x57\x87\xb9\x7d\x20\x21\x0b\x4d\x63\x06\x38\x4d\xe7\x43\x94\xf6\x44\xac\xe1\x0b\xd8\xbb\xdd\x06\x53\x6b\xfe\x8d\x7c\xb5\x99\x8f\x14\x36\x9e\xc1\x97\x2f\xf6\x64\xb7\xb9\x03\x7f\x87\x46\x33\x13\x60\x6f\x8a\x18\xe2\xdc\x34\x64\x22\xf4\x60\x70\x6e\x08\x28\x9d\x4c\x7e\xb0\x72\x43\x36\x38\x2f\xea\x92\x0e\x4d\x84\x4c\xe9\x54\x8f\x1a\x11\x0b\x61\x76\x64\xc3\xec\x64\xbb\xd0\xdf\x25\x62\x0f\xce\x1b\xb5\x69\xa2\xc2\x57\x26\x42\x27\xf0\x96\xff\xb6\x14\x60\x14\x24\xd4\xf3\x4c\x61\xe1\xb8\x4c\x09\x3c\xd9\x4a\xd9\x80\x96\x74\x20\xc4\x0e\xbd\xd9\x3d\x56\xd9\x5c\x35\x03\x95\x9b\xd2\x3c\x85\xff\x67\xca\x47\x52\xd4\x4c\x3a\x30\x5e\x56\x9a\xea\x62\x22\x33\xcd\x6a\x31\x3b\x41\xa3\x9c\xac\x26\xb3\x88\x14\x72\x6e\x23\x33\x63\xad\xeb\x0f\xad\x23\xea\xd2\xc0\xf8\x66\xd4\x1d\xf5\x1d\xeb\x5b\x53\x09\xb3\xc3\x9b\xc6\xb9\x97\xfe\xb7\x5d\x57\xaf\xbc\x76\xdd\x64\xf2\xb3\x2d\xae\x32\x69\xe8\x60\xef\xbc\x68\x45\x96\xc6\x41\x3e\xc6\xf0\xd5\x02\x95\xc4\x78\x0a\xdd\x28\x0a\x57\xe0\x06\x94\x4f\xcb\x45\x23\x21\x6c\x9c\xee\x51\x9c\x0b\x4e\x24\x86\x82\x7a\xbb\x42\x28\xc9\xf5\x31\x67\x1a\x0e\x57\xa8\x8e\xb2\xc4\xce\xb4\xc2\xd0\x2f\x46\xf3\x9a\x78\x56\x21\x8a\x53\x46\xdf\x97\xdb\xb2\xcc\xc9\xd9\x65\x51\x5b\xc6\x21\x2a\xfb\x06\xfd\x1f\xb9\xed\xf8\xb3\xcf\x42\x5d\x0a\xff\xce\xe0\xf2\xfa\xc3\x08\xce\x87\x57\xd7\xf0\xe9\xb8\x73\x5c\x9c\xe9\xee\xbc\xb9\x1a\x7e\xec\x0e\xcf\xa1\xdb\xeb\xf5\xaf\x47\x9b\xdf\xaf\x3e\x8c\x0c\xf2\x96\xcf\xa4\x0b\x09\x71\xc2\x20\x14\x40\xfe\x95\x02\xd6\x82\x44\xa0\xdd\xc8\xf4\xbf\xb6\xd2\x9d\x9e\xd6\x82\x3f\x85\x0f\x0a\xe1\xe4\xb8\x65\xff\xdf\x7e\x65\x36\xb5\x9d\xed\x62\x0a\xae\xa9\x3b\x43\x9d\x8f\x4f\xa5\x57\xf3\xd0\x1b\x9c\x0f\xcb\xfd\xd6\x40\xe7\xd3\x64\x6e\x28\x14\x7a\x30\x17\x12\x41\xb3\x69\xa0\xc3\x95\x1d\x7f\xe8\x25\x0f\xd1\xe9\xec\x99\xf5\x09\x50\x89\x80\x54\xad\x4c\x23\x18\x47\x66\x2b\xb6\x6a\x15\x51\x45\xf9\x2a\x6a\x9d\xbc\xfc\xeb\x1e\x33\xec\xc2\x36\x65\xf4\x9b\xd0\x5f\x1d\x7f\x1b\xfa\xc9\xa3\x7c\xf8\xe2\xec\xec\xf9\x16\x2f\x7e\x64\x3a\x00\xc5\xf8\x34\x44\x58\x5f\x50\x25\x3d\xba\x42\x1d\x47\x47\x76\x12\x50\x4b\xea\xfb\xcc\x4d\x46\x0c\xcd\x47\x65\x8c\x6f\xef\x18\x68\xc4\x92\x99\x68\x98\xd3\x15\xf8\xa1\x58\x5a\xc7\x21\xd3\x01\x4a\x58\xf3\x17\x12\x5e\x9e\x9d\x3d\x2f\x47\xc0\x28\x0d\x99\xac\x96\x13\x42\xbd\x05\x4a\xcd\x14\x66\x2f\x13\xe0\x87\x74\x6a\xda\xf7\x0a\x37\x0f\x7d\xc6\x51\xa5\x91\x31\xb8\x86\x0c\x3e\x0b\x29\xea\x79\x68\x8b\x0d\xe5\x79\xc1\x2f\x31\x4f\x35\x48\x6f\xd8\x3c\xf4\x69\x1c\xea\x96\x5a\xb8\xd9\x04\xa2\x09\x3b\x94\x08\x8c\x67\xc9\x2d\x37\x84\x16\xd0\xbd\x1e\xe4\xbc\xa6\x82\xf1\x69\x0b\x06\xfa\xc0\x34\x0b\xec\xb7\x18\xb9\x11\xc5\x94\x98\x69\x00\xcc\x2c\x4f\xa8\xc2\xf2\xf9\x44\xf0\xa2\xd8\xa6\x93\x35\x2d\x8c\x5d\xfd\x8b\xb5\x9b\x2b\xe6\x13\xc6\xed\x5b\x64\x2b\x37\xd5\x32\x58\xc1\x12\x41\x52\xee\x89\x39\xfb\x1d\xad\x7f\x0a\x74\x4a\x23\x8c\x86\xe8\xd2\x7a\xb2\xc4\xb9\xce\xcc\x5a\xc0\xa5\xf1\xfa\xe0\xfa\xc8\x5a\x06\x31\xb2\x4d\x34\x6a\x94\x73\xc6\x4d\x6d\x70\x5b\x30\xf0\x0d\xbd\xa5\xed\xc1\xca\x22\x18\x89\x8f\xd6\x1f\x03\xba\xb0\x13\x96\x22\xc2\xf2\x31\x91\x86\x61\x0e\xaf\xc0\x1c\xe7\x02\xab\xcd\x14\x8d\xc0\xe6\x0f\x9f\x49\x5c\x5a\x30\x01\x53\xd4\xe9\x40\xaa\xc9\x21\xa5\xe0\x29\x1f\x06\xc4\x91\x71\x75\xc1\xf6\xc2\x87\x7e\xd6\xe6\x31\xbe\xcd\xd3\xe9\x83\x89\x8d\x41\xe3\xa0\xb2\x53\x92\xe0\x5f\x07\x96\x0e\xd6\x01\x5d\x62\x5f\x8e\x39\x9f\x49\xa5\x8f\x8a\x29\x31\x10\xcb\xf5\x9d\x4a\x35\x92\x27\x8c\x7b\x2a\x75\xb0\xf9\x6d\xfa\x01\xcb\x26\xbf\x19\x94\x18\x85\x34\x9d\x94\x7d\xdb\xbd\x96\xe2\x76\x55\xde\x47\x6f\xc5\x12\x17\x28\x8f\x4c\xef\xb1\x12\x31\x78\x18\xa2\xc6\x3d\xe1\x0d\x87\xf6\xea\xdf\x14\xdf\x04\x3c\x5b\x27\x1c\x52\xf0\x02\x85\x67\x47\xd5\x06\xe3\x69\x55\x11\x6b\x05\x89\x24\x19\x70\x4e\xec\x95\x77\x38\x49\x50\x66\xba\x1d\x55\xa6\x89\x4d\x6a\xb0\xd1\x6a\x1b\xe4\x52\xca\x09\xc5\x52\x81\x67\x9f\xa3\xc2\x55\x89\x3d\xe3\xe9\xa0\x72\x45\x8e\x48\x0a\x17\x95\x35\x29\x26\x0d\x2a\x0d\x21\x3d\x38\x98\x2d\x16\xd0\x28\x42\x0e\x31\xf7\xac\x6d\xed\xa9\xd1\x04\xaa\xb4\x5b\xed\xc8\xde\xc0\x9a\x5d\x93\x1f\x35\x22\x89\x11\x95\xc6\xb3\x42\x02\xd3\xdb\xc3\x70\x14\x50\xb3\xd7\xd3\x3d\xca\xd1\xb8\x4c\x14\xa3\xc6\xea\x68\x95\x4d\xa6\x8f\xcd\xf6\x48\xa2\xae\x92\x7d\x8b\x3c\xfe\x74\xf7\x6f\xe3\xd8\x35\xc4\xd8\xb5\x97\x6c\x8e\x03\x8d\x93\x06\xfc\xfb\xfe\xd1\x25\xe4\xe5\xb6\x8a\x60\x58\x21\xf7\x98\x0f\x8f\x27\x7a\x72\x7c\xfa\xc3\xb7\xd4\x35\x83\xff\x62\x0f\xfe\xdc\x58\x81\x6b\x49\xdd\x99\x39\x8b\x6a\xdb\xbe\xc3\xb0\x7f\xd1\x1d\xf5\xcf\x8f\xfa\x37\xa3\xee\xeb\x8b\xc1\xcd\xdb\xfe\x79\x2d\x9d\xde\xd5\xfb\xf7\x83\xd1\xb6\xc6\xef\xc5\x7f\x75\xe7\x57\xff\xf5\xff\xba\xef\xfb\x4f\x7a\xe2\xab\x06\x8e\x76\xfb\xe6\xe5\x23\x7d\xb3\xeb\xe2\xb4\xb0\x20\x91\x7a\x82\x87\xab\xf4\x05\x66\x9c\x08\x36\x4e\x04\x73\x1a\xcd\xc3\xf4\x65\x86\x71\x5f\x98\xd3\xf6\xc1\xdd\x5d\xab\x67\x61\xce\x2d\xc8\xfd\xfd\xc1\xb3\xe2\x55\x87\x4b\x35\xfc\xed\x6f\xfd\xab\x37\xf0\xd3\xee\x11\x9c\x02\x0e\x8d\xd8\x2f\x28\x15\x13\x7c\x3d\x88\x9c\xfe\x6b\x92\xd9\x2b\xfb\x60\xb8\x38\x99\xa0\xa6\x27\x05\x9c\x19\xe3\x5e\x07\xd2\xf1\xe2\x5e\x6a\x5f\x9b\xf4\x8a\xc2\x14\x04\xed\x40\xa3\xd9\xbc\xab\xd3\xb2\x74\x8b\xd4\xbf\x7a\xf3\x24\xa2\x4a\x2d\x93\x7f\x94\xab\x50\x5a\x3b\x17\x07\xd6\x2d\xb4\x52\xc1\x38\x1b\xb1\x42\x6f\x3c\xc3\x95\xea\x40\xf3\xce\x2c\x9b\xdf\xf7\x4f\xfe\x37\x00\x00\xff\xff\xec\xa0\x4e\xd8\xdf\x3b\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3c\x7f\x77\xdb\x36\x92\xff\xe7\x53\x4c\x18\x6e\xec\x6c\x0d\xc9\x76\xdc\x24\x55\xcb\x5c\x15\x59\x69\x75\x71\x6c\x3f\x59\x69\xee\x5e\x36\xab\x85\xc8\x91\x88\x15\x05\xb0\x00\x28\x59\x75\xbc\x9f\xfd\x1e\x40\x52\x22\x29\xca\xb2\xd3\xec\xbd\x75\xff\xa8\x44\x62\x7e\x0f\x66\x06\x83\x51\x08\x21\x8f\xd4\x52\x69\x9c\x05\xad\x47\x00\x09\x67\x5a\x99\x0f\x00\x04\x38\x9d\x61\x0b\x50\xfb\x01\x99\xe1\x6c\x84\xb2\xa1\x50\xce\x99\x8f\xf6\x3d\x00\x72\x3a\x8a\xb0\x05\x5a\x26\xf9\xa3\x40\x8a\x98\xf1\x0c\x43\x11\xcb\xc9\x21\xb1\x88\xfc\x28\x51\x1a\x65\xc3\x17\x7c\xbc\x5a\x04\xe0\x0b\xae\x91\x6b\xd5\x82\x2f\x85\xa7\x00\x9f\x3e\x70\xa6\x3f\x97\x1e\xf5\xf1\xf7\x84\x49\x54\x9e\x2f\x91\x6a\xcc\xd0\x0a\x3e\x66\x93\x0a\x7f\xe9\x5f\x7b\xac\x51\xde\x77\xf1\xa7\xab\xf4\x61\x99\x64\x97\xcf\x99\x14\x7c\x86\x5c\xbf\x65\x11\x7a\x4d\xd4\x7e\x73\x9a\x8c\x50\x72\xd4\xa8\xcc\xd7\xa0\x91\x62\xdd\x06\xe7\x39\xdd\x41\xe7\x74\xd8\x7b\xdf\xfe\xa5\x3b\xfc\xd0\x3f\xf3\x02\xe1\x4f\x51\xb6\x9a\xcd\xdf\x13\xba\x6c\x30\xd1\xf4\x85\x44\x91\xe2\x72\xb6\x63\xe9\xbf\x1b\x0c\xfb\x1f\xce\x87\xed\xfe\x2f\x57\x1e\x21\x8c\x2b\xf4\x13\x89\x44\xc4\x9a\x09\xae\x3c\x36\xa3\x13\xbc\x03\xbe\xc0\xc5\xa0\xfd\x8b\x37\x7f\xde\x38\x69\xbc\x74\x6f\x0c\xd5\x21\x95\x7e\x38\xd4\x74\x32\x54\xc9\x78\xcc\xae\x6f\x77\xa1\x39\x6f\xbf\xef\x7a\x19\xac\xb1\xf2\x4e\x80\xf6\xe9\x6f\xdd\xfe\xa0\x77\xd5\x1d\x76\xce\x7a\xdd\xf3\x81\x51\xc4\x95\x17\x6a\x1d\xab\x56\xb3\x99\x61\x0a\xc4\x8c\x32\x7e\xdb\x3a\x7e\xfe\xf2\x87\x9d\x82\x9c\xf7\x06\xbd\xf6\x59\x01\xf1\x65\xb7\xdb\xdf\x81\xf6\xd5\xe1\x7d\xd1\x76\xce\x3e\x5c\x0d\xba\xfd\x5c\x46\xc6\x99\x66\x34\x1a\x66\x3e\xbc\x53\xdc\xab\x41\xbf\xd7\x19\x0c\xfb\xdd\xce\xc5\xf9\xdb\xde\x2f\xc3\xce\xaf\xdd\xce\x3b\xcf\xec\x96\x9d\x90\x57\x67\xc3\xd3\x5e\x3f\x75\x34\xa5\xa2\x5d\x5e\x61\x81\x06\x7d\xc3\xed\xe9\xb0\xd3\x1e\xbe\xed\x9d\x75\xd7\xc0\x3e\x4a\x9d\x3a\x56\xd3\xf8\x3c\x4a\xe2\xd3\x86\x2f\xf5\x2e\x84\x9d\x6e\x7f\xb0\x0b\xd5\x7d\xf0\xbc\xeb\xfe\xef\x4e\x34\x53\x5c\xee\x64\x27\xf5\x19\xcb\x55\xfb\xc3\xe0\xd7\x7b\x69\xd2\xfa\xc3\x7d\x34\x13\xe3\xbd\xf5\x62\x71\xde\xad\x1c\x83\xed\xde\xa8\xee\xd4\x8f\xc5\x74\x0f\xed\xa4\x4c\x3d\x50\x45\xc5\x8d\x9f\x45\x90\xaa\x57\x5f\xa3\x7f\xa5\x45\x7c\x29\x94\xf6\x48\x53\xc4\xda\xb2\x45\x24\xfe\x53\x30\x5e\x4a\x14\x69\x44\xdb\x95\x23\xf2\xd5\x91\xf0\xa7\x6a\xc6\x74\x18\x54\x20\x66\x54\x4d\x6b\xd6\xa7\xe1\x91\xcc\x50\xd3\x80\x6a\x4a\x94\x0a\xa7\xb8\x54\x3f\x9b\xe7\xf7\xc3\xb0\xa0\x4c\x93\xb1\x90\x24\xe0\x6a\x77\x26\xab\xcb\x48\x95\x6c\x74\x8a\xca\x97\xcc\xaa\xcd\xfb\x48\x99\x86\xb1\x90\x70\x7a\x7e\x05\xc8\xb5\x64\xa8\x56\x0b\x3f\x52\xae\x95\x97\xa5\x59\x22\x51\x89\x68\x8e\x55\xb9\x01\xde\xe0\x58\x48\xf4\x4c\x62\x89\x50\xe7\xaf\xeb\x12\x30\x8c\x84\xd0\x66\xdd\x06\x8e\xcd\x04\x36\x58\xc6\xe8\x09\x8e\x2a\x14\x7a\xf5\xb0\x8f\x26\x1a\xda\xd4\xd8\xbd\x66\xda\x2b\x08\x9e\xdb\x9c\x4a\xed\x35\x47\x8c\x37\x55\x08\xc4\x87\xbd\x45\xc8\x22\x84\xc7\xd0\x4c\x94\xb4\xcf\x27\x12\x63\xd8\xfb\xfb\xa7\xbf\x3f\xf9\xd4\x52\x31\xf5\xb1\xf5\xf9\xf3\x1e\x58\x1f\x4e\x45\xb4\x29\x11\x5e\x43\x33\xc0\x79\x93\x27\x51\xf4\x23\x04\x02\x54\x84\x18\xc3\x91\xf9\xcc\xf1\x47\xb0\x2e\x55\x34\x0d\xb8\x37\x01\x57\xc3\x3f\x04\xc7\x5b\x70\x6f\xb2\x60\x9b\x26\x18\x12\x4b\x36\xa7\x1a\xe1\xf9\x8b\xc3\xc3\xbd\xb5\xd0\x3d\xae\x34\x8d\xa2\xcf\x05\xf9\x6c\x91\x10\xbc\x59\x7e\xbd\x3a\x57\x9e\xb7\xab\x74\x78\x02\x83\x90\x29\xc8\x91\x2d\x58\x14\x01\x5e\x6b\x49\x7d\x0d\x73\x1a\x25\x08\x62\x0c\x39\xe7\x8c\x6b\x94\x63\xea\x23\x8c\xa5\x98\x81\x0e\x11\x90\xcf\x61\x4e\x25\x8c\x8d\x82\xff\xd1\x94\x09\x6f\xe6\x6e\xde\x1c\x47\x54\xfb\x54\xfe\xa3\xb1\xa2\xd5\xe6\x81\x81\xe2\x40\x95\x62\x13\x0e\x4c\x83\x16\x16\xcf\x9c\x4a\x66\xfc\x58\x81\x0e\xa9\x86\x45\xc8\xfc\x30\xe5\x66\x84\xa0\xb4\x90\x18\x00\xe3\x39\x99\xed\x35\xcc\x3f\x0e\x56\xc4\xb4\x11\xcc\x02\x18\x01\x45\x22\x7d\x0c\x60\xb4\x2c\x2a\x31\x97\xbb\xf1\xcd\xf6\x52\xc7\x2a\x1c\xa8\xa5\x62\xb5\x63\x39\xd0\xc2\xc8\x91\xa8\x35\x07\xe6\x51\xc4\x94\x46\x0e\x82\x6f\x6a\xb8\xba\xb1\xb6\x57\xb2\xc5\xaa\xb2\x1c\x67\x36\x16\x66\xe5\xe4\x8e\x55\x9b\xdb\x70\xa3\x86\xac\x33\xf3\x37\xdf\xb4\xe8\x87\x02\xd2\x04\x71\xd6\xbb\x1a\x74\xcf\xeb\x2b\xaf\xce\x45\xbf\x7b\x71\x35\xbc\x6c\x77\xde\x75\x07\xc3\xde\xe5\x6f\x27\xc3\xcb\x7e\xef\xb7\xf6\xa0\x3b\x3c\x4c\x0b\x31\xb3\x8d\xb7\x7b\x0c\x3c\x7d\x0a\x9b\xa4\x6a\x6a\xb1\x1d\x84\x5e\x1d\x3a\xf0\xfa\x2b\x28\xbd\xef\x9a\x52\xeb\x6a\x4d\xec\x3e\xb4\x8e\x76\xd1\xba\x67\x80\xd9\xe6\x56\x5b\x32\xd7\x37\x4f\x3d\x6f\x53\xdf\x81\xf7\x19\x01\x68\x4f\x90\xeb\x87\x66\x84\x62\x5d\x90\x69\xee\x7d\x77\xd0\x3e\x6d\x0f\xda\xc3\x8b\xcb\xc1\xf0\xb2\x7f\xf1\x5b\xef\xb4\xdb\xf7\x08\xf1\x67\x41\xc4\x78\xad\xeb\xe5\xb9\xa1\x22\x33\xb8\xee\xcd\x5d\x48\x6f\x81\x10\xaa\xb5\x64\xa3\x44\xa3\xda\xb1\x37\xee\x34\xc6\x4a\xcb\x9a\xca\x09\xea\x92\x21\x2a\x99\xe0\x9b\x19\xe0\x5d\x8a\x17\xe6\x8c\xc2\xaf\xcb\x18\xa5\x21\xf4\x9f\x1a\x59\x76\x9d\x65\x73\x25\x21\x9f\xd7\xfa\x46\xf5\x04\x9a\x24\x2c\x20\x26\x3e\x13\x45\xe7\xe8\x35\xe7\x54\x36\x7d\xea\x87\x98\x63\x22\xb1\x08\x1a\x66\x15\xfc\xad\x50\x59\x12\x32\x17\x51\x32\x43\x2f\x2d\x15\x0e\xa6\x8c\x07\x5e\x28\x94\x3e\x48\xb3\x8c\xb7\x51\x47\x94\xa1\x67\x22\xe1\x1a\xca\x38\x52\x93\xef\x82\x4c\x61\x4c\xb2\x24\x11\x1b\x11\x9f\xb3\x1a\xe2\x46\x8a\x88\x8d\x9a\x3e\x67\x77\x11\x2e\x22\xc9\xa9\x6f\x07\xad\x52\xa6\x11\xf3\xc5\x5d\xc4\xed\x82\x7b\xd1\x4f\x51\x6d\xb0\x50\x87\x20\xe3\x42\xc4\xda\xb0\x4d\x46\x8c\xd7\xb0\x60\x8a\x32\x9f\x33\xb3\x97\xef\xa2\x5f\x44\x92\x13\xdf\x0e\x5a\x94\x5f\x4c\xb6\x09\x2e\x26\x3b\x25\x16\x93\xb2\xa8\x1b\x20\xbb\xda\x22\xab\x88\x75\x29\x31\xcd\x97\xb3\x69\xc0\x24\x90\x18\x8a\xfc\xdf\x6b\x7d\x65\xff\xcc\x28\x67\x63\x54\x5a\x7d\x0d\xb0\xa1\xcb\x51\x37\x82\xaf\x02\x0e\xd1\x9f\xc6\x82\x71\x4d\x14\xfa\x12\xbf\x8e\x05\xc6\xa9\xaf\xd9\x1c\xc9\xc3\x04\x29\x78\xfd\xc3\xd6\x5b\x17\x7d\x10\x48\x16\x57\x9a\xa9\x47\xc4\x51\x32\x61\x7c\x1b\x93\x79\x3e\x1a\xd1\xb4\x20\x72\xd2\x43\x8b\x39\x5f\xb3\x31\xf3\x4d\x5d\x4f\x13\x1d\x0a\xc9\xf4\x92\x98\x78\xb9\xb7\xa1\x10\xf3\x31\xab\x3d\xbe\x00\x5d\x4c\x61\xef\x26\x96\x8c\x6b\x70\x8f\x6f\xf7\xe0\x0b\x8c\xa8\xc2\x17\x27\x40\x82\x9a\x12\xa9\xda\x4f\x28\x31\x47\x56\xdc\xc9\xa9\x06\x39\x83\x42\x30\xbd\x2b\x8e\x6e\x11\xb5\x4a\xda\xb2\x6c\xf6\x40\x0e\xef\x4f\xa4\x48\x62\x12\x48\x36\x47\xb9\x2d\x79\x5b\x9b\xa4\x9d\xc8\x1c\x6e\x21\x69\x1c\xa3\xac\x6c\x31\x2e\x02\x24\x2c\xf6\xd6\x99\xbd\xb6\xd0\xba\xad\x80\x51\x2e\xf8\x72\x26\x12\x65\xf5\xee\x8d\x69\xa4\xb0\xba\x24\x31\xc7\x1b\x6d\xac\xc3\x04\x27\x5a\x4c\x91\x93\x05\x8e\x42\x21\xa6\x35\x4b\x85\x64\x7f\xa4\x2b\x67\x22\x40\xef\x63\xed\x42\x3f\x62\xc8\x35\xf1\x69\xa6\xdd\x5a\x3b\x6d\xc0\xa4\x27\xcf\x80\x2b\xcf\xbd\x99\xbe\x52\xe6\xd3\x30\xcb\xc7\x43\x16\x57\x45\x5b\xad\xb7\x9d\x46\x6f\x7d\x74\x4d\x1f\xe4\x5d\xd5\x2a\x14\x67\xf6\x54\x49\x02\x26\x37\xf9\xca\xe3\x41\x15\xc8\x1a\x77\x6b\xee\xce\xdc\xb5\x0c\x83\xd7\x4c\x13\xc1\x49\x24\xfc\x29\xc9\x2a\x1c\x26\xaa\x31\x7a\xed\xed\xb5\xd8\x6b\x31\x5b\x8c\x6b\xaf\x35\xe5\x87\x79\xb4\x62\xc7\x7c\xa9\x7a\x0f\xea\x85\x90\x53\x92\xee\x5e\x6f\x33\x57\x5a\xf7\x8a\xe8\x08\x23\x65\x5c\xec\xfc\xe2\xb4\x3b\x3c\x6b\xbf\xe9\x9e\x5d\x55\x15\x58\x5c\x19\x89\xa9\x98\x09\x13\xbe\x1a\x34\x8a\x43\xda\x98\x32\x3e\x17\xd1\xb4\xc1\x44\x33\x4e\x46\x11\xf3\x09\x8b\xe7\x27\xdb\x9c\xf6\xc3\x9b\xb3\x5e\x67\xd3\x67\x63\x11\xac\xa2\x21\x89\xa9\x0e\x37\x54\xb3\x8a\x95\x15\x48\x89\x34\x20\x82\x47\x4b\x12\x0b\xa9\xbd\xc3\x8d\xd7\x13\x73\x7a\x95\x64\xc1\x74\x48\x34\x65\x5c\xaf\xa5\x1d\xb4\x7b\xe7\x83\x0d\x69\x69\x10\x48\x54\xea\xa1\xdb\x2e\x8d\x95\x99\xba\x53\x57\x7b\x48\x38\x15\x71\x25\x5a\x29\x2d\xe2\x07\xc7\xab\x3e\x2a\x1b\x68\x68\xb4\xa0\x4b\x55\x7d\x7c\x85\xbe\x77\x74\x78\x47\x95\xff\x91\x72\x9d\xd6\xf8\x49\xa4\x19\x49\x14\xca\xba\x2a\x7f\x4b\x6b\xec\x81\x35\xfd\x1b\x21\xb4\xd2\x92\xc6\x40\xe1\xdd\xca\xd0\x90\x6d\xe9\x15\x48\x47\xf0\x80\x19\x80\x4b\xaa\xc3\xee\x35\x53\x5a\x79\x8f\x6d\x09\x91\xb3\xd1\x64\x9c\xe9\xe1\x8a\xa9\x40\xf0\x6f\xdb\xac\xfb\x28\xe4\x94\xf1\xc9\x29\x93\xe8\x6b\x21\x97\x5e\x89\x7a\x5d\x98\x2f\x71\x97\x7f\x20\xd6\x06\x35\xa9\x45\xa8\xac\xa3\xa0\x45\xe2\x87\x70\x7f\xd9\xbe\xd6\x7e\x0e\x8b\xb5\xed\x62\x11\x89\xb6\x69\x95\x1b\xd2\x29\x1d\xd8\x82\xd2\x89\x6d\x6b\x9b\xd9\x61\xf1\x8b\x3f\x89\xce\x40\xd1\x09\xb6\x1e\x81\xed\x43\xad\xae\x47\x4d\x24\x68\xdd\x51\x2e\x64\xb8\x2c\x8c\x6d\xfd\xb6\x40\x8a\x95\x59\x4d\xb2\x6a\xc1\xe1\x8b\x93\x93\xaa\x83\xae\x14\xc6\xb8\x39\x66\x97\xaf\x44\xdd\x9b\x35\x81\xdb\x9d\x8c\x94\x0f\x72\xdf\x96\x93\x77\x1f\xde\x74\xcf\x4c\xe0\xd9\xbc\xd2\x9c\xbe\x52\x8d\x89\x2f\x4d\xd4\x0d\xf3\xf3\x30\x71\x6f\x84\xb2\x37\x0d\xb7\x5b\x91\xd8\x1b\xc9\xa3\xc6\xd1\xab\xc6\xf3\xad\x6b\xec\xb1\xd3\x31\xe9\x0c\xfd\xac\x64\x11\x3e\x8d\xac\x8b\x66\x22\x17\x6f\x30\x0a\x89\xc3\x73\x4c\xaa\x68\xac\x55\x64\xf8\x9b\x51\xb3\x9f\x0f\x6a\xde\x18\x2d\x48\x11\x45\x28\x37\x6e\x51\x0a\xf1\x39\x45\x4a\xa4\x88\xea\x31\x7b\xad\x73\x71\xe5\x87\x18\x24\x51\x86\xa2\x64\x2f\xb5\x54\xbe\x8e\x1a\x41\x73\x46\xaf\xed\x8e\x20\x0b\xaa\xfd\x10\x55\xf1\x82\x7c\x8b\xdd\xee\x67\xa6\xb1\x6a\x30\x2e\x34\x1b\x2f\x1b\x33\x7a\x3d\x34\x34\x86\x19\x0d\xef\xe8\xc5\xd1\xab\x93\x32\x53\xbb\x83\xc3\xdd\x5e\xf4\xfd\xca\x8b\x0c\xa5\x02\x6b\x41\x0b\xbe\x3f\xcc\xc3\xbb\xad\x44\xb7\xbd\xbc\x9f\x5c\x4f\x1e\xaf\x0a\xfb\xe2\x53\xf8\x98\x55\xab\x63\x21\x57\xa9\x00\xca\xc1\x0d\x40\xa1\x06\x82\x25\xb8\x4b\x89\x24\x4e\xa2\x08\x56\x1e\x0b\xf6\xd0\x08\x23\xf4\x69\xa2\x10\x16\x21\xda\x66\x3b\x53\x10\x51\x8d\x12\xcc\x6a\x0c\x60\x94\x68\xd0\x74\x8a\x0a\xb4\x10\x10\x09\x3e\xb1\x2d\x79\x36\x43\x05\x22\x29\x52\x4d\xf7\x87\x85\x83\x1d\x5b\xa4\xb5\xb9\x0d\x9e\xc0\x7b\x31\x47\xc0\xeb\x18\x25\x9b\x21\xd7\x34\x82\xcd\x33\x1a\xc0\x27\x20\x1c\x1c\x77\x3f\x52\x15\x6b\x52\xa5\x50\x17\x6a\x15\xf2\xd7\xe6\x5f\xe1\xf8\xf5\xea\x76\xe6\x99\x03\x9f\xe1\xe9\x53\x98\xcd\xef\x03\x78\xf7\x12\x83\xc7\x9c\x68\xe4\x78\x27\xae\x02\xeb\x66\x4f\x43\xf9\x54\x94\x94\x0b\x54\x53\xcb\x28\x4d\x27\x78\x94\x15\x62\xd9\x99\xe5\xc5\x89\x59\xde\xcc\x5e\x59\xc3\xa9\xfc\xdb\x38\x5a\x36\xa8\xcf\x36\xf0\xd4\x37\x09\x36\x96\x69\x99\x28\x4d\xa6\xb8\x54\x64\x2c\xc5\x8c\xd8\x5e\xf6\xc6\xaa\xac\xb7\x91\x8a\xb7\xa5\xa1\x52\x51\xc2\x06\x8e\x52\xa3\x23\xc3\x94\xf7\x39\xb6\x80\x64\x64\x47\x79\xb5\xb2\xa5\x8f\xb6\x8e\x4c\x77\x13\x5d\xe3\x29\xf6\xd2\xb6\x42\xbb\xee\x4d\xff\xdd\x60\x78\x71\x59\xad\x53\x4d\x9e\xb2\xda\x4c\xaf\x96\x13\x19\x0d\x63\x89\xe6\xf4\x93\x4f\xbb\x64\x85\xf9\x4a\x27\xad\xf9\x61\xe3\xe8\xa4\x71\x48\x42\x8c\x66\x85\x8d\xb0\xc1\x2f\x47\x6d\xe5\xdb\x78\x61\x8e\x69\xb5\x2f\xd2\x4c\xb1\x8a\x05\x84\xa4\xe1\xc0\x14\xd3\x46\xa9\x69\x35\x9c\xe9\xd7\x71\x7f\x76\x36\x03\x62\xf5\xc6\x7b\x67\x10\xfc\xfe\xfb\x6f\x10\xcb\xd2\x20\x25\x12\x88\x59\x8c\x63\xca\xa2\x52\x30\xe8\x5b\x76\x80\xe6\x25\x29\x50\x05\x63\x89\x2a\x04\x93\x90\xd2\x68\x65\xef\xc8\x7c\xca\xb9\xd0\x50\x60\x3e\x45\xb0\x8f\x8d\x49\xe3\x00\xa8\x29\x2b\x41\x62\x2c\xe6\x4c\x31\xc1\x19\x9f\x1c\x80\x2f\xa9\x0a\x19\x9f\x80\x90\x29\xba\x11\x9a\x6f\x81\x58\xf0\x67\x8d\x12\x96\x2b\xd4\x3b\x66\x04\x40\x0b\xbb\x8d\xd7\x1c\x19\x59\x30\x00\xca\x83\x12\x2a\x13\x64\xb3\xab\x50\x05\x62\x5c\x77\x51\x5b\xa1\x3d\x65\x31\xb0\x31\x18\xf1\x62\x99\xf1\x8f\x45\xa4\x6c\x0c\x9f\xe0\x31\x90\x00\x9c\xd2\x28\x4d\xd3\x81\xcf\x3f\xa6\xb7\xa8\xe6\x58\x0c\x87\x3f\xc2\x98\x95\x70\x0b\x09\x13\x91\x9e\x73\x62\x0c\x1a\x55\x9c\x8e\xdb\xfd\x9f\xde\x60\xd8\xb9\x38\xed\x3a\xe0\x81\x33\x65\x26\x17\xec\xc0\xca\xc5\xc2\x73\xf7\x03\xaa\x11\xbe\xfb\x8b\x7a\x56\xc5\x49\xc6\xeb\x1e\x97\x95\x3d\xa2\x4a\x13\xa3\xac\x1c\x6d\xc9\xb1\xcd\x5b\xcf\xdd\xf7\xa9\xde\x06\x56\xa4\x80\x91\xc2\x4d\xf0\xc3\x62\xa1\x50\x64\x35\xbd\x62\x73\xb9\x58\xd8\x9b\xbf\x7a\xfc\x85\xf5\x11\x6a\x70\x02\xf0\xc0\x80\x00\x01\xd7\x2c\x72\x36\xad\x45\x79\x00\x32\x3d\xef\x81\xc4\x49\x12\x51\x19\x2d\x8d\xf8\x4c\x43\x20\x50\x59\x5b\x5a\x91\xcd\x91\x98\x71\x38\x3a\x3e\x54\x35\xda\x0f\x1c\x20\x13\x6d\xde\xde\xad\x72\xbc\x36\x07\x6f\xe8\x0e\x3a\xa7\x9d\xc1\xd9\xb0\x7d\xd9\xf3\x8a\x39\x35\x91\x91\xf2\xdc\xfd\x4c\xda\xba\xd9\x2f\x07\xbe\x80\x96\xe0\x1c\x38\xe0\xfc\x8d\x9b\x6f\x7e\xa2\xad\x43\x79\x8e\xb1\xd8\x71\xf6\xde\xbc\x33\x8b\xbe\x40\x88\x34\x00\xe2\x03\x39\x7a\x56\x92\xdf\x75\x6d\x4d\xa2\x51\x4a\x3a\x16\x72\x56\xe4\x92\x07\xb6\x6f\xab\x3c\xc7\x75\x6f\x0c\x53\xcd\xe6\xf1\xf3\x57\x87\xcd\xe3\xe7\x2f\x7f\x28\x0d\xe4\xe4\xd5\xaf\x4f\x7d\x94\xba\x3c\x1f\xd6\xcc\x06\x2c\xb3\x4e\x97\xed\x68\x11\x72\xf7\xba\x6c\xd1\x14\x97\x77\xac\x99\xe2\xd2\x84\xd1\x15\x93\xee\xea\x63\xd9\xc2\x9d\x10\xfd\xa9\xb1\x50\xc2\x43\xa4\x91\x0e\x97\xb0\xaf\x42\x91\x44\x01\x8c\xd6\x75\x94\x0d\x01\x2c\xb5\xb4\x4c\xb8\x09\x38\x45\x45\x65\xb0\x4b\xcf\xdd\xdf\x37\x4b\x7d\x1d\xad\xf4\x03\x29\x5a\x70\x8d\x1a\xe0\x38\x9b\x2c\x51\x3a\x10\x89\x86\x2f\x60\x7b\xbb\x0e\x53\x6b\xfa\xce\xea\xa9\xbb\x9a\x58\x74\x9e\xc1\x97\x2f\xf6\x64\xb7\xb9\x03\xff\x00\xc7\xcd\x19\xd8\x19\x22\xfa\x38\x33\x05\x99\x88\x02\xe8\x9d\x1a\x04\x4a\xa7\x93\x1f\xac\x5c\x90\xf5\x4e\x8b\xb2\x64\x43\x13\x11\x53\x3a\x93\xa3\x86\xc5\x82\x9b\x1d\x58\x37\x3b\xda\xce\xf4\xe3\x94\xed\xde\xa9\x53\x1b\x26\x2a\x74\x65\xca\x74\xba\xde\xd2\xdf\x16\x02\x8c\x80\x84\x06\x81\x49\x2c\x1c\x17\x19\x82\x47\x5b\x31\x9b\xa5\x25\x19\x08\xb1\x33\x75\x76\x8f\x55\x36\x57\xcd\xbc\xe6\x26\x37\x4f\xe0\xbf\x4d\xfa\x48\x93\x9a\x09\x07\xc6\xca\x4a\x53\x5d\x0c\x64\xa6\x58\x2d\x46\x27\x70\xca\xc1\x6a\x34\x8d\x49\x21\xe6\x3a\xb9\x1a\x6b\x4d\xbf\x6f\x0d\x51\x17\x06\x86\x57\x83\xf6\xa0\xeb\x59\xdb\x9a\x4c\x98\x1f\xde\x34\xce\x82\xec\xff\xcd\xba\x7c\x15\x34\xeb\x06\x9f\x9f\x6d\x31\x95\x09\x43\x7b\x3b\xc7\x51\x2b\xbc\x38\x7b\xab\x31\x86\xaf\x66\xa8\xc4\xc6\x13\x68\xc7\x71\xb4\x04\x3f\xa4\x7c\x52\x4e\x1a\x29\x62\x63\xf4\x80\xe2\x4c\x70\x22\x31\x12\x34\xb8\xcb\x85\xd2\x58\x9f\x70\xa6\x61\x7f\x89\xea\x20\x0f\xec\x4c\x2b\x8c\xc6\x45\x6f\x5e\x23\xcf\x33\x44\x71\xca\xe8\x69\xb9\x2c\xcb\x8d\x9c\x37\x8b\x9a\x32\x89\x50\xd9\x3b\xe8\x7f\x4b\xb7\xe3\xaf\x63\x16\xe9\x92\xfb\xb7\x7a\xe7\x97\x1f\x06\x70\xda\xbf\xb8\x84\x4f\x87\xad\xc3\xe2\xc8\x78\xeb\xed\x45\xff\x63\xbb\x7f\x0a\xed\x4e\xa7\x7b\x39\xd8\x7c\x7f\xf1\x61\x60\x80\xb7\xbc\x26\x6d\x48\x91\x13\x06\x91\x00\xf2\xcf\x6c\x61\xed\x92\x18\xb4\x1f\x9b\xfa\xd7\x66\xba\xe3\xe3\xda\xe5\x4f\xe0\x83\x42\x38\x3a\x6c\xd8\xff\x9a\xaf\xcc\xa6\xb6\xb3\x5d\x4c\xc1\x25\xf5\xa7\xa8\x57\xe3\x53\x59\x6b\x1e\x3a\xbd\xd3\x7e\xb9\xde\xea\xe9\xd5\x34\x99\x1f\x09\x85\x01\xcc\x84\x44\xd0\x6c\x12\xea\x68\x69\xc7\x1f\x3a\xe9\x45\x74\x36\x7b\x66\x6d\x02\x54\x22\x20\x55\x4b\x53\x08\x26\xb1\xd9\x8a\x8d\x5a\x41\x54\x91\xbf\x8a\x58\x47\x2f\x7f\xd8\xa1\x86\xbb\xa0\x4d\x1a\xfd\x53\xe0\xaf\x0e\xff\x1c\xf8\xd1\x83\x6c\xf8\xe2\xe4\xe4\xf9\x16\x2b\x7e\x64\x3a\x04\xc5\xf8\x24\x42\x58\x37\xa8\xd2\x1a\x5d\xa1\x4e\xe2\x03\x3b\x09\xa8\x25\x1d\x8f\x99\x9f\x8e\x18\x9a\x97\xca\x28\xdf\xf6\x18\x68\xcc\xd2\x91\x6b\x98\xd1\x25\x8c\x23\xb1\xb0\x86\x43\xa6\x43\x94\xb0\xa6\x2f\x24\xbc\x3c\x39\x79\x5e\xf6\x80\x41\xe6\x32\x79\x2e\x27\x84\x06\x73\x94\x9a\x29\xcc\x6f\x26\x60\x1c\xd1\x89\x29\xdf\x2b\xd4\x02\x1c\x33\x8e\x2a\xf3\x8c\xde\x25\xe4\xeb\x73\x97\xa2\x41\x80\x36\xd9\x50\xbe\x4a\xf8\x25\xe2\x99\x04\x59\x87\x2d\xc0\x31\x4d\x22\xdd\x50\x73\x3f\x9f\x40\x34\x6e\x87\x12\x81\xf1\x3c\xb8\xad\x14\xa1\x05\xb4\x2f\x7b\x2b\x5a\x13\xc1\xf8\xa4\x01\x3d\xbd\x67\x8a\x05\xf6\x7b\x82\xdc\xb0\x62\x52\xcc\x24\x04\x66\x1e\x8f\xa8\xc2\xf2\xf9\x44\xf0\x22\xdb\xa6\x92\x35\x25\x8c\x7d\xfa\x9d\xd5\x9b\x2f\x66\x23\xc6\xed\x5d\x64\x63\xa5\xaa\x45\xb8\x84\x05\x82\xa4\x3c\x10\x33\xf6\x07\x5a\xfb\x14\xf0\x94\x46\x18\x0d\xd2\x85\xb5\x64\x89\x72\x9d\x9a\xb5\x80\x73\x63\xf5\xde\xe5\x81\xd5\x0c\x62\x6c\x8b\x68\xd4\x28\x67\x8c\x9b\xdc\xe0\x37\xa0\x37\x36\xf8\x16\xb6\x06\x2b\xb3\x60\x38\x3e\x58\xbf\x0c\xe9\xdc\x4e\x58\x8a\x18\xcb\xc7\x44\x1a\x45\xab\xf5\x0a\xcc\x71\x2e\xb4\xd2\x4c\xd0\x30\x6c\xbe\x8c\x99\xc4\x85\x5d\x26\x60\x82\x3a\x1b\x48\x35\x31\xa4\xe4\x3c\xe5\xc3\x80\x38\x30\xa6\x2e\xe8\x5e\x8c\xa1\x9b\x97\x79\x8c\x6f\xb3\x74\x76\x61\x62\x7d\xd0\x18\xa8\x6c\x94\xd4\xf9\xd7\x8e\xa5\xc3\xb5\x43\x97\xc8\x97\x7d\x6e\xcc\xa4\xd2\x07\xc5\x90\x18\x8a\xc5\xba\xa7\x52\xf5\xe4\x11\xe3\x81\xca\x0c\x6c\x3e\x9b\x7a\xc0\x92\x59\x75\x06\x25\xc6\x11\xcd\x26\x65\x7f\x6d\x5f\x4a\x71\xbd\x2c\xef\xa3\x5f\xc5\x02\xe7\x28\x0f\x4c\xed\xb1\x14\x09\x04\x18\xa1\xc6\x1d\xee\x0d\xfb\xb6\xf5\x6f\x92\x6f\xba\x3c\x7f\x4e\x38\x64\xcb\x0b\x18\x9e\x1d\x54\x0b\x8c\x27\x55\x41\xac\x16\x24\x92\x74\xc0\x39\xd5\xd7\xaa\xc2\x49\x9d\x32\x97\xed\xa0\x32\x4d\x6c\x42\x83\xf5\x56\x5b\x20\x97\x42\x4e\x24\x16\x0a\x02\x7b\x1d\x15\x2d\x4b\xe4\x19\xcf\x06\x95\x2b\x7c\xc4\x52\xf8\xa8\xac\x4a\x31\x2d\x50\x69\x04\xd9\xc1\xc1\x6c\xb1\x90\xc6\x31\x72\x48\x78\x60\x75\x6b\x4f\x8d\xc6\x51\xa5\xdd\x6a\x07\xb6\x03\x6b\x76\xcd\xea\xa8\x11\x4b\x8c\xa9\x34\x96\x15\x12\x98\xde\xee\x86\x83\x90\x9a\xbd\x9e\xed\x51\x8e\xc6\x64\xa2\xe8\x35\x56\x46\x2b\x6c\x3a\x7d\x6c\xb6\x47\xea\x75\x95\xe8\x5b\xa4\xf1\x97\x9b\x7f\x19\xc3\xae\x57\x0c\x7d\xdb\x64\xf3\x3c\x70\x8e\x1c\xf8\xd7\xed\x83\x53\xc8\xcb\x6d\x19\xc1\x90\x42\x1e\xb0\x31\x3c\x1c\xe9\xd1\xe1\xf1\xf7\x7f\x26\xaf\x19\xf8\x17\x3b\xe0\x67\x46\x0b\x5c\x4b\xea\x4f\xcd\x59\x54\xdb\xf2\x1d\xfa\xdd\xb3\xf6\xa0\x7b\x7a\xd0\xbd\x1a\xb4\xdf\x9c\xf5\xae\x7e\xed\x9e\xd6\xe2\xe9\x5c\xbc\x7f\xdf\x1b\x6c\x2b\xfc\x5e\xfc\x47\x57\x7e\xf5\x6f\xff\xbf\xeb\xbe\x7f\xa7\x25\xbe\x6a\xe0\xe8\x6e\xdb\xbc\x7c\xa0\x6d\xee\x6a\x9c\x16\x1e\x48\xa4\x81\xe0\xd1\x32\xbb\x81\x19\xa6\x8c\x0d\x53\xc6\x3c\xc7\xdd\xcf\x6e\x66\x18\x1f\x0b\x73\xda\xde\xbb\xb9\x69\x74\xec\x9a\x53\xbb\xe4\xf6\x76\xef\x59\xb1\xd5\xe1\x53\x0d\x3f\xfd\xd4\xbd\x78\x0b\xaf\xef\x1e\xc1\x29\xc0\xd0\x98\xfd\x86\x52\x31\xc1\xd7\x83\xc8\xd9\xaf\x49\xa6\xaf\xec\x85\xe1\xfc\x68\x84\x9a\x1e\x15\x60\xa6\x8c\x07\x2d\xc8\xc6\x8b\x3b\x99\x7e\x6d\xd0\x2b\x32\x53\x60\xb4\x05\x8e\xeb\xde\xd4\x49\x59\xea\x22\x75\x2f\xde\x6e\x36\xb9\x8b\xbf\xc1\xb9\x5f\x97\xfb\x9b\x18\xeb\x09\x0c\x2e\x4e\x2f\x5a\x76\x8e\x81\x4a\x91\xf0\x34\x6a\xe7\xbf\x18\x98\x30\x1d\x26\xa3\x86\x2f\x66\xf9\x24\x33\x89\x18\x4f\xae\x9b\xd9\xd4\x7b\x93\x29\x95\xa0\x6a\x1e\x1d\x97\x4a\xd5\x71\xc2\x7d\x3b\xdd\x14\xb0\x09\xdc\x94\xce\xb0\xab\x7b\x38\x99\x70\xb3\xd1\x08\x91\x33\xa8\x5e\x4b\xd0\x28\x66\x1c\x49\xc0\x26\xad\xe7\x8d\x1f\x1a\x2f\x2c\x1e\xc7\xfd\xd9\x29\x5e\x98\x15\xd0\xde\x56\xfa\x09\x9f\xc0\x7d\x02\x84\x23\x3c\x87\xcf\x75\x47\xfd\xbc\xc3\xfa\x41\xd1\x09\xb6\xc0\x3d\x84\x9f\xfe\x10\x1c\x5f\xc3\x4f\x12\x7d\x21\x83\xd7\xf0\xd3\x8c\x5e\x0f\xa9\xd6\x38\x8b\xb5\x7a\xed\x54\xa1\xaf\x99\x86\xa3\x6d\xe7\x6e\x83\xca\x73\x8f\x4a\x3b\xc0\x60\xf5\xdc\xe3\x62\xeb\xa4\x40\xc0\x73\x9f\x6f\x74\x7f\xdf\x1a\x6f\xb3\x97\x00\x89\xb6\x69\x9b\xd3\x19\xa6\x29\x5b\x59\x1b\xb9\x86\x4e\x91\xb3\xc2\x02\xcf\x29\x6d\x18\x93\xff\x50\x96\xfa\xcd\xe9\xef\xc9\x8c\xa6\xb2\xb7\x40\x22\x0d\x6e\x91\x2b\xab\xbb\x40\x54\x64\x17\x89\xf6\xdc\x7d\x63\x90\xef\x54\x68\x62\xdf\x77\x9a\xcd\xd0\x3c\x3d\x06\x27\xe5\x09\x78\xa9\xbd\x9e\x6a\x40\x7b\xee\x7f\x55\x1e\x66\xa6\x92\x36\x60\xfc\x0e\x87\xf0\xf4\x29\x38\xae\x48\xb4\x03\x8f\x3d\x70\x9c\x6d\xc6\xab\x0a\xeb\x96\x2f\x7a\xf3\xbf\x91\x44\x3a\xad\x3c\x2f\x19\xaa\xa0\xec\xf4\x4e\x24\xaf\xc1\xcc\x61\x22\x40\xcb\x59\x0b\x2c\x43\x15\xa8\xec\x57\x74\x95\xa7\xb9\x9e\xdd\xfd\xfd\xec\xe3\x77\x47\xcf\x8a\x9a\x28\x8d\xe8\xe4\xf2\x3b\x6e\x41\x16\xc7\x96\x29\x5b\x25\x4f\xb9\xed\xac\x6a\xb3\xec\xc7\x8c\xbb\x7d\x03\x76\x7a\xad\x01\xe3\xf6\x88\x51\xe4\xa7\xc6\x01\x52\x1e\x2e\x45\x14\x19\xef\x74\x79\x46\x31\xf5\xf1\x86\xa5\xdc\x68\x34\xaa\xc4\xeb\x7c\xd0\xfc\x89\x69\x3a\x85\x5a\x79\xfc\xd5\xee\x09\x3b\x5c\xf4\x67\xc7\xe5\xca\x01\x27\xe3\xd7\x69\xe4\x3e\x4b\xab\x2e\x0b\xdb\xdc\x16\xfe\xa4\xeb\xae\x95\x78\x26\xc4\x54\xc1\x44\x88\xe0\x71\x55\x5f\x05\xfd\x54\x1a\xa6\xc5\xbf\x3a\x17\x87\x3a\x37\x5f\xd3\x3c\x17\x1a\xe8\x9c\xb2\xc8\x94\x6f\xb0\xc4\x0d\xdf\x86\xad\xfe\x0d\xf7\xf1\x71\xd8\xf4\x73\x48\x15\xf6\x18\x5c\x31\xdd\xaa\x95\xec\x16\xa8\xe8\x46\x10\xb0\x80\xef\x69\x18\xa1\x2f\x66\x58\xe0\x3a\x6b\x62\xda\xe3\x66\x14\x89\x05\x06\x76\xe2\xa3\x4e\x92\x0d\xa7\xdf\x50\x4f\x85\xd9\x3a\x3e\x98\x2a\x10\x17\xdc\x9e\xca\x8b\x9b\xf6\x51\x85\xde\xe1\xa3\x98\x2a\xb5\x48\xff\x4d\x0f\x85\xd2\xa6\xe6\xe2\x0f\xd2\x2c\x80\x52\xe1\x30\x1f\xa1\xc6\x60\x38\xc5\xa5\x6a\x81\x7b\x63\x1e\x9b\xcf\xb7\x8f\xfe\x2f\x00\x00\xff\xff\x57\xe0\x93\xde\x1e\x44\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/controllers.tf": &vfsgen۰CompressedFileInfo{ name: "controllers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3146, + uncompressedSize: 3232, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xdf\x6f\xdb\x36\x10\x7e\xd7\x5f\x71\x53\x5d\x34\x19\x6c\x39\x69\xb7\xa1\x30\x60\x0c\x45\x5a\x60\x7d\xe9\x8a\xfe\x78\x2a\x0a\x82\x21\xcf\x16\x6b\x8a\xe4\x48\xca\x3f\x66\xf8\x7f\x1f\x8e\x92\x6c\xcb\x76\x92\x61\xcb\x93\x72\xf7\xdd\x91\x77\xf7\xdd\x47\x7b\x0c\xb6\xf6\x02\x21\x77\x5c\x2c\x30\x32\x89\x4b\x25\x30\x87\x5c\x58\x13\xbd\xd5\x1a\x7d\xc8\x61\x9b\x01\x08\x5b\x9b\x08\x47\x7f\x53\x58\x72\x5f\x1c\x70\x2c\x21\x32\x80\xd2\x86\x68\x78\x85\x47\xc8\x7c\xb0\x4d\x60\x5d\x87\x88\x9e\x91\x77\x37\x3a\x84\x8e\x06\xdb\x14\x5c\x28\x23\x71\xbd\xcb\x33\x00\xa7\xb9\x81\x47\x8f\x8b\x1b\x87\x19\xc0\x8c\x0b\xa5\x55\x54\x18\xf6\xc0\x6f\x84\x6c\xed\x9b\xef\x19\x80\x75\xe8\x79\x54\x66\xce\xc2\x26\x44\xac\xda\x64\xca\xad\x91\x05\xe1\x95\x8b\xac\xf6\x1a\x7e\x9a\x42\x9e\xc3\xef\x90\x8b\x3a\x44\x5b\x31\xf2\xe7\x30\x81\x99\xf5\x15\x8f\x57\xf9\x4c\xf3\x28\xb8\x67\xcf\x43\x3e\x4c\x09\x6c\x60\xa2\xe4\xc6\xa0\xbe\xce\x00\xee\x95\xd6\x74\x86\xd8\x08\x8d\x6d\xdd\xa5\xad\xbd\xde\xa4\x82\xbc\xfd\x81\x22\x32\x25\x7b\x05\x1d\xcc\x19\x40\x1d\xd0\x33\xc9\x23\xef\x17\xfd\xd0\x3d\x09\x59\x88\xc8\x84\x35\x33\x35\x3f\xea\xcd\x48\x99\x10\xb9\xd6\x23\x35\x37\x2a\x2a\x6b\xc2\xb7\xa3\xfe\x7e\x2f\x3c\x1a\x89\x1e\x25\x4c\x1e\xcb\xf1\x78\x6c\x96\x01\x3c\x83\xf7\x33\x30\x36\x82\xf3\x18\xd0\x44\x50\x06\x62\x89\x50\x71\x37\x04\x15\xa9\x9e\x00\xcd\xe8\x09\xe0\x97\x9c\x12\x32\x25\x03\x93\x38\xe3\xb5\x8e\xbb\x82\x08\xc3\xbd\x5c\x71\x8f\xac\x0f\x82\x29\x68\x6b\x17\xb5\xbb\xca\xa8\x17\x17\xb2\x0c\x93\xa3\x1b\xcf\xd1\xdd\x9f\x2f\xf3\x21\x1c\x5d\xfb\x7a\xf8\x50\x8a\xee\x22\x04\xb8\xa6\x9a\x4e\x9b\x7d\x71\x04\x19\x00\xd7\x2b\xbe\x09\xcc\xad\xb1\x1b\xd5\x8c\xeb\x40\x8c\x8c\x7c\x1e\xce\x99\x4b\xd6\xa6\x67\x5f\x4a\x15\x60\xc5\x37\x10\x2d\x94\xdc\x48\x8d\x20\xd1\x51\x5b\x8d\x20\x1a\xaf\x78\x00\x65\x82\x53\x34\xa1\xd4\x51\x15\x26\x29\xb2\x8c\xd1\x85\xc9\x78\x2c\x55\x10\x75\x08\x45\xc9\x43\xa9\x84\xf5\xae\x10\xb6\x1a\xc7\x71\x54\x2e\x8c\x4a\xbb\x8a\x76\xa4\x2a\xa7\xb1\x42\x13\x47\x95\x95\xb5\xc6\x51\x73\x44\x18\x59\x33\xc2\xaa\xd6\xa9\x01\xe3\x97\xaf\x6e\x7e\x1d\xbf\xcc\xa0\xbd\x40\x60\xd6\x74\xfb\x63\xac\x44\xea\x0e\xd9\x99\x35\xdf\xb3\x5d\x96\x25\x6a\xe6\x7b\xb6\xf4\x64\xe2\x9c\x73\xc7\xba\xf1\xa0\x58\x90\x09\x13\x20\x62\xe5\x34\x8f\x38\x53\x1a\xaf\xf2\xc1\xd6\xf1\x58\x16\xcd\xe5\x77\x63\xa1\xc7\xe7\x47\x15\x1b\x5e\xe9\x22\x56\x4e\xe7\xc3\x74\x16\xc0\x61\x23\xcf\x06\x70\x70\x75\xc8\x25\xfa\xa0\xac\xb9\x84\x6c\x5d\x1d\x92\x7b\x51\xc2\x05\x39\x6a\x5d\x0d\x0d\x5b\x75\xd0\xca\xd4\x6b\x66\xb1\x6a\x25\xa0\x51\xd6\x3c\x61\x42\x28\xd9\x02\x37\xe1\x24\xd5\x8f\x60\x0d\x1a\x61\x25\x5e\x51\xd6\x0e\x75\x9d\x62\x9c\x0d\xb1\x2d\x98\x75\xbd\x85\xe9\xff\x58\x5c\x80\xdd\xf5\xd3\xd3\xbc\x34\xc5\xc7\x54\x9f\x66\x47\x9b\xd8\x2f\xf9\xbf\x8c\xf7\xf2\x58\xd3\x08\xce\xbb\xfe\x0c\xee\xb8\x21\x09\xaa\x03\x02\x29\xaf\x12\xfd\x6d\xb2\x06\x8e\xde\x32\xb0\x9e\x14\x4a\x79\x78\xfb\xe1\x33\x78\x14\xd6\xcb\x90\x12\x61\x14\x92\xf5\x9e\xad\x66\x7c\x64\x3f\x7f\x9e\x5a\xbc\xb4\x15\x57\x06\x9e\x7a\xe9\xce\x73\x14\x0d\x4c\x9a\xc0\xfe\xb6\x06\x8f\x73\x52\x69\x2c\xf2\x39\x0b\xf5\x6c\xa6\xd6\xfd\x9a\x61\x3a\x85\x9c\xfb\xea\xb7\x5f\xd2\x43\x35\x6a\x3f\x27\x90\x9f\x66\xb0\x2e\x8d\xef\x8c\xab\x27\x19\xde\x7d\xb9\x7b\xcb\xbe\x7e\xf8\xfc\xf5\xe3\xc7\x3f\x3f\x7d\x79\xf7\x96\xbd\xf9\x74\xf7\xc7\xf4\x34\xed\xb3\x94\xf8\x66\xda\x09\x50\x5b\x5e\x2a\xec\xa6\xc0\x35\x27\xb5\x21\x11\x1a\x92\xe5\xf6\x22\xee\xb6\x87\x2b\x8a\xe2\x70\x61\x45\x5c\xe3\x9a\xb5\xf0\xb4\x12\x56\x99\xab\x7c\x98\x0f\x1b\xa2\x77\xec\x61\x44\x9f\x82\x82\x42\xf1\xf3\x9e\xd2\xcd\xa2\x2c\xea\x7b\x6c\xa8\xdc\x1f\x21\x75\xdc\xc4\xab\xdb\x9b\x21\x34\x7c\x2b\xee\xad\x8d\x84\x2e\x0e\x21\x23\xfa\xd4\x18\xaf\x1f\xde\xd3\xa7\x16\x75\xf1\x3a\x30\x1a\x28\xbd\x2f\x4a\x20\x53\xae\x09\x12\x4a\x7a\xfa\x4d\xd4\x84\xb4\x4e\x32\x0e\xe1\xf6\xa6\x09\xed\xe8\xd2\xf0\xa9\x3f\xf9\x8b\xbe\x26\xea\x64\x0b\x1f\xf8\xa1\xd4\x6c\x68\x3b\xc7\x15\x82\x41\x94\xf4\xf6\x38\x9f\xf6\x04\x38\x7d\xd1\x79\x2f\xa4\x15\x0b\xf4\x93\xf1\xf8\x05\x3d\xaa\x90\x58\x30\x84\x7b\x14\x9c\xb6\x2b\xfd\x0b\xaa\xe2\x73\x0c\x6d\x36\x6b\xe0\xaf\x9a\x6f\x28\xc1\x92\xd6\xbc\x0e\x30\xf3\xb6\x02\x69\x57\x46\x5b\x2e\x95\x99\xc3\x9b\xbb\xf7\x20\xac\xf7\x28\xa2\xde\x14\x6d\xe0\x67\x0b\x2a\xbe\x08\xb0\xb2\x7e\xc1\xbd\xad\x4d\xba\x51\x17\xd6\x3b\x0a\x6a\x13\x95\x6e\xce\x69\x2d\xc2\xd6\x5a\xc2\x3d\xc2\x4c\xad\x51\x36\x39\x93\xab\xa1\x7e\xed\x35\x6b\x4b\x7a\x8c\xfa\xfb\x6a\xf7\x44\xdf\xd1\x34\x82\x51\xce\x61\x0c\x17\x1a\xa9\x05\xeb\xbc\x07\x01\xed\x51\x33\x6f\x04\xe3\x5f\xab\x66\x17\xbc\x57\x9a\xc1\xb6\x11\x88\xfd\x0a\x0d\x06\xdb\x0b\x62\xd2\xc1\x8a\xc1\x60\xbb\x17\x91\xc9\xcb\x57\xaf\x6f\x72\x9a\xf4\x92\x7b\xba\x7f\x23\x9e\x09\x79\xe0\xf0\x91\x0c\xf5\xb8\x97\xb4\xaf\x4f\x39\x32\x25\x4c\x77\xc4\x11\xc1\x3a\x13\xb5\x2d\xdb\x65\xff\x04\x00\x00\xff\xff\xd4\xfd\x1d\x77\x4a\x0c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xdb\x6e\x1b\x37\x10\x7d\xdf\xaf\x98\x6e\x14\xc4\x2e\xa4\x95\x9d\xb4\x45\x20\x40\x28\x02\x27\x40\xf3\x92\x06\xb9\x3c\x05\x01\x41\x93\x23\x2d\x23\x2e\xc9\x92\x5c\x5d\x2a\xe8\xdf\x8b\xe1\xee\x4a\x5a\x49\xb6\x8b\xd6\x4f\x6b\xce\x99\xe1\x5c\xce\x1c\xca\x63\xb0\xb5\x17\x08\xb9\xe3\x62\x81\x91\x49\x5c\x2a\x81\x39\xe4\xc2\x9a\xe8\xad\xd6\xe8\x43\x0e\xdb\x0c\x40\xd8\xda\x44\x38\xfa\x9b\xc2\x92\xfb\xe2\x80\x63\x09\x91\x01\x94\x36\x44\xc3\x2b\x3c\x42\xe6\x83\x6d\x02\xeb\x3a\x44\xf4\x8c\xac\xbb\xd1\xc1\x75\x34\xd8\x26\xe7\x42\x19\x89\xeb\x5d\x9e\x01\x38\xcd\x0d\x3c\x7a\x5d\xdc\x38\xcc\x00\x66\x5c\x28\xad\xa2\xc2\xb0\x07\x7e\x23\x64\x7b\xbe\xf9\x9e\x01\x58\x87\x9e\x47\x65\xe6\x2c\x6c\x42\xc4\xaa\x0d\xa6\xdc\x1a\x59\x10\x5e\xb9\xc8\x6a\xaf\xe1\xa7\x29\xe4\x39\xfc\x0e\xb9\xa8\x43\xb4\x15\x23\x7b\x0e\x13\x98\x59\x5f\xf1\x78\x95\xcf\x34\x8f\x82\x7b\xf6\x3c\xe4\xc3\x14\xc0\x06\x26\x4a\x6e\x0c\xea\xeb\x0c\xe0\x5e\x69\x4d\x77\x88\x8d\xd0\xd8\xd6\x5d\xda\xda\xeb\x4d\x2a\xc8\xdb\x1f\x28\x22\x53\xb2\x57\xd0\xe1\x38\x03\xa8\x03\x7a\x26\x79\xe4\xfd\xa2\x1f\xca\x93\x90\x85\x88\x4c\x58\x33\x53\xf3\xa3\xde\x8c\x94\x09\x91\x6b\x3d\x52\x73\xa3\xa2\xb2\x26\x7c\x3b\xea\xef\xf7\xc2\xa3\x91\xe8\x51\xc2\xe4\xb1\x18\x8f\xfb\x66\x19\xc0\x33\x78\x3f\x03\x63\x23\x38\x8f\x01\x4d\x04\x65\x20\x96\x08\x15\x77\x43\x50\x91\xea\x09\xd0\x8c\x9e\x00\x7e\xc9\x29\x20\x53\x32\x30\x89\x33\x5e\xeb\xb8\x2b\x88\x30\xdc\xcb\x15\xf7\xc8\xfa\x20\x98\x82\xb6\x76\x51\xbb\xab\x8c\x7a\x71\x21\xca\x30\x19\xba\xf1\x1c\xe5\xfe\x7c\x99\x0f\xe1\x28\xed\xeb\xe1\x43\x21\xba\x44\x08\x70\x4d\x35\x9d\x36\xfb\xe2\x08\x32\x00\xae\x57\x7c\x13\x98\x5b\x63\x37\xaa\x19\xd7\x81\x18\x19\xf9\x3c\x9c\x33\x97\x4e\x9b\x9e\x7d\x29\x55\x80\x15\xdf\x40\xb4\x50\x72\x23\x35\x82\x44\x47\x6d\x35\x82\x68\xbc\xe2\x01\x94\x09\x4e\xd1\x84\x52\x47\x55\x98\x24\xcf\x32\x46\x17\x26\xe3\xb1\x54\x41\xd4\x21\x14\x25\x0f\xa5\x12\xd6\xbb\x42\xd8\x6a\x1c\xc7\x51\xb9\x30\x2a\xed\x2a\xda\x91\xaa\x9c\xc6\x0a\x4d\x1c\x55\x56\xd6\x1a\x47\xcd\x15\x61\x64\xcd\x08\xab\x5a\xa7\x06\x8c\x5f\xbe\xba\xf9\x75\xfc\x32\x83\x36\x81\xc0\xac\xe9\xf6\xc7\x58\x89\xd4\x1d\x3a\x67\xd6\x7c\xcf\x76\x59\x96\xa8\x99\xef\xd9\xd2\x93\x89\x73\xce\x1d\xeb\xc6\x83\x62\x41\x47\x98\x00\x11\x2b\xa7\x79\xc4\x99\xd2\x78\x95\x0f\xb6\x8e\xc7\xb2\x68\x92\xdf\x8d\x85\x1e\x9f\x5f\x55\x6c\x78\xa5\x8b\x58\x39\x9d\x0f\xd3\x5d\x00\x87\x8d\x3c\x1b\xc0\xc1\xd4\x21\x97\xe8\x83\xb2\xe6\x12\xb2\x35\x75\x48\xee\x45\x09\x17\xe4\xa8\x35\x35\x34\x6c\xd5\x41\x2b\x53\xaf\x99\xc5\xaa\x95\x80\x46\x59\xf3\x84\x09\xa1\x64\x0b\xdc\x84\x93\x50\x3f\x82\x35\x68\x84\x95\x78\x45\x51\x3b\xd4\x75\xf2\x71\x36\xc4\xb6\x60\xd6\xf5\x16\xa6\xff\x63\x71\x01\x76\xd7\x4f\x4f\xf3\xd2\x14\x1f\x53\x7d\x9a\x1d\x6d\x62\xbf\xe4\xff\x32\xde\xcb\x63\x4d\x23\x38\xef\xfa\x33\xb8\xe3\x86\x24\xa8\x0e\x08\xa4\xbc\x4a\xf4\xb7\xc9\x1a\x38\x7a\xcb\xc0\x7a\x52\x28\xe5\xe1\xed\x87\xcf\xe0\x51\x58\x2f\x43\x0a\x84\x51\x48\xd6\x7b\xb6\x9a\xf1\xd1\xf9\xf9\xf3\xd4\xe2\xa5\xad\xb8\x32\xf0\xd4\x4b\x77\x1e\xa3\x68\x60\xd2\x04\xf6\xb7\x35\x78\x1c\x93\x4a\x63\x91\xcf\x59\xa8\x67\x33\xb5\xee\xd7\x0c\xd3\x29\xe4\xdc\x57\xbf\xfd\x92\x1e\xaa\x51\xfb\x39\x81\xfc\x34\x82\x75\x69\x7c\x67\x5c\x3d\x89\xf0\xee\xcb\xdd\x5b\xf6\xf5\xc3\xe7\xaf\x1f\x3f\xfe\xf9\xe9\xcb\xbb\xb7\xec\xcd\xa7\xbb\x3f\xa6\xa7\x61\x9f\xa5\xc0\x37\xd3\x4e\x80\xda\xf2\x52\x61\x37\x05\xae\x39\xa9\x0d\x89\xd0\x90\x4e\x6e\x2f\xe2\x6e\x7b\xb8\xa2\x28\x0e\x09\x2b\xe2\x1a\xd7\xac\x85\xa7\x95\xb0\xca\x5c\xe5\xc3\x7c\xd8\x10\xbd\x63\x0f\x23\xfa\x14\xe4\x14\x8a\x9f\xf7\x94\x6e\x16\x65\x51\xdf\x63\x43\xe5\xfe\x08\xa9\xe3\x26\x5e\xdd\xde\x0c\xa1\xe1\x5b\x71\x6f\x6d\x24\x74\x71\x70\x19\xd1\xa7\xc6\x78\xfd\xf0\x9e\x3e\xb5\xa8\x8b\xd7\x81\xd1\x40\xe9\x7d\x51\x02\x99\x72\x8d\x93\x50\xd2\xd3\x6f\xa2\xc6\xa5\x35\xd2\xe1\x10\x6e\x6f\x1a\xd7\x8e\x2e\x0d\x9f\xfa\x93\xbf\x68\x6b\xbc\x4e\xb6\xf0\x81\x1f\x4a\xdd\x86\x02\x74\x74\xbb\x24\x65\x9d\xad\x97\x4f\x7f\x1f\xfa\xf9\x90\x2d\x6b\xd9\xb1\x42\x30\x88\x92\x5e\x34\xe7\xd3\xf6\x01\xa7\x2f\xaa\xe2\x85\xb4\x62\x81\x7e\x32\x1e\xbf\xa0\xa7\x1a\x12\xb7\x86\x70\x8f\x82\xd3\xce\xa6\x7f\x41\x55\x7c\x8e\xa1\x8d\x66\x0d\xfc\x55\xf3\x0d\x05\x58\x92\x78\xd4\x01\x66\xde\x56\x20\xed\xca\x68\xcb\xa5\x32\x73\x78\x73\xf7\x1e\x84\xf5\x1e\x45\xd4\x9b\xa2\x75\xfc\x6c\x41\xc5\x17\x01\x56\xd6\x2f\xb8\xb7\xb5\x49\x19\x75\x6e\xbd\xab\xa0\x36\x51\xe9\xe6\x9e\xf6\x44\xd8\x5a\x4b\xb8\x47\x98\xa9\x35\xca\x26\x66\x32\x35\x0b\x55\x7b\xcd\xda\x92\x1e\x5b\xa8\x7d\xb5\xfb\xf5\xd9\xd1\x8c\x83\x51\xce\x61\x0c\x17\xc6\xa3\x05\xeb\xac\x07\x59\xee\x11\x3e\x6f\x64\xe8\x5f\x6b\x71\xe7\xbc\xd7\xaf\xc1\xb6\x91\x9d\xfd\x62\x0e\x06\xdb\x0b\x12\xd5\xc1\x8a\xc1\x60\xbb\x97\xa6\xc9\xcb\x57\xaf\x6f\x72\x9a\xf4\x92\x7b\xca\xbf\x91\xe4\x84\x3c\x30\xe3\x48\xdc\xce\x19\x74\x81\x38\x67\x74\x3c\x63\xe1\x2e\xdb\x65\xff\x04\x00\x00\xff\xff\xd6\xa1\x84\xed\xa0\x0c\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -4854,9 +4854,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "worker.yaml.tmpl", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 13950, + uncompressedSize: 16026, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3b\x6b\x73\xdb\x36\xb6\xdf\xf3\x2b\x4e\x19\xdd\xb5\xdd\x31\x44\xf9\xd1\x34\x51\x97\x9d\xab\xd8\x4a\xeb\x69\x52\x7b\x64\x25\xe9\x4e\x36\xcb\x81\xc8\x43\x09\x2b\x12\xe0\x05\x40\xc9\xaa\xe3\xfd\xed\x77\x00\x52\x12\x5f\xf2\x63\x9b\xee\xbd\x93\x99\x8c\x48\x9e\x17\xce\x1b\x07\x30\x21\xe4\x99\x5a\x29\x8d\x49\xd8\x7f\x06\x90\x71\xa6\x95\xf9\x01\x40\x80\xd3\x04\xfb\x90\xa2\x54\x4c\x69\x12\x52\x4d\x89\xa4\x2c\xec\x2a\x94\x0b\x16\xa0\x85\x02\x40\x4e\x27\x31\xf6\x41\xcb\x6c\xfd\x2a\x10\x5c\x23\xd7\xaa\x0f\x5f\x8a\x37\x00\x9f\xde\x73\xa6\x3f\x6f\x1e\xcf\x51\x05\x92\xa5\x9a\x09\xee\x5d\xe5\x1c\xc0\x70\x80\xd1\xe0\xe2\x1c\x58\x04\x78\xc3\x94\x56\x1b\xf8\x33\xc1\x43\x66\xa0\xaf\xa8\x9e\x0d\xed\x37\xef\x1b\x17\x75\xe0\x26\x21\x0d\x93\x6e\x20\x78\xb4\x01\x7e\x8d\x91\x90\xe8\xcd\xb3\x09\xc6\xa8\x6b\xf2\x02\x7c\xba\xce\x5f\x6c\xa5\x19\xaf\x52\xf4\x04\x47\x35\x13\x7a\xf3\x72\x84\x09\x65\x7c\x10\x69\x94\xc3\x1b\xa6\xbd\xd2\x02\x01\x86\x37\x18\x5c\x6b\x2a\xb5\xe7\x8a\x54\xbb\x0d\x25\x6d\x99\x5d\x70\xa5\x69\x1c\x6f\x99\x7d\xa4\x5c\x63\xf8\x7a\xe5\x25\x59\xac\x19\xc9\x14\xca\xae\xa6\x72\x8a\x65\xd6\xff\x93\x31\x69\x81\xda\x16\xb1\x36\x4d\x28\x82\x39\xca\x87\xec\xb1\x86\x8e\x45\x30\x57\x09\xd3\xb3\xba\x05\x13\xaa\xe6\x2d\xf0\x81\x90\x28\x14\x49\x50\x53\xbb\x2c\xa5\x66\x73\x5c\xa9\xff\x36\xef\x1f\x47\x61\x49\x99\x26\x91\x90\x24\xe4\xea\xab\x7b\xcd\x47\xca\x34\x44\x42\xc2\xf9\xaf\xd7\x80\x5c\x4b\x86\xaa\xa2\x63\xe5\x15\x8e\x4d\x24\x2a\x11\x2f\xb0\xbe\xee\xff\xb4\xa3\x4c\x18\x77\xd5\x0c\x48\x00\x7b\xcb\x19\x8b\x11\xbe\x01\x37\x53\xd2\xbe\x9f\x4a\x4c\x61\xef\x1f\x9f\xfe\xf1\xfc\x53\x5f\xa5\x34\xc0\xfe\xe7\xcf\x7b\x60\x1d\x3c\x97\xde\x7a\x38\xfc\x08\x6e\x88\x0b\x97\x67\x71\xfc\x03\x84\x02\x54\x8c\x98\xc2\x91\xf9\xcd\x71\xef\x1e\xa7\x7b\xa4\x47\xd5\x6c\xfe\xd5\x8d\xf6\x26\xa6\x3a\xa0\xd2\x84\xb3\xa6\x8c\xa3\x84\xb7\x8c\x67\x37\xf0\xae\x60\x08\x83\x29\x72\xfd\x54\x03\x0c\xf9\x82\x49\xc1\x13\xe4\xda\x3b\xbb\x1c\x0d\x2f\xaf\xfd\x77\xc3\xf1\xe0\x7c\x30\x1e\xf8\x97\x57\x63\xff\x6a\x74\xf9\xe1\xe2\x7c\x38\xf2\x08\x09\x92\x30\x66\xbc\xd5\x3c\x6b\x53\xd4\x74\x00\x9d\xce\xed\x7d\x44\xef\x80\x10\xaa\xb5\x64\x93\x4c\xa3\xf2\x5c\x99\x71\x77\x8d\xeb\x46\xf9\x7a\x1f\x67\x98\x8d\xd6\x4b\xd9\x60\x6d\x98\x76\x17\xfd\xe3\x06\xf9\x25\xa7\x0b\x0b\x46\xe1\xe7\x55\x8a\xd2\x30\xaa\x0b\xa7\xbc\xfb\xfd\x02\xc0\x3a\xff\x83\x50\x4d\x73\x96\x2c\xf7\x86\xc5\xf8\x80\xf6\x1a\xd0\x26\x3c\x8c\xc0\x92\xa3\x46\xe5\xae\x95\x84\x7c\xd1\xea\x1b\xce\xe8\x97\xb1\x3f\x7a\xff\xab\x3f\x18\xfd\x74\xed\x11\x92\x65\x2c\x24\x11\x8b\x91\x28\xba\x40\xcf\x5d\x50\xe9\x06\x34\x98\xe1\x9a\x12\x49\x45\xd8\x35\x50\xf0\xf7\x0d\x41\x00\x42\x16\x22\xce\x12\xf4\xf2\xc8\x3c\x9c\x33\x1e\x7a\x33\xa1\xf4\xa1\x12\x99\x0c\x0a\xb9\xca\x61\x5b\xc5\x4e\x44\xc6\x35\x54\x69\xe4\x26\x7f\x08\x33\xc7\x81\x05\x95\x24\x66\x13\x12\x70\xd6\xc2\xdc\xac\x22\x66\x13\x37\xe0\xec\x3e\xc6\x65\x22\x6b\xee\xbb\x51\xeb\x9c\x69\xcc\x02\x71\x1f\x73\x0b\xf0\x28\xfe\x39\xa9\x86\x08\x6d\x04\x0a\x29\x44\xaa\x8d\xd8\x64\xc2\x78\x8b\x08\xa6\x1e\x07\x9c\x99\x58\xbe\x8f\x7f\x99\xc8\x9a\xf9\x6e\xd4\xf2\xfa\xc5\x74\xd7\xc2\xc5\xf4\xc1\x15\x8b\x69\x75\xa9\x0d\x94\x82\x93\x09\x80\x16\x36\x09\xd7\xf7\xb1\xb0\x58\x6b\xfa\x4d\xd8\x82\x36\x53\x81\x62\x34\x4c\x5a\xe8\x9b\x24\xa8\x4c\x16\x5c\xc3\xdc\xc7\x6d\x43\x67\xcd\xf1\x21\x6c\xc6\x15\x06\x99\x44\x22\x6c\xf6\x51\x1e\x4b\xe8\x14\x9d\x66\x36\xbe\x92\x98\xd7\xcb\x64\x1e\x32\x09\x24\x85\xb2\x6d\x1e\x05\x5f\xcb\x0d\x09\xe5\x2c\xc2\x72\x4b\xf9\x04\x64\xc3\x97\xa3\xee\x86\x8f\x42\x2e\x45\xd1\xd3\xe0\xad\xcb\x3f\x09\xa5\xc8\x53\x6e\x6e\x90\x34\xce\xa6\x8c\xef\x5a\xe1\xba\xbe\x4d\x68\xde\x84\x38\x79\xcf\x11\xa0\xd4\x2c\x62\x01\xd5\x48\x68\xa6\x67\x42\x32\xbd\xb2\x8d\xec\x5e\x43\x0f\xe6\xa7\x49\x4b\x6c\x0a\x5f\x80\x2e\xe7\xb0\x77\x9b\x4a\xc6\x35\x74\x8e\xef\xf6\xe0\x0b\x4c\xa8\xc2\x17\xa7\x40\x42\xd3\xa8\xd4\x75\x48\xbb\x81\xd4\x3b\x6c\x4d\x36\xd2\xc9\xb9\x06\x99\x40\x29\x39\xdf\x97\x97\x77\x2c\xb5\xce\xda\x8a\x6c\xfc\x6e\x8d\x1f\x4c\xa5\xc8\x52\x12\x4a\xb6\xc0\x6d\x7d\x79\x0e\xe3\xcb\xf3\xcb\x3e\x7c\x14\x72\x4e\xa5\xc8\x78\x08\x19\xd7\x2c\x86\x99\xd6\xa9\xea\xbb\xee\x94\xe9\x59\x36\xe9\x06\x22\x29\xba\x04\x97\x9a\xc2\x37\xc9\x24\x77\xd3\x2c\x8e\xdd\x93\xef\x5e\x96\xa8\x25\x74\x8e\x0a\x98\x06\xc6\xb5\x80\xa2\xf7\xe9\xc2\x78\x86\x1c\x96\x08\x01\xe5\x20\x91\x86\x50\xb4\x17\x57\x83\xb3\x5f\x86\x63\xff\xe2\xea\xc3\xa9\x7f\x35\xba\xf8\x30\x18\x0f\xfd\x9f\x06\xe3\xe1\xc7\xc1\xdf\xfc\x5e\x89\x6c\x24\x45\x02\xad\x95\x12\x28\x0f\x21\x64\xca\x74\x05\xa0\x67\x08\x1a\x93\x34\xa6\x1a\x4d\x5b\x90\xef\x9f\x68\xac\x60\x82\xb1\x58\x76\xef\x6f\x51\xcb\x81\x0b\xe0\xfc\xd7\xed\xbf\xcc\xae\x6c\x32\x4d\x7d\x2e\x42\xf4\x63\x3a\xc1\x58\xc1\x37\x1e\x38\x0e\xfc\xeb\xae\x02\xfc\xfa\xa7\x2b\xff\x6a\x38\x1c\xf9\x83\xf3\xf3\xd1\xf0\xfa\xda\xeb\xec\xb3\x14\xa4\xc8\x34\xc2\x17\xc8\xbd\xee\xa8\xd7\xb5\xff\xdc\x97\x7b\x85\x2b\xdd\xee\x15\xae\x74\xb2\x77\x77\xf0\x43\x8d\xbf\x61\x8f\x3c\x64\x51\x9d\x97\xf5\x1b\x1b\x3c\xb9\x3d\xd6\x06\x5e\x4a\x9a\xa6\x28\x6b\x64\x08\x31\xc2\x13\x96\x7a\xdb\xa6\xae\x4d\xeb\xbd\xbb\x06\x22\xe5\x82\xaf\x12\x91\x29\x1b\x24\x5e\x44\x63\x85\x4d\xa0\x4c\xcf\x90\x6b\x13\x4c\x4c\x70\xa2\xc5\x1c\x39\x59\xe2\x64\x26\xc4\xbc\x15\x58\x48\xf6\x7b\x0e\x9b\x88\x10\xbd\x8f\x3b\x40\x83\x98\x21\xd7\x24\xa0\x45\x40\xb4\x86\x56\x0b\x56\xa6\x34\x4a\x3f\xe4\xca\xeb\xdc\xce\x5f\x2a\xf3\xcb\x2f\x9a\x32\x9f\xa5\xcd\x45\x6e\x30\x84\xd9\xd1\x78\x9d\xdb\xea\x0b\x5f\x65\x51\xc4\x6e\x5a\xf0\x38\x23\x26\xc8\x48\xc8\x64\x53\xba\x75\xf2\x6c\xa2\xd9\xb8\xdc\xd9\xc6\x15\x99\xa6\x8e\x85\x37\x4c\x13\xc1\x89\xd9\xcf\x92\xa2\xdd\x65\x82\x37\xe0\xb6\xc9\xaa\x95\xc3\x0e\xea\x96\xea\x36\xed\x98\x28\x33\xaf\x36\x42\x99\x87\xa6\x57\xa1\x5e\x0a\x39\x27\x79\x02\xf6\xea\xed\xd3\xc6\xf1\xf2\xa8\x31\xce\xf7\xeb\xe5\xf9\xd0\x7f\x3b\x78\x3d\x7c\x7b\xdd\x54\x67\x19\x36\x16\x73\x91\x08\xcd\x16\xd8\xa5\x71\x3a\xa3\xdd\x39\xe3\x0b\x11\xcf\xbb\x4c\xb8\x69\x36\x89\x59\x40\x58\xba\x38\xdd\xe5\xd0\xef\x5f\xbf\xbd\x38\x6b\xfa\xf3\x53\xc2\xb9\x21\xbb\x89\xef\xb2\xfc\x87\x26\x0d\xc5\xf1\xa4\x9b\x71\x93\x4e\x15\x76\x75\xe4\xa6\x88\x92\xd0\x30\x94\xa8\x94\xd7\xa9\xa7\x84\xc7\x86\x37\x31\x99\x9e\xac\x6b\x37\x49\xa9\x9e\x35\x8c\xb9\xa9\xec\x0d\x3d\x9a\xe4\x4a\x04\x8f\x57\x24\x15\x52\x7b\xbd\x16\x80\x29\x33\xfe\x4d\x96\x4c\xcf\x88\xd9\x91\xea\xad\x75\xc6\x83\x8b\x5f\xc7\x2d\xd6\xd9\x2c\xea\xa9\x29\x24\x2f\xd2\x85\x93\xe4\xa1\x72\x6f\x1d\xaf\xd7\x4a\x91\xd6\xea\xa4\xd2\x22\x7d\x72\xa5\x1c\xa1\xb2\xb9\x9e\xc6\x4b\xba\x52\xf5\xd7\xd7\x18\x78\xdf\xfd\xfb\xc3\xab\xcd\x64\xca\xf0\x46\xeb\x38\x7f\xca\xe0\x87\xf1\x29\x68\x51\xb0\x81\x5f\x36\xce\x00\x86\x23\x08\x0e\x6a\x96\xe9\x50\x2c\xf9\x9f\x39\xcb\x69\xf9\x26\xd2\x86\x7b\x96\x54\xf1\xc7\xf5\xea\xb0\x54\x1b\xfd\x29\x22\x51\xe9\xd2\x20\xce\xa9\xa8\x37\xac\xe8\x77\xe7\x44\xd0\x61\xe9\x8b\xaf\x4a\xce\x74\xfd\xe1\x93\x69\x18\xce\x74\x8a\xfd\x67\x00\xc6\x8b\xf3\xa9\x5d\x6d\x0a\xed\x5c\x0e\xdf\xad\x09\xda\x3d\x48\x7f\xa3\xba\x10\x0d\xb7\x3e\x38\x76\x34\x16\x32\x35\x77\x27\xab\x3c\x5d\xb9\x25\x2c\x80\x48\xc8\x84\xea\x3e\x38\x78\xa3\x4f\x9d\x35\xb7\x9c\xd0\x73\xf8\xed\xb7\xdf\xfa\xf0\x11\x81\x23\x86\xc6\xb7\x12\xca\x33\x1a\xc7\x2b\x50\x29\x06\x2c\x5a\xd9\x7e\x6a\x34\xb8\x38\xef\x41\x4c\x57\x22\xd3\x30\xc1\x80\x66\x0a\x41\x44\x40\x61\x6e\xec\x1d\xc3\x24\x9b\x76\x0b\x82\x1f\x11\xcc\xd7\x10\x23\x9a\xc5\xda\xcf\x91\xbc\x63\xa0\x0a\xbe\xfd\x76\x89\x40\x95\x32\x9b\x31\x1a\xc7\xc0\x72\x77\xb0\x9d\x80\xca\xfb\x3b\x2e\x96\xc6\x8f\xa9\xc4\x82\x5c\xa6\x8c\xd3\x6f\x18\xfd\xe8\xc1\x49\xf7\xe8\xf4\xdb\x6f\x61\x5f\x62\x8c\x54\x61\x68\xe0\x8f\x7b\x47\xa7\xa4\x77\x42\x4e\x7a\x07\x6b\x39\xde\x08\x09\x89\x90\x08\x8c\x47\xc2\xc0\xe8\x19\x53\x25\x79\x0f\x41\x21\xae\xb5\xd0\xd2\xe9\x6a\x21\x17\x34\x0e\x95\x1b\x33\x9e\xdd\xb8\x81\x48\x12\xa6\xdd\xe0\xe5\x29\x3d\x3a\xf9\xfe\x38\x8c\x5e\x1d\xbf\xea\x9d\x9c\x04\x93\x23\xda\x3b\x3d\x3d\x8a\x26\xdf\x7d\x3f\x09\x4f\x5e\x9d\x1c\x47\x27\xaf\x68\xf0\xaa\xa0\x7b\xa1\x81\x29\xab\x5b\x0c\x8d\x06\x0a\xf6\xc5\x38\xce\xf6\xad\x89\x08\x53\x29\x26\xb6\x57\x35\x95\x39\x12\x12\x94\x48\x70\x23\x63\x41\x2a\x17\x00\x12\x95\x83\x84\xa8\x29\x8b\x55\xe1\x2d\xa6\x42\xf4\xf3\xbd\xc7\x9a\x5e\x37\x74\x25\x65\x61\xaf\x7c\x46\xb0\xf5\xb3\x3e\x48\xb1\x89\x7f\xd3\x84\xf5\xa1\xf7\xe2\xf4\xb4\x9e\x9a\x36\x4e\xc4\xb8\x11\xb8\x0f\xc5\x0e\x16\x2c\xe9\x86\x91\x5b\xa5\xc9\x4c\xa0\xc5\x82\x86\x7f\x8e\x44\x96\x64\xc1\xb8\x4c\xad\x1c\x3a\xb9\x40\x8e\x3b\x95\xc6\xb8\xd1\xd4\xd9\xc5\xc6\x74\xcf\x3c\x6c\x4f\xd3\x0d\xce\x5f\x4a\x85\x4e\xa1\x06\xeb\x28\x7e\x4e\xc2\x73\x3a\xe5\xc7\x5c\xca\x6e\x5d\x5f\x4e\x55\x61\xf7\x1d\xa9\xdc\xaf\xa8\xef\x7b\xbd\x27\x89\xfb\xfc\x9b\xd2\x9e\xf8\x06\xcb\x5f\xe0\x4c\xa2\xd9\x3a\x15\x67\x52\xbd\x3c\x2e\xf1\x46\x4b\x6a\xf6\x58\x73\x65\xb2\xc4\xc4\x06\x79\x68\x3d\xb1\x90\x18\xb9\xb6\xcc\xf3\xf9\x76\x91\xdc\xba\xcf\x4a\xa4\xa3\x8c\x07\xb6\x65\x0d\x2c\x07\xdf\x2c\xd1\x37\x4b\xdc\x3f\x80\xdb\x4a\xd3\x10\x8b\x80\xc6\x90\xd0\x7f\x0a\xe9\xf3\x2c\x99\xa0\x54\x9e\xd3\x39\x72\x2a\x40\xcf\xe1\x0d\x8b\x35\x4a\x93\x1f\x26\x2b\x2b\x1b\xe8\x55\x8a\x87\x40\x8e\x8c\x8c\x5c\x68\xa3\x35\x8d\xf2\x10\x8e\xac\xa4\x3f\x9f\x9f\x2b\x1b\x73\x3d\xfb\x78\x7d\x7d\xae\x5a\xd8\x1a\x42\xbe\x21\xe4\x39\x9d\xe3\x3a\x4b\xab\x93\x3c\xf5\x5a\xab\x1d\x82\xed\x1f\x8c\x0c\xa6\x99\xca\xcf\x29\xda\x88\x5a\x14\xdf\x76\x72\x4e\xe7\xc4\x69\x01\x51\xa8\xb3\xd4\x8f\x94\x2f\xb8\xd5\x8a\xe7\x74\x4e\x9d\x67\x35\xfe\xd7\x18\x63\xa0\x0b\x43\x98\x45\x58\x81\x94\x90\x1a\x43\xa3\x05\xc5\x7e\xc7\xc3\x62\xd9\x15\xad\x98\x75\xd7\x68\xb1\x29\x37\xf9\xd1\x24\xf8\x9c\xde\x72\xc6\x82\x99\xc9\xbd\x79\xad\xc1\x10\xf6\xb1\x3b\xed\x1e\xc2\x72\x86\x12\x8b\x33\x0b\xa6\xd6\x79\x1b\xc3\x83\x1d\xea\x53\x5e\x67\x3f\x56\x93\x78\x0e\x24\xe6\x69\x08\xe4\xc6\x0a\x06\x44\xe4\x4a\x93\x42\x53\x20\x17\xe0\x74\x3a\xb7\x15\x2b\xdf\x39\xb5\xf6\xf1\x0b\xec\x57\x9e\xf3\x13\xa4\x8b\x37\xd7\x5e\x3e\x43\x20\xd2\x84\x1d\xfe\x00\xa1\xa8\xc0\x6d\xa4\x91\x6c\x81\x5e\x67\x1f\x83\x99\x00\x1b\x93\xe8\xd4\x87\x38\x47\x77\x7b\x07\xad\xc8\x46\xcc\x07\x70\x8f\x9b\xb8\x2c\x82\x4f\xd0\xd9\x78\x91\xd9\x5d\x90\x23\xf8\x0c\x7f\xf9\x4b\xe3\x7d\xc7\x2a\xe2\xf3\x0f\xc6\x06\xbc\x46\x26\x0f\x65\xc6\x33\xac\x7d\x88\x58\xab\xb0\xd6\x64\xa9\xc8\x7b\xf9\xad\xf6\x8d\xce\xb7\x9f\xc0\xe9\x58\x8d\x38\x6d\x42\x7f\x02\xf2\x3b\x38\x9d\x12\x21\x07\x3e\xef\x12\xae\xac\x94\xfb\x05\x0c\x05\xc7\x83\x16\x9d\xc3\x17\xd0\x12\xf6\xfe\xce\xf7\x60\x0f\xf6\x0e\x9e\xb5\xf8\x52\x60\x44\xd9\x5a\xc0\xba\x96\x31\xc1\x32\x00\xb2\x3c\xa8\xc7\x86\xe9\x5c\xcd\x42\x96\x68\x78\xee\x69\x98\xd1\x85\xf1\xfb\xd5\x36\x6f\x05\x45\x6e\x33\x1d\x86\xa4\xab\x0a\x81\x4f\xd0\xb1\xfc\x80\xc4\x1a\x0a\x83\x49\xd4\x99\xe4\xd0\xab\xb3\xca\x73\xe4\x61\xd1\x5b\x15\x75\xdc\xe0\x5a\xb2\xdd\x96\xa5\xd8\x04\xea\x8b\x54\x2b\xcf\xa9\x2a\x2c\xf7\x97\x2d\xeb\xe3\x1d\x0e\x61\x5b\x9a\x00\x73\x16\xf9\x4a\x4c\x32\xc5\x05\xf2\x3c\xf7\x08\x9e\x07\x72\x0d\xaf\xcc\x99\x90\xc8\xd0\xa8\x0a\x10\xb1\xfa\xf2\x2e\xa2\x3c\x2b\x6c\x93\x96\x09\x7b\x9b\xdb\x92\xd0\xcd\xf7\xc5\x66\x55\x64\x16\x86\xa4\x48\xf5\x56\x64\xf3\x5f\x8d\x56\x2e\xae\x69\x67\x61\x29\xb2\x38\x34\xb5\xa3\x9d\x42\x05\xd1\xa2\xf9\x06\xcd\xeb\xec\x4f\xa8\x42\x4b\xc1\x24\x8c\x92\x54\x77\x4e\xcd\x09\xec\xad\x08\x20\xa4\xb0\x73\x03\xbc\x96\x5d\xcc\xf6\x74\x26\x12\x9c\x09\xa5\x3d\xe3\x28\xf5\xcf\x9d\xad\xf2\x5a\x50\x17\x28\x27\xa2\x31\x0f\xb3\xa3\x03\x23\xb7\xe1\xbe\x5d\x46\x2b\xf3\x18\x17\x18\x37\x76\xe8\x76\x8f\x4e\x59\x48\x72\xd9\x95\xa5\x64\x1d\xa4\x85\x88\x59\xa2\x71\xef\xbb\xaa\x26\x02\xaa\xc1\x4d\xa5\x08\xdc\x24\x54\x9a\xea\x9a\x55\x36\xd7\x08\xb2\x10\x17\xa5\xc8\x30\x66\x57\xab\x24\x66\x7c\xae\x5a\x12\xef\x27\xf8\x06\xc8\xdb\x16\xbd\x7e\x6e\xc9\xc0\x79\xd4\xae\xf7\xad\x86\x59\x1d\xad\x86\x50\x1c\xeb\x37\xb2\x47\xbb\x8d\xf3\x0e\x18\x08\x51\x01\xe5\xeb\x09\xab\x33\x18\x8d\x06\x7f\xab\x33\x02\x93\x34\x34\x22\x10\x0a\xf5\xdb\x33\xcd\x58\x34\xab\xab\x17\xe3\x3b\x07\x3c\xdb\x15\xee\x08\xce\x64\x1e\xa9\xae\xd9\x60\x35\x75\x53\x87\xb4\x81\xde\xd4\xa0\xe3\x26\x5c\xbb\x75\xe8\xe7\xf0\x8e\xce\x8b\x7a\x5c\xee\xb4\x68\x20\x85\x52\x20\x71\x22\x84\x56\xad\x8a\xaf\xeb\xc0\xd2\x07\x2b\x63\xd1\x87\xaa\x43\x2e\x22\xca\xe2\xc3\x90\xa9\x80\x4a\xd3\x17\xf5\xea\x9a\x8a\x94\xa6\x93\x7a\xba\xd8\x3e\x54\xbc\xee\x39\x9c\xdb\xbc\x1b\x0a\x93\x75\xf5\xcc\x98\x9d\x45\xeb\x4e\x72\x49\x15\x6c\x8e\x24\x42\xd8\x9f\x64\xba\x6e\x8c\x62\xb2\x51\xe9\x2b\x68\x6c\x0a\xfd\xca\x9f\x51\x65\x2d\xe1\x17\xc3\xcd\xce\x7e\xab\x23\x94\x51\xad\xb7\xfe\x6e\x35\xb1\x83\x8a\xf1\x5c\x93\xe7\xd1\x94\x8e\x5e\x75\x2d\x03\xbb\xe5\xa2\x44\x61\x4a\x25\x35\xdd\x50\xcc\x94\x36\xdb\x5e\xdb\xb2\xac\xbb\xc0\xa2\x73\xe9\xc2\x3b\x11\xda\xfd\xb2\xb0\x85\x5b\x8a\xb8\xe8\xa7\x0a\x38\x53\xf3\x55\x85\x81\x69\xb4\x02\xc1\x15\x0b\x51\x16\xbd\xf4\xe6\x2e\x58\xb7\x02\xb9\xde\x9e\x2e\x97\xcb\x6e\xbe\x85\xec\x0a\x39\x75\x43\x11\xb8\xe7\x22\xc8\x12\xe4\xda\x16\x03\x97\x86\x09\xe3\x64\x9a\xb1\x10\xdd\x22\x79\x74\xf5\x4d\x39\xf8\x6b\x4d\xf5\xcb\xc3\xe3\xef\x5e\x39\xd5\x85\xdb\x91\xc0\x78\x86\x0a\x37\xdb\x3d\x23\x2a\xde\x04\x71\xa6\xd8\x02\x0f\xcd\x4e\x56\xf0\x78\x65\x2b\x4e\xa4\xec\x89\xce\x64\xd3\x34\x56\x68\x69\x91\xfb\x5d\xe5\xe5\xd8\xec\xc4\x99\x3a\x84\x94\x4a\x1d\xaf\x0e\x37\x23\x85\xa5\x29\x21\x79\x65\xe3\x53\x08\x99\xb4\xbd\x26\x0b\xd1\x12\xb1\xe3\x09\xc3\xa3\x42\x4c\xe1\x02\x25\x8d\x6d\x63\xa9\x60\x3f\x66\xf3\x1c\xba\x5c\xa6\x8a\x02\x73\x70\x08\x7a\x66\x12\xb6\x59\x8e\xd9\x1e\x2c\x98\x62\x93\x18\xeb\x12\x9b\x24\x98\x8a\x50\x75\xe1\x1a\x31\x9f\x1b\x30\xa5\x32\xb4\x26\xda\xcc\x14\xfa\xad\x26\x2a\x4d\x10\x8a\x91\xb5\xbb\x9d\x65\x93\xd2\x80\xcc\x52\x54\xee\xf7\x27\x65\x32\x15\x92\x1f\xa8\x64\x76\x4c\x05\x12\xd3\x98\x06\x79\x87\x3f\x46\x29\xa9\xe9\x3b\x4a\xb0\x79\x0b\x51\x24\x2d\x9b\xae\xee\xcb\x56\xf5\xed\x57\x6b\x1b\x4e\x8e\xda\xea\xfd\xa6\xd6\xcb\x4a\x5b\x8a\x71\x43\x02\x7f\x16\x7e\x05\x29\x5a\x85\xa8\x34\x1d\x0f\x0b\xa2\xd4\x57\x10\xa4\xd7\xaa\x0d\xb5\x15\xa4\xce\xd2\x8f\x54\x79\xa6\x5f\x24\xcd\xca\x6c\xa4\xf5\x64\xe6\xab\xcd\x45\xca\xdb\xfd\xce\xed\x96\xc1\xdd\x83\x82\x54\xef\x12\x7d\x5d\x49\x7e\x79\xff\x7a\xf8\x76\x38\xf6\x2f\xde\x0d\x7e\x1a\xfa\xef\x47\x6f\xbd\xfc\x36\x67\xdf\x75\xe7\x2f\x55\x77\x1a\xc8\x2e\x13\xee\x6c\x7d\x25\x8b\x74\x6e\x85\xf2\xa9\x0c\x66\x77\x3b\x89\x8c\x07\x3f\x79\x8b\xa3\xee\xd1\xcb\xee\xc9\x4e\x18\x7b\xf3\xc9\x21\x04\x6f\x30\xc8\xaf\x04\x58\x0b\xda\x21\x48\xb1\xe4\x72\xe5\x2d\x1d\xf3\x78\x8e\x9d\xe6\x6f\x55\x64\xe4\x33\xaf\x0e\x3b\xb7\xa5\x33\xa4\x4a\x99\xaf\x9d\x14\x79\x4e\xe7\xb6\x76\xe4\x74\xd7\xe0\x96\x1f\xbb\x18\xd0\xfc\x3c\xe6\xce\x69\xda\x49\xad\x54\xa0\xe3\x6e\xe8\x26\xf4\xc6\xce\xca\xc9\x92\xea\x60\x86\xea\x11\x13\xb5\xc7\x99\x27\x52\x5d\xc6\x85\x66\xd1\xaa\x9b\xd0\x1b\xdf\xf0\xf0\x0b\x1e\xde\xd1\x8b\xa3\x97\xa7\xf7\x3a\x4f\x73\xe6\xff\xc0\xd4\xea\x89\xce\x53\x9a\x5a\xd5\x46\x6f\xa4\x92\x04\x6e\x30\x80\xea\xcd\x8a\xac\x79\x4e\xaa\x34\x9d\xe2\x51\x71\xb6\x56\x1c\xa7\xbf\x38\x35\xe0\x6e\xf1\xc9\xde\xd2\x51\xeb\xa7\x28\x5e\x75\x69\xd0\x3c\xe1\x6c\xbf\xdc\xd3\x00\xd3\x32\x53\x9a\xcc\x71\xa5\x48\x24\x45\x42\x6c\xbd\xd8\x71\x56\x56\xb4\x49\x3b\x6e\xd8\x6d\x15\xde\x40\xaf\x5c\x53\x2a\x88\x94\xaf\xd8\xdd\x83\xfa\xa8\x65\x3c\x36\x56\xfb\x45\x3c\xb6\x9d\x18\xdb\x05\x35\x3e\x84\x5c\xb5\x7f\xa8\xbd\xb0\x79\x4c\xc7\x8f\x3e\xe7\x2e\x8e\xca\xec\xf9\x58\x67\xdf\x70\x30\x7b\xb1\x83\xaa\x1b\xaf\x8f\x23\xd7\xa7\x4c\xae\xb4\x33\x6b\x45\x17\x8f\xf3\xe3\xa7\x26\xc1\x6f\xf3\xf9\x5c\xe9\x4d\xff\xe2\xd7\xab\xf7\x63\x38\x1f\x5d\x5e\xc1\xa7\x5e\xbf\xf7\xb9\xfc\xed\xcd\xe5\xe8\xe3\x60\x74\x0e\x83\xb3\xb3\xe1\xd5\xb8\xf9\xfd\xf2\xfd\xd8\x20\xef\xf8\x4c\x06\x90\x13\x27\x0c\x62\x01\xe4\x9f\x05\x60\x2b\x48\x0a\x3a\x48\x8d\x39\x52\x21\x35\x1c\x1f\xb7\x82\x3f\x87\xf7\x0a\x61\x7b\x95\xc5\xb4\x83\x45\x93\x04\x57\x34\x98\xa3\x86\x54\xb2\x85\xd9\x4e\x16\x37\x04\xe0\xec\xe2\x7c\x54\x6d\x69\x2f\x34\x2c\x59\x1c\x9b\xbe\x31\x88\x85\xc2\x30\x6f\xac\x34\x9b\xce\x74\xbc\xb2\x17\x73\xcf\xf2\x2b\x92\x45\x1b\x6d\x6d\x92\x37\xa2\x54\xd9\x36\x3b\x4b\x43\xaa\xb1\xdb\xba\x10\x55\x96\xaf\xb6\xac\xa3\xef\x5f\x3d\xa0\x86\x7b\xb1\x7b\xc7\xdf\xf5\xfe\x20\xfe\x8b\x07\xf0\x13\xe3\x48\x5c\x4b\x1a\xcc\x81\x90\x40\x9b\x0d\x3c\xc2\x68\xf8\x76\x30\x1e\x9e\x1f\x0e\xaf\xc7\x83\xd7\x6f\x2f\xae\x7f\x1e\x9e\xb7\xd2\x39\xbb\x7c\xf7\xee\x62\xbc\xcb\xc5\x5f\xfc\xbf\xf6\xf1\xf6\xaf\xff\x69\x0f\xff\x33\x2d\xf1\x6f\x5d\xd2\xfb\x3f\xa9\xa3\x66\xc7\x6c\xb7\x79\x79\xda\xf7\x73\xc1\xfc\x5c\x30\xcf\xe9\xec\xe7\xef\xf3\x03\x56\x12\xc1\xde\xed\x6d\xf7\xcc\xc2\x9c\x5b\x90\xbb\xbb\xbd\x83\x72\x9f\x13\x50\x0d\x7f\xfd\xeb\xf0\xf2\x0d\xfc\x78\xff\xdd\xa7\xf2\xee\x3f\x65\x1f\x50\x2a\x26\xf8\xf6\x8f\x01\x72\xa0\xae\xa9\x41\x4c\xb8\x8b\xa3\x09\x6a\x5a\x1e\x1a\x99\xb2\xd9\x87\xe2\x8a\xff\x59\xa1\x5f\xbb\x3f\x2e\x0b\x53\x12\xb4\x9f\x0f\x4b\x5a\x56\x59\xe9\xd3\x86\x97\x6f\x9e\xa5\x54\xa9\x65\xfe\x37\x63\x0a\xa5\xd5\x73\xf9\x8f\x48\x2c\xb4\x52\x33\x7f\x7d\xcb\x0d\x43\xdf\xd4\xfc\xbe\xd9\x1f\xa8\x99\xfd\x7d\xf7\xec\x7f\x03\x00\x00\xff\xff\x8e\x77\x70\x6f\x7e\x36\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7b\x7d\x73\xdb\x36\xd2\xf8\xff\xf9\x14\x1b\x86\xbf\xda\xee\x19\xa4\xfc\xd2\x34\x51\xcb\xfc\x4e\xb1\x95\x9e\xa7\x49\xed\xb1\x9d\xe6\x6e\x72\x39\x0d\x44\xae\x24\x9c\x48\x80\x07\x80\x92\x55\xc7\xf7\xd9\x9f\x01\x40\x49\x14\x49\xd9\xce\x35\xbd\xe7\x71\x66\x32\x12\xb9\xd8\x5d\xec\x1b\xf6\x05\x22\x84\x3c\x51\x0b\xa5\x31\x4b\xba\x4f\x00\x0a\xce\xb4\x32\x1f\x00\x08\x70\x9a\x61\x17\x72\x94\x8a\x29\x4d\x12\xaa\x29\x91\x94\x25\x81\x42\x39\x63\x31\x5a\x28\x00\xe4\x74\x98\x62\x17\xb4\x2c\x96\x8f\x62\xc1\x35\x72\xad\xba\xf0\xb9\x7c\x02\xf0\xf1\x3d\x67\xfa\xd3\xea\xeb\x29\xaa\x58\xb2\x5c\x33\xc1\xa3\x0b\x47\x01\x0c\x05\xb8\xec\x9d\x9d\x02\x1b\x01\xde\x30\xa5\xd5\x0a\xfe\x44\xf0\x84\x19\xe8\x0b\xaa\x27\x7d\xfb\x2e\x7a\x1a\xa2\x8e\xc3\x2c\xa1\x49\x16\xc4\x82\x8f\x56\xc0\xaf\x71\x24\x24\x46\xd3\x62\x88\x29\xea\x1a\xbf\x00\x1f\xaf\xdc\x83\x35\x37\xd7\x8b\x1c\x23\xc1\x51\x4d\x84\x5e\x3d\xbc\xc4\x8c\x32\xde\x1b\x69\x94\xfd\x1b\xa6\xa3\xca\x06\x01\xfa\x37\x18\x5f\x69\x2a\x75\x14\x8a\x5c\x87\x0d\x21\xad\x89\x9d\x71\xa5\x69\x9a\xae\x89\x7d\xa0\x5c\x63\xf2\x7a\x11\x65\x45\xaa\x19\x29\x14\xca\x40\x53\x39\xc6\x2a\xe9\x7f\x15\x4c\x5a\xa0\xb6\x4d\x2c\x55\x93\x88\x78\x8a\xf2\x21\x7d\x2c\xa1\x53\x11\x4f\x55\xc6\xf4\xa4\xae\xc1\x8c\xaa\x69\x0b\x7c\x2c\x24\x0a\x45\x32\xd4\xd4\x6e\x4b\xa9\xc9\x14\x17\xea\xcf\xe6\xf9\xe3\x30\xcc\x29\xd3\x64\x24\x24\x49\xb8\xfa\xea\x56\xf3\x81\x32\x0d\x23\x21\xe1\xf4\x97\x2b\x40\xae\x25\x43\xb5\x21\x63\x15\x95\x86\x4d\x24\x2a\x91\xce\xb0\xbe\xef\xff\xb6\xa1\x0c\x19\x0f\xd5\x04\x48\x0c\x3b\xf3\x09\x4b\x11\x9e\x42\x58\x28\x69\x9f\x8f\x25\xe6\xb0\xf3\x8f\x8f\xff\x78\xf6\xb1\xab\x72\x1a\x63\xf7\xd3\xa7\x1d\xb0\x06\xee\xb8\xb7\x16\x0e\xaf\x20\x4c\x70\x16\xf2\x22\x4d\x7f\x80\x44\x80\x4a\x11\x73\x38\x30\x9f\x39\xfe\x00\xd6\x16\xab\x52\x07\xff\x36\xe1\x6a\xf0\x9b\xe0\x78\x07\xfe\x6d\x9c\x16\x4a\xa3\x1c\x18\xf5\xdc\x91\x5c\xb2\x19\xd5\x08\x47\xcf\x3b\x9d\x9d\x7b\x0c\xf6\x91\xd6\x58\xb3\x97\xaf\xae\xf0\x37\x29\xd5\x31\x95\x26\x14\x68\xca\x38\x4a\x78\xcb\x78\x71\x03\xef\x4a\x82\xd0\x1b\x23\xd7\x5f\xaa\xbc\x3e\x9f\x31\x29\x78\x86\x5c\x47\x27\xe7\x97\xfd\xf3\xab\xc1\xbb\xfe\x75\xef\xb4\x77\xdd\x1b\x9c\x5f\x5c\x0f\x2e\x2e\xcf\x7f\x3d\x3b\xed\x5f\x46\x84\xc4\x59\x92\x32\xde\xaa\xda\xa5\x1a\x6b\x32\x00\xdf\xbf\xbd\x0f\xe9\x1d\x10\x42\xb5\x96\x6c\x58\x68\x54\x51\x28\x0b\x1e\x2e\xd7\x86\x23\xb7\xdf\xc7\x29\x66\x25\xf5\x4a\x24\x59\x2a\xa6\xdd\xbc\x7f\xbf\x42\x7e\x76\x78\x61\xc6\x28\xfc\x65\x91\xa3\x34\x84\xea\xcc\xa9\xe8\x7e\xbb\x00\xb0\x8e\xf3\x20\x54\x53\x9d\x15\xcd\xbd\x61\x29\x3e\x20\xbd\x06\xb4\x71\x2d\xc3\xb0\xe4\xa8\x51\x85\x4b\x21\x21\x9f\xb5\xda\x86\x77\xf9\xf3\xf5\xe0\xf2\xfd\x2f\x83\xde\xe5\x4f\x57\x11\x21\x45\xc1\x12\x32\x62\x29\x12\x45\x67\x18\x85\x33\x2a\xc3\x98\xc6\x13\x5c\x62\x22\xb9\x48\x02\x03\x05\x7f\x5f\x21\x04\x20\x64\x26\xd2\x22\xc3\xc8\x79\xf5\xfe\x94\xf1\x24\x9a\x08\xa5\xf7\x95\x28\x64\x5c\xf2\x55\x75\xf9\xcd\xd5\x99\x28\xb8\x86\x4d\x1c\x4e\xe5\x0f\xad\x74\x6b\x60\x46\x25\x49\xd9\x90\xc4\x9c\xb5\x10\x37\xbb\x48\xd9\x30\x8c\x39\xbb\x8f\x70\x15\xc9\x92\xfa\xf6\xa5\x75\xca\x34\x65\xb1\xb8\x8f\xb8\x05\x78\x14\x7d\x87\xaa\xc1\x42\x1b\x82\x92\x0b\x91\x6b\xc3\x36\x19\x32\xde\xc2\x82\x89\x9f\x31\x67\xc6\x97\xef\xa3\x5f\x45\xb2\x24\xbe\x7d\x69\x75\xff\x62\xbc\x6d\xe3\x62\xfc\xe0\x8e\xc5\x78\x73\xab\x8d\x25\x25\x25\xe3\x00\x2d\x64\x32\xae\xef\x23\x61\x57\x2d\xf1\x37\x61\x4b\xdc\x4c\xc5\x8a\xd1\x24\x6b\xc1\x6f\x82\xa0\x32\x51\x70\x09\x73\x1f\xb5\x15\x9e\x25\xc5\x87\x56\x33\xae\x30\x2e\x24\x12\x61\xa3\x8f\x8a\x58\x46\xc7\xe8\x35\xa3\xf1\x85\x44\x77\xd6\x66\xd3\x84\x49\x20\x39\x54\x75\xf3\x28\xf8\x5a\x6c\xc8\x28\x67\x23\xac\xa6\xa3\x5f\xb0\xd8\xd0\xe5\xa8\x83\xe4\x51\x8b\x2b\x5e\xf4\x65\xf0\xd6\xe4\xbf\x68\x49\x19\xa7\x42\xa7\x90\x3c\x2d\xc6\x8c\x6f\xdb\xe1\xf2\x7c\x1b\x52\x97\xc0\x78\x2e\x5f\x89\x51\x6a\x36\x62\x31\xd5\x48\x68\xa1\x27\x42\x32\xbd\xb0\x49\xf0\x4e\x43\x0e\xe6\xa3\x09\x4b\x6c\x0c\x9f\x81\xce\xa7\xb0\x73\x9b\x4b\xc6\x35\xf8\x87\x77\x3b\xf0\x19\x86\x54\xe1\xf3\x63\x20\x89\x49\x72\xea\x32\xa4\x41\x2c\xf5\x16\x5d\x93\x15\x77\x72\xaa\x41\x66\x50\x09\xce\xf7\xc5\xe5\x2d\x5b\xad\x93\xb6\x2c\x1b\xbb\x5b\xae\x8f\xc7\x52\x14\x39\x49\x24\x9b\xe1\xfa\x7c\x79\x06\xd7\xe7\xa7\xe7\x5d\xf8\x20\xe4\x94\x4a\x51\xf0\x04\x0a\xae\x59\x0a\x13\xad\x73\xd5\x0d\xc3\x31\xd3\x93\x62\x18\xc4\x22\x2b\xb3\x84\x90\x9a\x83\x6f\x58\x48\x1e\xe6\x45\x9a\x86\x47\xdf\xbd\xa8\x60\xcb\xe8\x14\x15\x30\x0d\x8c\x6b\x01\x65\xee\x13\xc0\xf5\x04\x39\xcc\x11\x62\xca\x41\x22\x4d\xa0\x4c\x2f\x2e\x7a\x27\x3f\xf7\xaf\x07\x67\x17\xbf\x1e\x0f\x2e\x2e\xcf\x7e\xed\x5d\xf7\x07\x3f\xf5\xae\xfb\x1f\x7a\x7f\x1b\x74\x2a\x68\x47\x52\x64\xd0\x7a\x52\x02\xe5\x09\x24\x4c\x99\xac\x00\xf4\x04\x41\x63\x96\xa7\x26\x3f\x8c\x97\xb5\x17\x4d\x15\x0c\x31\x15\xf3\xe0\xfe\xf4\xb6\xea\xb8\x00\xde\xff\xbb\xfd\xb7\xa9\xe8\x86\xe3\x7c\xc0\x45\x82\x83\x94\x0e\x31\x55\xf0\x34\x02\xcf\x83\x7f\xdf\x6d\x00\xbf\xfe\xe9\x62\x70\xd1\xef\x5f\x0e\x7a\xa7\xa7\x97\xfd\xab\xab\xc8\xdf\x65\x39\x48\x51\x68\x84\xcf\xe0\xac\xee\xa0\x13\xd8\x7f\xe1\x8b\x9d\xd2\x94\x6e\x77\x4a\x53\x3a\xda\xb9\xdb\xfb\xa1\x46\xdf\x90\x47\x9e\xb0\x51\x9d\x96\xb5\x1b\xeb\x3c\x4e\x1f\x4b\x05\xcf\x25\xcd\x73\x94\x35\x34\x84\x18\xe6\x09\xcb\xa3\x75\x52\xd7\x26\xf5\xce\x5d\x63\x21\xe5\x82\x2f\x32\x51\x28\xeb\x24\xd1\x88\xa6\x0a\x9b\x40\x85\x9e\x20\xd7\xc6\x99\x98\xe0\x44\x8b\x29\x72\x32\xc7\xe1\x44\x88\x69\x2b\xb0\x90\xec\x37\x07\x9b\x89\x04\xa3\x0f\x5b\x40\xe3\x94\x21\xd7\x24\xa6\xa5\x43\xb4\xba\x56\xcb\x2a\x57\x29\x24\x5c\x45\xfe\xed\xf4\x85\x32\x9f\x06\x65\x52\x36\x60\x79\x73\x93\xab\x15\xc2\x54\x43\xd1\xba\xd8\x70\x0f\x06\xaa\x18\x8d\xd8\x4d\xcb\x3a\xce\x88\x71\x32\x92\x30\xd9\xe4\x6e\x19\x3c\x9b\xcb\xac\x5f\x6e\x4d\xe3\xca\x48\x53\x5f\x85\x37\x4c\x13\xc1\x89\xa9\x85\x49\x99\xee\x32\xc1\x1b\x70\xeb\x60\xd5\x4a\x61\x0b\x76\x8b\x75\x1d\x76\x8c\x97\x99\x47\x2b\xa6\xcc\x97\xa6\x55\xa1\x9e\x0b\x39\x25\x2e\x00\x47\xf5\xf4\x69\x65\x78\xce\x6b\x8c\xf1\xfd\x72\x7e\xda\x1f\xbc\xed\xbd\xee\xbf\xbd\x6a\x8a\xb3\x0a\x9b\x8a\xa9\xc8\x84\x66\x33\x0c\x68\x9a\x4f\x68\x30\x65\x7c\x26\xd2\x69\xc0\x44\x98\x17\xc3\x94\xc5\x84\xe5\xb3\xe3\x6d\x06\xfd\xfe\xf5\xdb\xb3\x93\xa6\x3d\x7f\x89\x3b\x37\x78\x37\xfe\x5d\xe5\x7f\xdf\x84\xa1\x34\x1d\x06\x05\x37\xe1\x54\x61\xa0\x47\x61\x8e\x28\x09\x4d\x12\x89\x4a\x45\x7e\x3d\x24\x3c\xd6\xbd\x89\x89\xf4\x64\x79\x76\x93\x9c\xea\x49\x43\x99\xab\x93\xbd\x21\x47\x13\x5c\x89\xe0\xe9\x82\xe4\x42\xea\xa8\xd3\x02\x30\x66\xc6\xbe\xc9\x9c\xe9\x09\x31\x15\xa9\x5e\x6b\xe7\xba\x77\xf6\xcb\x75\x8b\x76\x56\x9b\xfa\xd2\x10\xe2\x0e\xe9\xd2\x48\x9c\xab\xdc\x7b\x8e\xd7\xcf\x4a\x91\xd7\xce\x49\xa5\x45\xfe\xc5\x27\xe5\x25\x2a\x1b\xeb\x69\x3a\xa7\x0b\x55\x7f\x7c\x85\x71\xf4\xdd\x7f\xde\xf8\x5a\x75\xb5\x0c\x6d\xb4\x86\xf3\x87\x34\x8d\x18\x1f\x83\x16\x25\x19\xf8\x79\x65\x0c\x60\x28\x82\xe0\xa0\x26\x85\x4e\xc4\x9c\xff\x91\x7d\xa0\x96\x77\x22\x6f\x98\x67\x45\x14\xbf\x5f\xae\x1e\xcb\xb5\x91\x9f\x22\x12\x95\xae\x34\xf1\xbc\x0d\xf1\x26\x1b\xf2\xdd\xda\x4d\xf4\x58\xfe\xfc\xab\xa2\x33\x59\x7f\xf2\xc5\x38\x0c\x65\x3a\xc6\xee\x13\x00\x63\xc5\xae\xe3\x57\xeb\x60\x7b\xe7\xfd\x77\x4b\x84\xb6\x06\xe9\xae\x44\x97\xa0\xa1\xd6\x05\xcf\xb6\xd5\x12\xa6\xa6\xe1\x70\xe1\xc2\x55\x58\x59\x05\x30\x12\x32\xa3\xba\x0b\x1e\xde\xe8\x63\x6f\x49\xcd\x21\x7a\x06\x7f\xfd\xeb\x5f\xbb\xf0\x01\x81\x23\x26\xc6\xb6\x32\xca\x0b\x9a\xa6\x0b\x50\x39\xc6\x6c\xb4\xb0\xf9\xd4\x65\xef\xec\xb4\x03\x29\x5d\x88\x42\xc3\x10\x63\x5a\x28\x04\x31\x02\x0a\x53\xa3\xef\x14\x86\xc5\x38\x28\x11\x7e\x40\x30\x6f\x13\x1c\xd1\x22\xd5\x03\xb7\x28\x3a\x04\xaa\xe0\xdb\x6f\xe7\x08\x54\x29\x53\x8c\xd1\x34\x05\xe6\xcc\xc1\x66\x02\xca\xe5\x77\x5c\xcc\x8d\x1d\x53\x89\x25\xba\x42\x19\xa3\x5f\x11\x7a\x15\xc1\x51\x70\x70\xfc\xed\xb7\xb0\x2b\x31\x45\xaa\x30\x31\xf0\x87\x9d\x83\x63\xd2\x39\x22\x47\x9d\xbd\x25\x1f\x6f\x84\x84\x4c\x48\x04\xc6\x47\xc2\xc0\xe8\x09\x53\x15\x7e\xf7\x41\x21\x2e\xa5\xd0\x92\xe9\x6a\x21\x67\x34\x4d\x54\x98\x32\x5e\xdc\x84\xb1\xc8\x32\xa6\xc3\xf8\xc5\x31\x3d\x38\xfa\xfe\x30\x19\xbd\x3c\x7c\xd9\x39\x3a\x8a\x87\x07\xb4\x73\x7c\x7c\x30\x1a\x7e\xf7\xfd\x30\x39\x7a\x79\x74\x38\x3a\x7a\x49\xe3\x97\x25\xde\x33\x0d\x4c\x59\xd9\x62\x62\x24\x50\x92\x2f\xdb\x71\x36\x6f\xcd\x44\x92\x4b\x31\xb4\xb9\xaa\x39\x99\x47\x42\x82\x12\x19\xae\x78\x2c\x51\x39\x06\x20\x53\x0e\x24\x41\x4d\x59\xaa\x4a\x6b\x31\x27\x44\xd7\xd5\x1e\x4b\x7c\x41\x12\x4a\xca\x92\x4e\x75\xbe\xb0\xb6\xb3\x2e\x48\xb1\xf2\x7f\x93\x84\x75\xa1\xf3\xfc\xf8\xb8\x1e\x9a\x56\x46\xc4\xb8\x61\xb8\x0b\x65\x05\x0b\x16\x75\x43\xc9\xad\xdc\x14\xc6\xd1\x52\x41\x93\x3f\x86\x23\x8b\xb2\x24\x5c\xc5\x56\x75\x1d\xc7\x90\x17\x8e\xa5\x51\xee\x68\xec\x6d\x23\x63\xb2\x67\x9e\xb4\x87\xe9\x06\xe5\xcf\x95\x83\x4e\xa1\x06\x6b\x28\x03\x87\x22\xf2\xfc\xea\x57\xc7\x65\x50\x97\x97\xb7\x29\xb0\xfb\xc6\x31\xf7\x0b\xea\xfb\x4e\xe7\x8b\xd8\x7d\xf6\xb4\x52\x13\xdf\x60\xf5\x0d\x9c\x48\x34\xa5\x53\x39\xcf\xea\x38\xbf\xc4\x1b\x2d\xa9\xa9\xb1\xa6\xca\x44\x89\xa1\x75\xf2\xc4\x5a\x62\xc9\x31\x72\x6d\x89\xbb\xfe\x76\x19\xdc\x82\x27\x15\xd4\xa3\x82\xc7\x36\x65\x8d\x2d\x85\x81\xd9\xe2\xc0\x6c\x71\x77\x0f\x6e\x37\x92\x86\x54\xc4\x34\x85\x8c\xfe\x53\xc8\x01\x2f\xb2\x21\x4a\x15\x79\xfe\x81\xb7\x01\xf4\x0c\xde\xb0\x54\xa3\x34\xf1\x61\xb8\xb0\xbc\x81\x5e\xe4\xb8\x0f\xe4\xc0\xf0\xc8\x85\x36\x52\xd3\x28\xf7\xe1\xc0\x72\xfa\x97\xd3\x53\x65\x7d\xae\x63\xbf\x5e\x5d\x9d\xaa\x16\xb2\x06\xd1\xc0\x20\x8a\x3c\xff\xb0\x4e\xd2\xca\xc4\x85\x5e\xab\xb5\x7d\xb0\xf9\x83\xe1\xc1\x24\x53\x6e\xc6\xd1\x86\xd4\x2e\x19\xd8\x4c\xce\xf3\x8f\xbc\x16\x10\x85\xba\xc8\x07\x23\x35\x10\xdc\x4a\x25\xf2\xfc\x63\xef\x49\x8d\xfe\x15\xa6\x18\xeb\x52\x11\x66\x13\x96\x21\x25\xa4\xc6\xc4\x48\x41\xb1\xdf\x70\xbf\xdc\xf6\x86\x54\xcc\xbe\x6b\xb8\xd8\x98\x9b\xf8\x68\x02\xbc\xc3\x37\x9f\xb0\x78\x62\x62\xaf\x3b\x6b\x30\x81\x5d\x0c\xc6\xc1\x3e\xcc\x27\x28\xb1\x9c\x59\x30\xb5\x8c\xdb\x98\xec\x6d\x11\x9f\x8a\xfc\xdd\x54\x0d\xd3\x29\x90\x94\xe7\x09\x90\x1b\xcb\x18\x10\xe1\x84\x26\x85\xa6\x40\xce\xc0\xf3\xfd\xdb\x0d\x2d\xdf\x79\xb5\xf4\xf1\x33\xec\x6e\x7c\x77\xd3\xa7\xb3\x37\x57\x91\xeb\x21\x10\x69\xdc\x0e\x7f\x80\x44\x6c\xc0\xad\xb8\x91\x6c\x86\x91\xbf\x8b\xf1\x44\x80\xf5\x49\xf4\xea\x4d\x9c\x83\xbb\x9d\xbd\xd6\xc5\x86\xcd\x07\xd6\x1e\x36\xd7\xb2\x11\x7c\x04\x7f\x65\x45\xa6\xba\x20\x07\xf0\x09\xbe\xf9\xa6\xf1\xdc\xb7\x82\xf8\xf4\x83\xd1\x01\xaf\xa1\x71\xae\xcc\x78\x81\xb5\x17\x23\xd6\xca\xac\x55\x59\x2e\x5c\x2e\xbf\x96\xbe\x91\xf9\xfa\x15\x78\xbe\x95\x88\xd7\xc6\xf4\x47\x20\xbf\x81\xe7\x57\x10\x79\xf0\x69\x1b\x73\x55\xa1\xdc\xcf\x60\x22\x38\xee\xb5\xc8\x1c\x3e\x83\x96\xb0\xf3\x77\xbe\x03\x3b\xb0\xb3\xf7\xa4\xc5\x96\x62\xc3\xca\x5a\x03\xd6\xb4\x8c\x0a\xe6\x31\x90\xf9\x5e\xdd\x37\x4c\xe6\x6a\x36\x32\x47\x43\x73\x47\xc3\x84\xce\x8c\xdd\x2f\xd6\x71\x2b\x2e\x63\x9b\xc9\x30\x24\x5d\x6c\x20\xf8\x08\xbe\xa5\x07\x24\xd5\x50\x2a\x4c\xa2\x2e\x24\x87\x4e\x9d\x94\x8b\x91\xfb\x65\x6e\x55\x9e\xe3\x66\xad\x45\x1b\xb4\x6c\xc5\x06\xd0\x81\xc8\xb5\x8a\xbc\x4d\x81\x39\x7b\x59\x93\x3e\xdc\x62\x10\x36\xa5\x89\xd1\x91\x70\x3b\x31\xc1\x14\x67\xc8\x5d\xec\x11\xdc\x39\x72\x6d\x5d\x95\x32\x21\x23\x83\x63\x93\x81\x11\xab\x6f\xef\x6c\xe4\xa2\xc2\x3a\x68\x19\xb7\xb7\xb1\x2d\x4b\x42\x57\x17\x9b\x5d\x91\x49\x92\x90\x32\xd4\x5b\x96\xcd\x7f\x35\x5c\x8e\x5d\x93\xce\xc2\x5c\x14\x69\x62\xce\x8e\x76\x0c\x1b\x0b\xed\x32\x3b\xed\x8d\xfc\xdd\x21\x55\x68\x31\x98\x80\x51\xe1\xea\xce\xab\x19\x81\xbd\x51\x01\x84\x94\x7a\x6e\x80\xd7\xa2\x8b\x29\x4f\x27\x22\xc3\x89\x50\x3a\x32\x86\x52\x7f\xed\xaf\x85\xd7\xb2\x74\x86\x72\x28\x1a\xfd\x30\xdb\x3a\x30\x7c\x1b\xea\xeb\x6d\xb4\x12\x4f\x71\x86\x69\xa3\x42\xb7\x35\x3a\x65\x09\x71\xbc\x2b\x8b\xc9\x1a\x48\x0b\x12\xb3\x45\x63\xde\x77\x9b\x92\x88\xa9\x86\x30\x97\x22\x0e\xb3\x44\x69\xaa\x6b\x5a\x59\x5d\x41\x28\x12\x9c\x55\x3c\xc3\xa8\x5d\x2d\xb2\x94\xf1\xa9\x6a\x09\xbc\x1f\xe1\x29\x90\xb7\x2d\x72\xfd\xd4\x12\x81\x9d\xd7\x2e\xeb\x56\x43\xac\xbe\xac\xb6\xa0\xbc\x12\xd0\x88\x1e\xed\x3a\x76\x19\x30\x10\xa2\x62\xca\x97\x1d\x56\xaf\x77\x79\xd9\xfb\x5b\x9d\x10\x98\xa0\xa1\x11\x81\x50\xa8\xdf\xbc\x69\xfa\xa2\xd9\x5d\xfd\x30\xbe\xf3\x20\xb2\x59\xe1\x16\xe7\xcc\xa6\x23\x15\x98\x02\xab\x29\x9b\x3a\xa4\x75\xf4\xa6\x04\xbd\x30\xe3\x3a\xac\x43\x3f\x83\x77\x74\x5a\x9e\xc7\xd5\x4c\x8b\xc6\x52\x28\x05\x12\x87\x42\x68\xd5\x2a\xf8\xba\x0c\x2c\x7e\xb0\x3c\x96\x79\xa8\xda\xe7\x62\x44\x59\xba\x9f\x30\x15\x53\x69\xf2\xa2\x4e\x5d\x52\x23\xa5\xe9\xb0\x1e\x2e\xd6\x5f\x36\xac\xee\x19\x9c\xda\xb8\x9b\x08\x13\x75\xf5\xc4\xa8\x9d\x8d\x96\x99\xe4\x9c\x2a\x58\x8d\x24\x12\xd8\x1d\x16\xba\xae\x8c\xb2\xb3\xb1\x91\x57\xd0\xd4\x1c\xf4\x8b\xc1\x84\x2a\xab\x89\x41\xd9\xdc\xf4\x77\x5b\x0d\xa1\xba\xd4\x5a\xeb\x6f\x56\x12\x5b\xb0\x18\xcb\x35\x71\x1e\xcd\xd1\xd1\xd9\xdc\x4b\xcf\x96\x5c\x94\x28\xcc\xa9\xa4\x26\x1b\x4a\x99\xd2\xa6\xec\xb5\x29\xcb\x32\x0b\x2c\x33\x97\x00\xde\x89\xc4\xd6\xcb\xc2\x1e\xdc\x52\xa4\x65\x3e\x55\xc2\x99\x33\x5f\x6d\x10\x30\x89\x56\x2c\xb8\x62\x09\xca\x32\x97\x5e\xdd\x23\x0b\x36\x20\x97\xe5\xe9\x7c\x3e\x0f\x5c\x09\x19\x08\x39\x0e\x13\x11\x87\xa7\x22\x2e\x32\xe4\xda\x1e\x06\x21\x4d\x32\xc6\xc9\xb8\x60\x09\x86\x65\xf0\x08\xf4\x4d\xd5\xf9\x6b\x49\xf5\x8b\xfd\xc3\xef\x5e\x7a\x9b\x1b\xb7\x2d\x81\xeb\x09\x2a\x5c\x95\x7b\x86\x55\xbc\x89\xd3\x42\xb1\x19\xee\x9b\x4a\x56\xf0\x74\x61\x4f\x9c\x91\xb2\x13\x9d\xe1\x2a\x69\xdc\xc0\xa5\x85\xb3\xbb\x8d\x87\xd7\xa6\x12\x67\x6a\x1f\x72\x2a\x75\xba\xd8\x5f\xb5\x14\xe6\xe6\x08\x71\x27\x1b\x1f\x43\xc2\xa4\xcd\x35\x59\x82\x16\x89\x6d\x4f\x18\x1a\x1b\xc8\x14\xce\x50\xd2\xd4\x26\x96\x0a\x76\x53\x36\x75\xd0\xd5\x63\xaa\x3c\x60\xf6\xf6\x41\x4f\x4c\xc0\x36\xdb\x31\xe5\xc1\x8c\x29\x36\x4c\xb1\xce\xb1\x09\x82\xb9\x48\x54\x00\x57\x88\xae\x6f\xc0\x94\x2a\xd0\xaa\x68\xd5\x53\xe8\xb6\xaa\xa8\xd2\x41\x28\x5b\xd6\xe1\xba\x97\x4d\x2a\x0d\x32\x8b\x51\x85\xdf\x1f\x55\xd1\x6c\xa0\xfc\x95\x4a\x66\xdb\x54\x20\x31\x4f\x69\xec\x32\xfc\x6b\x94\x92\x9a\xbc\xa3\x02\xeb\x52\x88\x32\x68\xd9\x70\x75\x5f\xb4\xaa\x97\x5f\xad\x69\x38\x39\x68\x3b\xef\x57\x67\xbd\xdc\x48\x4b\x31\x6d\x70\x30\x98\x24\x5f\x81\x8b\x56\x26\x36\x92\x8e\x87\x19\x51\xea\x2b\x30\xd2\x69\x95\x86\x5a\x33\x52\x27\x39\x18\xa9\x6a\x4f\xbf\x0c\x9a\x1b\xbd\x91\xd6\xc9\xcc\x57\xeb\x8b\x54\xcb\x7d\xff\x76\x4d\xe0\xee\x41\x46\x36\xef\x12\x7d\x5d\x4e\x7e\x7e\xff\xba\xff\xb6\x7f\x3d\x38\x7b\xd7\xfb\xa9\x3f\x78\x7f\xf9\x36\x72\x37\x41\xbb\x61\x38\x7d\xa1\x82\x71\x2c\x03\x26\xc2\xc9\xf2\x4a\x16\xf1\x6f\x85\x1a\x50\x19\x4f\xee\xb6\x22\xb9\xee\xfd\x14\xcd\x0e\x82\x83\x17\xc1\xd1\x56\x18\x7b\xf3\xc9\x23\x04\x6f\x30\x76\x57\x02\xac\x06\x6d\x13\xa4\xdc\x72\xf5\xe4\xad\x8c\x79\x22\xcf\x76\xf3\xd7\x22\x32\xfc\x99\x47\xfb\xfe\x6d\x65\x86\xb4\x71\xcc\xd7\x26\x45\x91\xe7\xdf\xd6\x46\x4e\x77\x0d\x6a\x6e\xec\x62\x40\xdd\x3c\xe6\xce\x6b\xea\x49\x2d\x54\xac\xd3\x20\x09\x33\x7a\x63\x7b\xe5\x64\x4e\x75\x3c\x41\xf5\x88\x8e\xda\xe3\xd4\x33\x52\x01\xe3\x42\xb3\xd1\x22\xc8\xe8\xcd\xc0\xd0\x18\x94\x34\xa2\x83\xe7\x07\x2f\x8e\xef\x35\x9e\x66\xcf\xff\x81\xae\xd5\x17\x1a\x4f\xa5\x6b\x55\x6b\xbd\x91\x8d\x20\x70\x83\x31\x6c\xde\xac\x28\x9a\x73\x52\xa5\xe9\x18\x0f\xca\xd9\x5a\x39\x4e\x7f\x7e\x6c\xc0\xc3\xf2\x95\xbd\xa5\xa3\x96\xdf\x46\xe9\x22\xa0\x71\x73\xc2\xd9\x7e\xb9\xa7\x01\xa6\x65\xa1\x34\x99\xe2\x42\x91\x91\x14\x19\xb1\xe7\xc5\x96\x59\x59\x99\x26\x6d\xb9\x61\xb7\x16\x78\x63\xf9\xc6\x35\xa5\x12\x49\xf5\x8a\xdd\x3d\x4b\x1f\xb5\x8d\xc7\xfa\x6a\xb7\xf4\xc7\xb6\x89\xb1\xdd\x50\xe3\x45\xc2\x55\xfb\x8b\xda\x03\x1b\xc7\x74\xfa\xe8\x39\x77\x39\x2a\xb3\xf3\x31\x7f\xd7\x50\x30\xb5\xd8\xde\xa6\x19\x2f\xc7\x91\xcb\x29\x53\x28\x6d\xcf\x5a\xd1\xd9\xe3\xec\xf8\x4b\x83\xe0\xb7\xae\x3f\x57\x79\xd2\x3d\xfb\xe5\xe2\xfd\x35\x9c\x5e\x9e\x5f\xc0\xc7\x4e\xb7\xf3\xa9\xfa\xee\xcd\xf9\xe5\x87\xde\xe5\x29\xf4\x4e\x4e\xfa\x17\xd7\xcd\xf7\xe7\xef\xaf\xcd\xe2\x2d\xaf\x49\x0f\x1c\x72\xc2\x20\x15\x40\xfe\x59\x02\xb6\x82\xe4\xa0\xe3\xdc\xa8\x23\x17\x52\xc3\xe1\x61\x2b\xf8\x33\x78\xaf\x10\xd6\x57\x59\x4c\x3a\x58\x26\x49\x70\x41\xe3\x29\x6a\x58\xde\xcf\x2e\x6f\x08\xc0\xc9\xd9\xe9\xe5\x66\x4a\x7b\xa6\x61\xce\xd2\xd4\xe4\x8d\x71\x2a\x14\x26\x2e\xb1\xd2\x6c\x3c\xd1\xe9\xc2\x5e\xcc\x3d\x71\x57\x24\xcb\x34\xda\xea\xc4\x25\xa2\x54\xd9\x34\xbb\xc8\x13\xaa\x31\x68\xdd\x88\xaa\xf2\x57\xdb\xd6\xc1\xf7\x2f\x1f\x10\xc3\xbd\xab\x3b\x87\xdf\x75\x7e\xe7\xfa\xe7\x0f\xac\xcf\x8c\x21\x71\x2d\x69\x3c\x05\x42\x62\x6d\x0a\x78\x84\xcb\xfe\xdb\xde\x75\xff\x74\xbf\x7f\x75\xdd\x7b\xfd\xf6\xec\xea\x2f\xfd\xd3\x56\x3c\x27\xe7\xef\xde\x9d\x5d\x6f\x33\xf1\xe7\xff\xa7\x6d\xbc\xfd\xed\x7f\xdb\xc2\xff\x48\x4d\xfc\x47\x97\xf4\xfe\x57\xce\x51\x53\x31\xdb\x32\xcf\x85\xfd\x81\x63\x6c\xe0\x18\x8b\x3c\x7f\xd7\x3d\x77\x03\x56\x32\x82\x9d\xdb\xdb\xe0\xc4\xc2\x9c\x5a\x90\xbb\xbb\x9d\xbd\x6a\x9e\x13\x53\x0d\x3f\xfe\xd8\x3f\x7f\x03\xaf\xee\xbf\xfb\x54\xad\xfe\x73\xf6\x2b\x4a\xc5\x04\x5f\xff\x18\xc0\x01\x05\xe6\x0c\x62\x22\x9c\x1d\x0c\x51\xd3\x6a\xd3\xc8\x1c\x9b\x5d\x28\xaf\xf8\x9f\x94\xf2\xb5\xf5\x71\x95\x99\x0a\xa3\x5d\xd7\x2c\x69\xd9\xe5\x46\x9e\xd6\x3f\x7f\xb3\xa9\xca\xfa\x4f\x56\x1e\xa5\xac\xef\xbe\x8a\xb2\x5a\xee\x6c\x9a\xe2\xb4\xa5\x0a\x2d\xef\x48\x12\x37\xc6\x2e\x6f\x63\x2e\xab\xcf\x83\xc3\xa3\x6a\xfc\x5c\x4d\xe8\x12\x36\xae\x8d\xe4\x96\x87\xbf\xcd\xa5\x08\x03\x42\x64\x06\xff\x2a\xe8\xc2\xe8\x60\x59\xe9\xd2\x34\x67\x1c\x49\xc2\xc6\xdd\xa3\xe0\x65\xf0\xdc\xe2\xf1\xfc\x3f\x7b\x70\xf8\x6a\xf5\xeb\x9f\x8d\xee\xd1\xfa\xb3\x9b\x40\xf8\xcf\x80\x70\x84\xa3\x6d\x83\x07\xd7\xda\x7a\xaf\xe8\x18\xbb\xe0\x77\xe0\xc7\xdf\x04\xc7\x57\xf0\xa3\xc4\x58\xc8\xe4\x15\xfc\x68\xd2\x56\xaa\x35\x66\xb9\x56\xaf\xea\xdd\x34\xdb\xe6\x39\x68\x96\x65\xee\xcf\xa0\x8a\xfc\x83\x0d\x0f\x30\x58\x23\xff\x70\xa3\x81\xb2\x26\x10\xf9\xd5\x92\xc3\xf1\xf6\xc6\x58\x1b\xe3\x63\x10\x85\xb6\x9d\x04\x93\x70\x28\x94\x33\x94\x6e\x62\xe7\x1b\x3a\x55\xce\x2a\x00\x9b\xb3\x01\xdb\xf2\x45\x19\x75\x2a\xcf\xca\x3e\xec\x72\x62\x80\xd2\xce\x0c\xfc\x2a\x57\x56\x76\x8d\x6e\xac\x28\x74\xe4\xef\x1a\x85\xfc\x49\x4d\x4c\xec\xfb\x93\x66\x19\xba\xbb\x19\x9e\xe3\x09\xb8\xaa\xcf\x85\x24\xea\xc8\xff\xff\xb5\x87\xa5\xaa\xa4\x0d\x18\xff\x82\x0e\x7c\xf3\x0d\x78\xbe\x28\xb4\x57\x5e\xa5\xdb\x3a\x35\xda\xdc\xac\x59\xd2\x02\x32\x94\x48\xeb\x43\x8c\xc6\xd0\xab\x14\x36\x65\x29\x26\x6e\xfc\x61\x95\x1b\xdb\x44\x4f\xa2\xee\x82\x65\xa8\xb6\xaa\xad\xc3\xbc\x96\xb3\xbf\xbb\x5b\x7e\xfc\xd3\xc1\x5e\x55\x12\xb6\x09\x5d\xdf\xbf\xe7\x57\xf6\xe2\x41\x74\xdf\xce\x1d\xb7\x27\x76\xfe\xc1\x85\x86\xf2\x67\x7d\x0f\xdb\x06\x3c\x68\xb5\x66\x19\x57\xc0\x38\x54\xf9\xd9\xda\x8e\xbf\x10\x69\x6a\xac\xd3\xe7\x25\x45\x67\xe3\x81\xa5\x1c\x04\x41\x9d\x78\x9b\x0d\x9a\x3f\x31\x75\x97\x81\x6b\x8f\xff\x63\xf3\x84\x07\x4c\xf4\xcf\x9e\xcf\x95\x07\x5e\xc9\xaf\x17\x2c\x6d\x96\xd6\x4d\x16\xb6\x99\x2d\xfc\x4e\xd3\x5d\x0b\xf1\xad\x10\x53\x05\x63\x21\x92\xa7\x75\x79\x55\xe4\x53\xeb\x4d\x55\xff\xda\x4c\x1c\xda\xcc\x7c\x4d\xf3\x17\xa1\x81\xce\x28\x4b\xed\x2d\xf7\x05\x36\x6c\x1b\xb6\xda\x37\x3c\xc6\xc6\xa1\x69\xe7\xe0\x04\xf6\x14\x7c\x31\xdd\x2a\x95\x72\xd8\x50\x35\x23\x48\x58\xc2\x77\xec\x4d\x31\x91\x61\x85\x6b\xe3\xa7\xcc\x0e\x09\x81\xa6\xa9\x98\x63\x02\x46\xc3\x6d\x3b\x69\x18\x7d\x43\x3c\x35\x66\xdb\xf8\x60\xaa\x42\x5c\x70\x7b\xe9\xac\xea\xb4\x4f\x6a\xf4\x3a\x4f\x72\xaa\xd4\xdc\xfd\x9e\x5c\xa1\xb4\x47\x73\xf5\x47\xa2\x76\x81\x52\x93\xc1\xf2\x16\x3b\x26\x03\x53\xd3\x77\xc1\xbf\x35\x8f\xcd\xe7\xbb\x27\xff\x13\x00\x00\xff\xff\x1e\x77\xc0\xb7\x9a\x3e\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -4875,16 +4875,16 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5989, + uncompressedSize: 6083, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6d\x6f\x1b\xb9\x11\xfe\xae\x5f\x31\xd8\x5c\xe1\x04\x90\xd6\xb2\xeb\x4b\xce\x46\x5c\x20\xb1\x72\x8d\xd1\xbc\xb8\x27\x5f\x5b\xa0\x3e\xac\x66\xc9\xd9\x5d\xd6\x5c\x72\x4b\x72\x25\x2b\x81\xfb\xdb\x0b\x92\xbb\x8a\xde\xdc\xc6\xb9\x43\xeb\x4f\x86\x96\x9c\x79\xe6\x99\x77\x3e\x81\x0b\xd9\x5a\x47\x66\x30\x98\xa3\x11\x98\x4b\x82\x84\xc5\x9f\x32\x85\x35\x25\xf0\x79\x00\xe0\x96\x0d\x41\xf7\x77\x0e\xd6\x19\xa1\xca\x01\x00\x27\xcb\x8c\x68\x9c\xd0\x0a\xce\x21\xf9\x59\x89\x7f\xb6\x04\xdd\x75\xf0\xd7\xe1\x69\x63\xa8\x21\xc5\x89\x83\xd3\xc0\x95\xcd\x3e\x69\x45\xcf\x92\xc1\xfd\xba\xc6\xc6\xe8\x7f\x10\x73\x99\xe0\x51\xdf\x96\xe0\x2b\x64\xb7\xe4\xa0\x3b\x05\x97\x13\x78\x4a\x69\x99\xc2\xc9\xf8\x7b\x2a\xe8\x94\x8d\x18\xa3\xd3\xd1\x09\x7b\x71\x34\xfa\xe1\x05\x3b\x1a\x9d\x9e\x9c\xb2\xe3\xd3\x71\x7e\xfc\x82\xb3\xa8\xea\x09\x7c\xd0\x9c\xec\x86\x4e\xad\xe5\xb7\x9a\xb8\xd0\xe6\x96\x0c\x78\x11\xfb\xcc\xac\xb4\x75\xfe\xe7\x6d\x33\xe3\xb5\x8c\xe9\x56\xb9\x7d\x5a\x55\x5b\xe7\x64\x82\xd6\x02\x5b\xe9\xba\x9f\x8f\x76\x71\x7c\x08\x27\x41\x17\x1d\x14\x3b\x04\x86\x0a\x72\x02\x56\xa1\x2a\x89\x03\x16\x8e\xcc\x02\x0d\xb7\x81\x78\x92\xe4\x08\xb4\x01\xe4\x1c\x94\xe7\x62\x0b\x9b\x47\xf2\x5f\x98\x58\xc7\x94\xe4\x68\xa8\x26\x87\x32\x1b\x27\x0f\x7a\x4c\x28\xeb\x50\x31\x8a\x32\x0b\x6d\xbe\x12\xae\x21\x66\x08\x1d\x81\xab\x68\x2f\x5a\x26\x59\x66\x95\x68\x1a\x72\x76\x1f\x6a\x29\xac\x7b\x1a\xa1\x3f\xdb\x45\x77\xa1\x95\x43\xa1\xc8\xc0\x3b\xa1\xda\x3b\xb8\xd0\xaa\x10\x25\xac\x04\xee\x58\xfb\xf7\x5f\x62\x10\x5d\x7f\x9c\x7c\x3c\x83\x5a\x94\x26\x80\xd3\x30\x73\x54\x37\x12\x1d\x15\x42\xd2\x0c\x16\x15\x29\xb8\x26\x63\xb0\xd0\xa6\x86\xd9\x38\x3d\x3a\x9e\x81\xb0\xa0\x5b\x07\xa8\x38\xb4\x96\x60\xf6\xf9\x77\x81\x8a\x7f\xdd\xcf\x06\x4f\xbc\x10\x9c\x6b\xc1\xc1\x36\xc4\x44\xb1\x14\xaa\x84\xd9\x68\xe4\x8d\x1e\x49\xcc\x49\xda\x19\x60\x89\x42\x45\xe1\x9e\x90\x39\x1a\x2f\x93\xea\xc6\x2d\xd3\x35\x52\xe2\xf1\xc7\x38\x71\x8f\xe7\x2e\x5a\xeb\x74\x0d\x51\x56\x40\x67\xad\x28\x95\xff\xaf\x8b\xfa\xe0\x8f\x14\xae\x8c\x9e\x0b\x4e\xc0\x74\x5d\x23\x58\x6a\xd0\x93\xc2\xe1\x96\x96\xe7\x73\x94\x2d\x41\x83\xc2\x58\x40\xdb\x09\x4b\x21\x24\xed\x41\xa1\xf5\xb9\xd6\xc5\x30\x47\x73\x3e\xcc\xf1\xd3\xf9\x27\xcc\x0f\xb6\xa3\x11\x85\xda\xef\xd9\xc7\x98\xb2\x85\xcc\x07\x85\x4f\x99\x28\x3c\x05\xf2\x68\xba\x6a\x75\xbd\x6c\xe8\xdc\x3a\x2c\x85\x2a\xcf\x3e\xe8\x29\xab\x88\xb7\x92\x86\xde\xd8\xee\x9b\x36\x58\xd2\xda\xb7\x6d\xcc\xa2\xb9\xa3\x2c\x02\xc8\x5a\x23\xd7\xc0\xaf\x50\x0f\x00\x7c\x25\x72\x74\x06\xe2\xea\x6f\x6f\x46\xb9\xd6\xce\x3b\xfc\x47\x89\x8e\xa1\x01\xad\xa0\xcb\x1c\x3d\x27\x03\x6f\xaf\xaf\xaf\xa6\xde\xd5\x05\x0a\xe9\xcf\xf1\x36\x44\x1d\x42\xde\x96\x20\x54\x10\x92\x06\xa1\xd7\x95\xb0\xd0\xa0\x63\x95\x3f\x6f\xdb\xa6\xd1\x36\x16\xa3\x42\xdc\x81\xab\x84\x3d\x83\xca\xb9\xe6\xec\xf0\xb0\x14\x2e\xf5\x58\x53\x6d\xca\xc3\xf0\x4f\x29\xdc\xa1\x77\xa3\x70\x5c\x14\xc5\x61\xfe\xbc\x28\xe8\xf8\x07\x3c\x0e\x92\xdf\xea\x05\xcd\xc9\x0c\x43\xe8\xb5\x8d\x75\x86\xb0\x0e\x52\x7d\x0a\xfb\x98\x00\xad\xe4\xf2\x4b\x78\x46\xd4\x96\x8c\x37\x81\x6b\xb2\xa0\xb4\x03\x43\x72\xe9\xed\x23\x29\xbd\x87\x58\x90\xcd\x5a\x33\xf7\xb1\x34\xd5\xb0\x20\xb0\x95\x6e\x65\xcc\x91\x28\x23\xc8\xf5\xa9\x12\x85\x59\x58\x08\x57\xf9\x54\xea\x85\x74\x02\x86\x21\xb7\xb4\xab\xc8\x2c\x84\xa5\x20\xba\x97\x92\xc2\x8f\xda\xb8\x56\xa1\x23\xb9\x1c\x82\x15\xbe\x1c\x59\xe7\x5d\x96\x1a\x92\x84\x96\xd2\x22\xd2\x3f\x92\xbe\x1a\xa4\x8a\xdc\x57\xc2\x16\xae\xc7\xec\x8f\xe6\x04\xe8\x7b\x54\x2e\xa9\xf6\xce\x71\x15\x3a\x60\x5e\x7e\xb8\x74\xe9\xa0\x42\x0b\x39\x91\x82\x46\x5b\x2b\x7c\xd0\x38\x0d\x0a\x9d\x98\x7b\x2d\xa1\x58\x4a\xb9\x0a\x06\x51\x63\x49\x21\x7f\x74\x51\x08\x26\x50\xc2\xc7\x29\xe8\x18\xde\xab\x48\x19\x06\xe1\x79\xeb\xbe\xb0\x85\x35\x7f\x7e\x92\xc2\x75\x45\x86\x7c\x34\x28\x0d\x68\xea\xe7\x27\x9b\x92\x01\xe7\x28\x64\x08\xdd\x95\xb0\x74\x2d\xaf\x42\x4e\xed\x26\xd5\x3b\xcd\x30\xfc\xef\x34\x48\x8d\x3c\xb8\xbc\xb9\x23\xf0\xb1\x0c\xf1\x28\x14\x46\xd7\x5b\xd9\x51\x20\x13\x52\xb8\xe5\x63\xba\x6d\x97\x0b\xfd\xd5\xd8\xc8\x1a\xa9\x97\x41\x69\x3f\x67\x08\xb5\xa5\x4a\xdb\x0c\x0d\xab\x1e\x53\x3d\x02\x65\x7b\x4a\x48\xcf\xd8\x76\xc7\xf0\xf2\x85\x23\xe6\x5a\x13\x9c\xd8\xfb\xee\x69\x10\x34\x8c\x7c\x6f\xb7\x7f\x6d\x33\xdf\xee\x14\xc9\xc7\x40\x8b\xb1\xfa\x08\x6c\x9d\x8e\x75\x58\xde\x1f\xf0\x34\x4a\x1a\x42\x4e\x0e\x87\x80\xb2\xa9\x70\x08\xc4\xcb\x9d\x39\x45\xdb\xcc\xa7\x9b\xd0\xea\x31\x40\x59\x6b\x0c\x29\xf7\x08\xa4\x9d\x92\x0d\x02\x7d\x00\xd3\x1d\xd6\x8d\x24\x38\x38\x3e\x3a\x3d\x4a\xbf\x4f\xc7\x07\x30\x02\x4b\x14\x2a\x98\x3d\x3b\x3c\x5c\x2c\x16\x5b\x49\xeb\x6b\x59\x97\xce\xf6\xf0\xd9\xf0\x4b\x32\xf8\x12\xb9\x33\x3c\xc4\xf9\x96\xeb\x1a\x85\xca\x6c\x5b\x14\xe2\x6e\xef\xe0\xf9\xe7\x96\x8c\x20\x1b\x04\xc5\xd3\xb1\x06\x85\xf8\x8b\xf7\x60\x21\xa4\x0c\xb9\xaf\xec\x82\x0c\x71\xc8\x97\xc0\xb4\x21\xae\x6c\x0a\x93\x8e\x22\x61\xfb\x70\x4d\xa5\x66\x28\xbb\x01\xb6\xd0\x3a\xed\x58\x4c\xed\x9c\xa5\x1b\x67\x9e\x41\xf2\xf5\xdc\xaf\x5f\xdc\x32\xf7\xb6\xcd\x89\x85\x09\x67\xaf\x8d\x7f\x5a\x7d\x06\x3f\xc4\x3c\xa8\x73\x43\xa6\xb5\x55\x76\x4b\xcb\x6f\x98\xbd\xa6\xd3\xb7\xd0\xb4\xb9\x14\xcc\x4f\x0a\x91\xda\xd6\x92\x81\x03\x4f\xda\x76\x4f\xf5\x85\x5f\x30\xca\x98\xe0\x66\x1f\xfa\x97\x2f\xdf\x7c\x9c\x0c\x2e\x2e\x27\x3f\xc1\xe5\xd5\xfc\x04\x8c\x9f\x26\xd7\xa6\x16\x6f\x9c\x51\xe4\xc8\x42\x27\xca\xa6\x83\xeb\x8a\xe0\xc8\x3a\xb8\xbc\x5a\x39\xcf\x50\x68\x31\x3c\xc0\xf1\x84\x65\xd8\x88\xd8\x75\x62\xe3\x3b\x1a\xbb\xea\xc1\x0b\xbd\xbb\x07\x1e\xcc\x60\x8d\x90\x3d\x0e\x3b\x87\xe4\x68\x9c\xfe\x3e\x1d\xa7\xe3\xc3\xa3\xe7\x3b\xe6\xba\xb6\xc9\x0c\x3e\xb0\x07\xbd\x72\x7e\xdc\x74\xde\xbe\x6e\x3e\x46\xf8\xe9\xd5\xe5\x04\xc6\x31\xc3\xe9\xce\x19\x04\x2e\xec\x6d\x98\xdc\x72\xf2\xcc\x46\x88\x8d\x4f\x35\xeb\x48\x39\x60\xab\x2c\xec\x66\x9a\x14\x2e\x50\x1d\xb8\xd5\xf9\x10\xe1\x5f\xa0\x64\x55\x58\x19\xcc\xfa\x4f\x96\xf3\x14\xfe\x82\x52\x70\x08\xb3\x9e\x3d\x83\x9b\xc4\x99\x96\x6e\x92\x21\xdc\x24\x05\x4a\x4b\x37\xc9\x6e\x2c\xe5\x5a\xcb\x9d\xe8\x0d\xa7\x1f\x22\xc2\x6b\xff\x15\x64\xbc\x45\xc3\x61\x22\xec\x2d\x70\x23\xe6\x64\x43\x61\x18\xfe\x86\xec\xfc\x1f\x99\xb1\xf6\xd7\x30\x33\xd5\x1e\xe3\xd4\xf9\xef\x93\x6f\xe6\xe6\x71\xe4\x54\xff\x53\x72\xb2\xc2\xee\xe5\xe7\xaf\x7e\x52\xb5\x14\x08\xea\xd5\x87\xda\x07\x76\x69\x1d\xd5\xab\x24\x8f\xec\x71\x3f\x1f\x4d\xa7\x93\xc8\x21\x27\x5f\x45\xc2\xc0\xd9\x1f\xab\xfd\x3e\x1f\x8f\x1d\xd6\xca\x1d\xc6\xdd\xcd\x57\xe2\x91\xb5\x7c\xb4\xe2\xea\x5a\x87\xa9\xd4\x97\x13\x83\x8b\x5e\x92\x07\x22\x3a\x2c\x1d\x01\xbf\x1d\x47\xfe\xde\x26\x45\xb1\x70\x85\x11\x2e\x13\x7c\x3f\x41\xd3\xb8\x8a\xf6\xbb\x48\x85\x86\x2f\xd0\x50\xb6\x79\x37\xb6\xd7\x6e\xc3\xb7\x29\xbc\x82\x1a\x1b\xbf\x06\x98\x68\xe3\x2d\x85\x0e\x5c\x63\x68\x7f\x07\x71\x7b\x1c\x7d\xf7\xdd\x67\xa1\x38\xdd\xdd\x1f\x04\x0e\xe3\x3e\xeb\xb7\x45\x61\x23\x33\x5f\x74\xc0\xe5\x24\x8d\xef\x36\x61\xbe\x6e\xfc\x27\xe5\xe2\x68\x4d\x51\x99\xf7\x40\xcf\x69\x14\xa3\x0b\x98\x6d\xd9\x98\x75\x9c\xcc\xa0\xa7\x21\x85\x37\x71\xc4\x38\x83\xad\xb3\x70\x0e\x9f\xbb\x45\x77\x34\x86\x73\xb8\x49\x5e\x6e\x9e\xf8\xc3\x4d\x02\xf7\xbb\xec\xd7\xd8\x6c\xf4\xbc\x75\x27\x7c\xbe\xff\x8f\x2e\xe8\xe1\x3d\xdc\xdf\xae\xfa\x75\xa1\x0f\x88\x24\x09\xe4\x25\x8a\xee\xdc\x68\x35\xc7\x27\xe9\x60\xd0\xbb\x0e\x57\x18\x36\x09\x0d\x4e\x53\x2b\x4e\x7d\xaf\x26\xde\x53\xba\x4d\xdc\x6c\x50\x63\x93\xc2\x2b\x15\xdf\x1a\xba\x66\x06\x35\xa1\xb2\x90\x78\xde\x95\x5e\x45\xc7\xba\xa2\x24\x85\xd9\x26\xb6\x59\xf0\xd5\x80\x55\x5a\x5b\x9f\x3d\xcb\x0d\x5c\x61\x55\xaa\xfd\xf6\x4a\x31\x0a\xd6\x1e\xd8\x0e\x6c\x9f\x29\x81\x71\x6f\x77\xbf\x10\x7c\x6d\xc3\xdd\xea\xb2\x5c\x58\xff\x4f\x96\x97\xcd\xde\xf0\x9f\xc4\xef\xf0\xfa\x8f\x57\x3e\xa7\xbb\xf7\x8e\x18\x88\x0b\xdd\x95\x3b\xec\xd6\x37\xa6\x95\x22\x16\xf2\xb7\x4b\x17\x7f\xad\x21\x32\xe1\x4e\x78\xc3\xc2\xf8\xa3\xb0\xb1\x48\xc6\x07\x2e\x12\x73\x02\xa1\x5c\x98\x4f\xc0\x19\xf4\x4b\x1e\x70\x61\x88\xb9\x78\xa8\x93\x47\x12\xad\xdf\x75\x2f\xaf\xec\xb7\x57\x46\x87\xe5\xfe\x5c\x7f\xb7\x7a\x14\x29\x6d\x84\xda\x97\xb5\xc6\xe8\x06\x4b\xec\xc0\xc4\x98\x09\x81\x22\x6c\x70\xcc\x2e\x98\x9d\xc9\x6f\xe3\x0d\x2d\x79\x8f\x0a\x4b\xe2\xaf\x97\x67\xef\xf4\xad\xae\xb5\xdf\x7b\x93\x21\x24\x17\xb1\xcc\xbe\x5e\x9e\xfd\xac\xe2\x2b\x98\x20\x9e\xfc\xb2\x69\x40\xd0\x9f\xf1\xf0\xca\x9a\xf5\x8b\xc9\x96\x2d\xef\xf1\x96\xd6\xc3\x27\x62\x8e\x77\x40\xc7\x18\xef\x1f\x81\x0c\x59\xdd\x9a\x50\xb8\xde\x8b\xb2\x72\xdd\x4b\xe4\x10\xea\xd6\xba\x7e\x9f\x0f\xee\xca\x97\x80\x0a\x48\xf1\x91\x9f\x53\x1f\xb0\x1a\xd5\x72\xd7\x64\xd5\x4a\x39\xb8\x1f\xfc\x3b\x00\x00\xff\xff\xd6\x94\x77\x23\x65\x17\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6d\x6f\x1b\xb9\xf1\x7f\xaf\x4f\x31\xd8\xbb\x3f\x9c\x00\xd2\x4a\xf6\xdf\x97\x3b\x1b\x71\x81\xc4\xca\x35\x46\xf3\xe0\x9e\x7c\x6d\xd1\xfa\xb0\x9a\x25\x67\x77\x59\x73\xc9\x2d\xc9\x95\xac\x04\xe9\x67\x2f\x48\xee\x2a\x7a\x72\x1b\xe7\x0e\xad\x5f\x19\x5a\x72\xe6\x37\xbf\x79\xe6\x37\x70\x29\x5b\xeb\xc8\x0c\x06\x0b\x34\x02\x73\x49\x90\xb0\xf8\x53\xa6\xb0\xa6\x04\x3e\x0e\x00\xdc\xaa\x21\xe8\xfe\x2e\xc0\x3a\x23\x54\x39\x00\xe0\x64\x99\x11\x8d\x13\x5a\xc1\x05\x24\x3f\x2b\xf1\x8f\x96\xa0\xbb\x0e\xfe\x3a\x3c\x69\x0c\x35\xa4\x38\x71\x70\x1a\xb8\xb2\xd9\x07\xad\xe8\x69\x32\xf8\xb4\xa9\xb1\x31\xfa\xef\xc4\x5c\x26\x78\xd4\xb7\x23\xf8\x1a\xd9\x1d\x39\xe8\x4e\xc1\xd5\x14\x9e\x50\x5a\xa6\x70\x3a\xf9\x8e\x0a\x3a\x63\x23\xc6\xe8\x6c\x74\xca\xbe\x3f\x1e\xfd\xf0\x3d\x3b\x1e\x9d\x9d\x9e\xb1\x93\xb3\x49\x7e\xf2\x3d\x67\x51\xd5\x37\xf0\x4e\x73\xb2\x5b\x3a\xb5\x96\x5f\x6b\xe2\x52\x9b\x3b\x32\xe0\x45\x1c\x32\xb3\xd2\xd6\xf9\x9f\x77\xcd\x8c\xd7\x32\xa6\x5b\xe5\x0e\x69\x55\x6d\x9d\x93\x09\x5a\x0b\x6c\xa5\xeb\x7e\x3e\xde\xc7\xf1\x2e\x9c\x04\x5d\x74\x50\xec\x10\x18\x2a\xc8\x09\x58\x85\xaa\x24\x0e\x58\x38\x32\x4b\x34\xdc\x06\xe2\x49\x92\x23\xd0\x06\x90\x73\x50\x9e\x8b\x1d\x6c\x1e\xc9\x7f\x60\x62\x13\x53\x92\xa3\xa1\x9a\x1c\xca\x6c\x92\x3c\xe8\x31\xa1\xac\x43\xc5\x28\xca\x2c\xb4\xf9\x42\xb8\x86\x98\x21\x74\x04\xae\xa2\x83\x68\x99\x64\x99\x55\xa2\x69\xc8\xd9\x43\xa8\xa5\xb0\xee\x49\x84\xfe\x74\x1f\xdd\xa5\x56\x0e\x85\x22\x03\x6f\x84\x6a\xef\xe1\x52\xab\x42\x94\xb0\x16\xb8\x67\xed\xdf\x7e\x89\x41\x74\xf3\x7e\xfa\xfe\x1c\x6a\x51\x9a\x00\x4e\xc3\xdc\x51\xdd\x48\x74\x54\x08\x49\x73\x58\x56\xa4\xe0\x86\x8c\xc1\x42\x9b\x1a\xe6\x93\xf4\xf8\x64\x0e\xc2\x82\x6e\x1d\xa0\xe2\xd0\x5a\x82\xf9\xc7\xff\x0b\x54\xfc\xf3\xd3\x7c\xf0\x8d\x17\x82\x0b\x2d\x38\xd8\x86\x98\x28\x56\x42\x95\x30\x1f\x8d\xbc\xd1\x23\x89\x39\x49\x3b\x07\x2c\x51\xa8\x28\xdc\x13\xb2\x40\xe3\x65\x52\xdd\xb8\x55\xba\x41\x4a\x3c\xfe\x18\x27\x1e\xf0\xdc\x65\x6b\x9d\xae\x21\xca\x0a\xe8\xac\x15\xa5\xf2\xff\x75\x51\x1f\xfc\x91\xc2\xb5\xd1\x0b\xc1\x09\x98\xae\x6b\x04\x4b\x0d\x7a\x52\x38\xdc\xd1\xea\x62\x81\xb2\x25\x68\x50\x18\x0b\x68\x3b\x61\x29\x84\xa4\x3d\x2a\xb4\xbe\xd0\xba\x18\xe6\x68\x2e\x86\x39\x7e\xb8\xf8\x80\xf9\xd1\x6e\x34\xa2\x50\x87\x3d\xfb\x18\x53\x76\x90\xf9\xa0\xf0\x29\x13\x85\xa7\x40\x1e\x4d\x57\xad\x6e\x56\x0d\x5d\x58\x87\xa5\x50\xe5\xf9\x3b\x3d\x63\x15\xf1\x56\xd2\xd0\x1b\xdb\x7d\xd3\x06\x4b\xda\xf8\xb6\x8b\x59\x34\xf7\x94\x45\x00\x59\x6b\xe4\x06\xf8\x35\xea\x01\x80\xaf\x44\x8e\xce\x41\x5c\xff\xe5\xd5\x28\xd7\xda\x79\x87\xff\x28\xd1\x31\x34\xa0\x15\x74\x99\xa3\x17\x64\xe0\xf5\xcd\xcd\xf5\xcc\xbb\xba\x40\x21\xfd\x39\xde\x86\xa8\x43\xc8\xdb\x12\x84\x0a\x42\xd2\x20\xf4\xa6\x12\x16\x1a\x74\xac\xf2\xe7\x6d\xdb\x34\xda\xc6\x62\x54\x88\x7b\x70\x95\xb0\xe7\x50\x39\xd7\x9c\x8f\xc7\xa5\x70\xa9\xc7\x9a\x6a\x53\x8e\xc3\x3f\xa5\x70\x63\xef\x46\xe1\xb8\x28\x8a\x71\xfe\xac\x28\xe8\xe4\x07\x3c\x09\x92\x5f\xeb\x25\x2d\xc8\x0c\x43\xe8\xb5\x8d\x75\x86\xb0\x0e\x52\x7d\x0a\xfb\x98\x00\xad\xe4\xea\x73\x78\x46\xd4\x96\x8c\x37\x81\x6b\xb2\xa0\xb4\x03\x43\x72\xe5\xed\x23\x29\xbd\x87\x58\x90\xcd\x5a\xb3\xf0\xb1\x34\xd3\xb0\x24\xb0\x95\x6e\x65\xcc\x91\x28\x23\xc8\xf5\xa9\x12\x85\x59\x58\x0a\x57\xf9\x54\xea\x85\x74\x02\x86\x21\xb7\xb4\xab\xc8\x2c\x85\xa5\x20\xba\x97\x92\xc2\x8f\xda\xb8\x56\xa1\x23\xb9\x1a\x82\x15\xbe\x1c\x59\xe7\x5d\x96\x1a\x92\x84\x96\xd2\x22\xd2\x3f\x92\xbe\x1a\xa4\x8a\xdc\x17\xc2\x16\xae\xc7\xec\x8f\xe6\x04\xe8\x7b\x54\x2e\xa9\xf6\xce\x71\x15\x3a\x60\x5e\x7e\xb8\x74\xe5\xa0\x42\x0b\x39\x91\x82\x46\x5b\x2b\x7c\xd0\x38\x0d\x0a\x9d\x58\x78\x2d\xa1\x58\x4a\xb9\x0e\x06\x51\x63\x49\x21\x7f\x74\x51\x08\x26\x50\xc2\xfb\x19\xe8\x18\xde\xeb\x48\x19\x06\xe1\x79\xeb\x3e\xb3\x85\x35\x7f\x76\x9a\xc2\x4d\x45\x86\x7c\x34\x28\x0d\x68\xea\x67\xa7\xdb\x92\x01\x17\x28\x64\x08\xdd\xb5\xb0\x74\x23\xaf\x42\x4e\xed\x27\xd5\x1b\xcd\x30\xfc\xef\x34\x48\x8d\x3c\xb8\xbc\xb9\x27\xf0\xb1\x0c\xf1\x28\x14\x46\xd7\x3b\xd9\x51\x20\x13\x52\xb8\xd5\x63\xba\x6d\x97\x0b\xfd\xd5\xd8\xc8\x1a\xa9\x57\x41\x69\x3f\x67\x08\xb5\xa3\x4a\xdb\x0c\x0d\xab\x1e\x53\x3d\x02\x65\x07\x4a\x48\xcf\xd8\x6e\xc7\xf0\xf2\x85\x23\xe6\x5a\x13\x9c\xd8\xfb\xee\x49\x10\x34\x8c\x7c\xef\xb6\x7f\x6d\x33\xdf\xee\x14\xc9\xc7\x40\x8b\xb1\xfa\x08\x6c\x9d\x8e\x4d\x58\xde\x1f\xf0\x24\x4a\x1a\x42\x4e\x0e\x87\x80\xb2\xa9\x70\x08\xc4\xcb\xbd\x39\x45\xdb\xcc\xa7\x9b\xd0\xea\x31\x40\x59\x6b\x0c\x29\xf7\x08\xa4\x9d\x92\x2d\x02\x7d\x00\xd3\x3d\xd6\x8d\x24\x38\x3a\x39\x3e\x3b\x4e\xbf\x4b\x27\x47\x30\x02\x4b\x14\x2a\x98\x3d\x1f\x8f\x97\xcb\xe5\x4e\xd2\xfa\x5a\xd6\xa5\xb3\x1d\x3f\x1d\x7e\x4e\x06\x5f\x22\xf7\x86\x87\x38\xdf\x72\x5d\xa3\x50\x99\x6d\x8b\x42\xdc\x1f\x1c\x3c\xff\xd8\x92\x11\x64\x83\xa0\x78\x3a\xd6\xa0\x10\x7f\xf1\x1e\x2c\x85\x94\x21\xf7\x95\x5d\x92\x21\x0e\xf9\x0a\x98\x36\xc4\x95\x4d\x61\xda\x51\x24\x6c\x1f\xae\xa9\xd4\x0c\x65\x37\xc0\x16\x5a\xa7\x1d\x8b\xa9\x5d\xb0\x74\xeb\xcc\x53\x48\xbe\x9c\xfb\xcd\x8b\x3b\xe6\xde\xb5\x39\xb1\x30\xe1\x1c\xb4\xf1\x0f\xeb\xcf\xe0\x87\x98\x07\x75\x6e\xc9\xb4\xb6\xca\xee\x68\xf5\x15\xb3\xd7\x6c\xf6\x1a\x9a\x36\x97\x82\xf9\x49\x21\x52\xdb\x5a\x32\x70\xe4\x49\xdb\xed\xa9\xbe\xf0\x0b\x46\x19\x13\xdc\x1c\x42\xff\xfc\xf9\xab\xf7\xd3\xc1\xe5\xd5\xf4\x27\xb8\xba\x5e\x9c\x82\xf1\xd3\xe4\xc6\xd4\xe2\x8d\x33\x8a\x1c\x59\xe8\x44\xd9\x74\x70\x53\x11\x1c\x5b\x07\x57\xd7\x6b\xe7\x19\x0a\x2d\x86\x07\x38\x9e\xb0\x0c\x1b\x11\xbb\x4e\x6c\x7c\xc7\x13\x57\x3d\x78\xa1\x77\xf7\xc0\x83\x19\x6c\x10\x72\xc0\x61\x17\x90\x1c\x4f\xd2\xff\x4f\x27\xe9\x64\x7c\xfc\x6c\xcf\x5c\xd7\x36\x99\xc1\x07\xf6\xa0\x17\xce\x8f\x9b\xce\xdb\xd7\xcd\xc7\x08\x3f\xbd\xb8\x9a\xc2\x24\x66\x38\xdd\x3b\x83\xc0\x85\xbd\x0b\x93\x5b\x4e\x9e\xd9\x08\xb1\xf1\xa9\x66\x1d\x29\x07\x6c\x9d\x85\xdd\x4c\x93\xc2\x25\xaa\x23\xb7\x3e\x1f\x22\xfc\x33\x94\xac\x0a\x2b\x83\xd9\xfc\xc9\x72\x9e\xc2\x9f\x50\x0a\x0e\x61\xd6\xb3\xe7\x70\x9b\x38\xd3\xd2\x6d\x32\x84\xdb\xa4\x40\x69\xe9\x36\xd9\x8f\xa5\x5c\x6b\xb9\x17\xbd\xe1\xf4\x43\x44\x78\xed\xbf\x82\x8c\xd7\x68\x38\x4c\x85\xbd\x03\x6e\xc4\x82\x6c\x28\x0c\xc3\xdf\x90\x9d\xff\x21\x33\xd6\xfe\x1a\x66\x66\xda\x63\x9c\x39\xff\x7d\xfa\xd5\xdc\x3c\x8e\x9c\xea\xbf\x4a\x4e\x56\xd8\x83\xfc\xfc\xd9\x4f\xaa\x96\x02\x41\xbd\xfa\x50\xfb\xc0\xae\xac\xa3\x7a\x9d\xe4\x91\x3d\xee\xe7\xa3\xd9\x6c\x1a\x39\xe4\xe4\xab\x48\x18\x38\xfb\x63\xb5\xdf\xe7\xe3\xb1\x71\xad\xdc\x38\xee\x6e\xbe\x12\x8f\xac\xe5\xa3\x35\x57\x37\x3a\x4c\xa5\xbe\x9c\x18\x5c\xf6\x92\x3c\x10\xd1\x61\xe9\x08\xf8\xed\x38\xf2\xf7\xb6\x29\x8a\x85\x2b\x8c\x70\x99\xe0\x87\x09\x9a\xc5\x55\xb4\xdf\x45\x2a\x34\x7c\x89\x86\xb2\xed\xbb\xb1\xbd\x76\x1b\xbe\x4d\xe1\x05\xd4\xd8\xf8\x35\xc0\x44\x1b\xef\x28\x74\xe0\x1a\x43\xfb\x3b\x8a\xdb\xe3\xe8\xdb\x6f\x3f\x0a\xc5\xe9\xfe\xd3\x51\xe0\x30\xee\xb3\x7e\x5b\x14\x36\x32\xf3\x59\x07\x5c\x4d\xd3\xf8\x6e\x13\xe6\xeb\xc6\x7f\x52\x2e\x8e\xd6\x14\x95\x79\x0f\xf4\x9c\x46\x31\xba\x80\xf9\x8e\x8d\x59\xc7\xc9\x1c\x7a\x1a\x52\x78\x15\x47\x8c\x73\xd8\x39\x0b\x17\xf0\xb1\x5b\x74\x47\x13\xb8\x80\xdb\xe4\xf9\xf6\x89\xdf\xdd\x26\xf0\x69\x9f\xfd\x1a\x9b\xad\x9e\xb7\xe9\x84\x8f\x9f\xfe\xad\x0b\x7a\x78\x0f\xf7\xb7\xeb\x7e\x5d\xe8\x03\x22\x49\x02\x79\x89\xa2\x7b\x37\x5a\xcf\xf1\x49\x3a\x18\xf4\xae\xc3\x35\x86\x6d\x42\x83\xd3\xd4\x9a\x53\xdf\xab\x89\xf7\x94\xee\x12\x37\x1f\xd4\xd8\xa4\xf0\x42\xc5\xb7\x86\xae\x99\x41\x4d\xa8\x2c\x24\x9e\x77\xa5\xd7\xd1\xb1\xa9\x28\x49\x61\xbe\x8d\x6d\x1e\x7c\x35\x60\x95\xd6\xd6\x67\xcf\x6a\x0b\x57\x58\x95\x6a\xbf\xbd\x52\x8c\x82\x8d\x07\xb6\x23\xdb\x67\x4a\x60\xdc\xdb\xdd\x2f\x04\x5f\xda\x70\x77\xba\x2c\x17\xd6\xff\x93\xe5\x65\x73\x30\xfc\xa7\xf1\x3b\xbc\xfc\xfd\xb5\xcf\xe9\xee\xbd\x23\x06\xe2\x52\x77\xe5\x0e\xbb\xf5\x8d\x69\xa5\x88\x85\xfc\xed\xd2\xc5\x5f\x6b\x88\x4c\xb8\x13\xde\xb0\x30\xfe\x28\x6c\x2c\x92\xf1\x81\x8b\xc4\x82\x40\x28\x17\xe6\x13\x70\x06\xfd\x92\x07\x5c\x18\x62\x2e\x1e\xea\xe4\x91\x44\xeb\x77\xdd\xab\x6b\xfb\xf5\x95\xd1\x61\x79\x38\xd7\xdf\xac\x1f\x45\x4a\x1b\xa1\xf6\x65\xad\x31\xba\xc1\x12\x3b\x30\x31\x66\x42\xa0\x08\x1b\x1c\xb3\x0f\x66\x6f\xf2\xdb\x7a\x43\x4b\xde\xa2\xc2\x92\xf8\xcb\xd5\xf9\x1b\x7d\xa7\x6b\xed\xf7\xde\x64\x08\xc9\x65\x2c\xb3\x2f\x57\xe7\x3f\xab\xf8\x0a\x26\x88\x27\xbf\x6c\x1b\x10\xf4\x67\x3c\xbc\xb2\x66\xfd\x62\xb2\x63\xcb\x5b\xbc\xa3\xcd\xf0\x89\x98\xe3\x1d\xd0\x31\xc6\xfb\x47\x20\x43\x56\xb7\x26\x14\xae\xb7\xa2\xac\x5c\xf7\x12\x39\x84\xba\xb5\xae\xdf\xe7\x83\xbb\xf2\x15\xa0\x02\x52\x7c\xe4\xe7\xd4\x07\xac\x46\xb5\xda\x37\x59\xb5\x52\xee\x84\x5e\xf7\x00\xfe\x98\x2d\x78\xfa\x6e\x06\x7f\xd5\x8a\xba\x9d\xa1\x5b\x8e\x52\xa6\xeb\xb0\xb7\xfd\x2b\x00\x00\xff\xff\x63\x2c\x65\x4a\xc3\x17\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers/workers.tf": &vfsgen۰CompressedFileInfo{ name: "workers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2781, + uncompressedSize: 2871, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xdf\x6f\xdb\x36\x10\x7e\xd7\x5f\x71\xe3\x1a\x20\x06\x6c\x39\x6d\xd7\x61\x08\x60\x14\xdb\xcb\xb0\x97\xa1\xc0\xf6\x56\x14\x04\x4d\x9e\x2c\x36\x14\x49\xf0\xa8\x24\x42\xe0\xff\x7d\x20\x29\xd9\x71\x25\x63\xc9\x53\xcc\xfb\xee\x74\x3f\xbe\xef\xc8\x80\xe4\xfa\x20\x11\x98\x17\xf2\x01\x23\x57\xf8\xa8\x25\x32\x60\xd6\x29\x24\x06\x2f\x15\x80\x74\xbd\x8d\xf0\xea\x6f\x07\x8f\x22\xd4\x4f\x2e\x3c\x60\xe0\xd9\x5a\x01\xb4\x8e\xa2\x15\x1d\xbe\x42\xb1\x77\x2f\x09\x28\x4d\x4f\x11\x03\x4f\xd6\xe3\xa6\x9c\x79\xe7\xcc\x78\x50\xe2\x6c\xde\xbd\xe4\x48\xb5\xb6\x0a\x9f\x8f\xac\x02\xf0\x46\x58\x98\x7f\x37\x0e\x1e\x2b\x80\x46\x48\x6d\x74\xd4\x48\x27\xeb\xd7\x64\x1e\xcf\x87\x6f\x15\x80\xf3\x18\x44\xd4\xf6\xc0\x69\xa0\x88\xdd\x18\x41\xfb\x67\xe4\x24\x83\xf6\x91\xf7\xc1\xc0\x4f\x3b\x60\x0c\x3e\x03\x93\x3d\x45\xd7\xf1\x64\x67\x70\x0f\x8d\x0b\x9d\x88\xb7\xac\x31\x22\x4a\x11\xf8\x0d\xb1\x75\x0e\xe0\x88\xcb\x56\x58\x8b\x66\x55\x01\xec\xb5\x31\xe9\x1b\x72\x90\x06\xc7\xca\x5b\xd7\x07\x33\xe4\x2a\x82\xfb\x8e\x32\x72\xad\x2e\xaa\x38\x1f\x57\x00\x3f\x26\xb4\x9c\x67\x05\x20\xcc\x93\x18\x88\xfb\x67\x3c\x05\x6b\x84\xa1\xd4\x8f\x9e\x30\x70\x25\xa2\xb8\xec\xd6\xb5\x5a\x13\xb2\x96\x91\x4b\x67\x1b\x7d\xa8\xb5\xa5\x28\x8c\xd9\xe8\x83\xd5\x51\x3b\x4b\x75\x40\xab\x30\xa0\x82\xfb\x19\x76\x86\xa9\x2a\x80\x9f\xe1\xaf\x06\xac\x8b\xe0\x03\x12\xda\x08\xda\x42\x6c\x11\x3a\xe1\xd7\xa0\x63\xca\x8f\xa0\x0c\x3f\x01\xc2\xa3\x48\x31\xb8\x56\xc4\x15\x36\xa2\x37\xf1\x58\x27\x1a\x89\xa0\x9e\x44\x40\x7e\x09\x82\x1d\x18\xe7\x1e\x7a\x7f\x5b\xa5\xda\x16\xa2\xac\xb3\x61\x1a\xd9\x48\xaa\x9b\x47\xb6\x86\x57\xbc\x5a\xad\xaf\xb9\x4f\x49\x24\xc0\x2a\xd5\x13\xc5\x81\x26\xc6\x89\x03\x95\x12\xff\x6d\x35\xc1\x93\x18\x20\x3a\x68\x85\x55\x06\x41\xa1\x4f\x5d\xb0\x32\x31\xf1\x49\x10\x68\x4b\x5e\xa7\xc6\xe5\x06\x68\xba\xcf\x9e\x6d\x8c\x9e\xee\xb7\x5b\xa5\x49\xf6\x44\x75\x2b\xa8\xd5\xd2\x05\x5f\x4b\xd7\x6d\xe3\x36\x6a\x4f\x9b\xd6\x3d\x45\xb7\xd1\x9d\x37\xd8\xa1\x8d\x9b\xce\xa9\xde\xe0\xa6\x7c\x82\x36\xce\x6e\xb0\xeb\x4d\xce\x79\xfb\xe1\xe3\xdd\xa7\xed\x87\x0a\xc6\x04\x88\x3b\x3b\x49\x20\x6b\x97\x97\x73\xee\xec\xb7\xea\x58\x55\x29\x77\x24\x84\x32\x43\x02\x11\x30\x8d\x44\xa5\x8e\xe5\x39\x35\x9a\x22\xec\x9d\x8b\xeb\x54\x5c\xe8\x2d\x8c\xb4\xdf\x8c\xdc\xa8\x32\xb9\xd8\x89\x07\x0c\xd8\x8c\x35\xd3\xc2\xb0\x31\x31\x60\x07\x11\x3b\x6f\x44\xc4\x46\x1b\xbc\x65\xef\x5e\xbc\x88\x6d\x5d\xaa\x3a\x6e\xa5\xd9\x8e\x01\xea\x41\x74\xa6\x8e\x9d\x37\x6c\x9d\x23\x00\x9c\x25\x36\x5b\x00\x67\xd3\x84\x7c\xc4\x40\xda\xd9\x25\xe4\x68\x9a\x90\x22\xc8\x16\x16\x96\xca\x68\x2a\x1c\x1a\xe5\x6e\xb4\xed\x9f\xb9\xc3\x6e\xd4\x74\x59\x91\x2c\x63\x88\x5a\xfe\x80\x03\xfd\x10\xea\x3b\x39\x8b\x56\x3a\x85\xb7\x29\xea\x84\x5a\x65\x1f\xef\x28\x8e\x05\xf3\xa9\x63\xb0\x7b\x83\xba\x00\x8e\xab\x34\xc3\xd9\xb6\xde\x1f\x3c\x27\xa4\x54\x20\x03\xb6\x3f\xf8\xc5\x85\x5d\x2a\x54\x9a\xc4\xde\x60\xf2\x81\xdd\x0e\x62\xe8\x11\x3e\xc3\x1d\xdc\x2f\x2d\xf3\x72\x0d\x9c\x76\xd6\x0e\x2e\xae\x87\x42\xb0\xaf\xaf\x74\xf5\xad\xce\x7b\x4c\x28\x15\x90\x88\x37\xa2\xd3\x66\x48\x3d\xd3\xfe\xf1\x17\x56\xf8\xf7\xc7\x9f\x5f\x20\x39\x82\x11\x7b\x34\x54\x57\xc6\x49\x61\x28\x67\xdc\x0d\x5c\x50\x6a\xc6\xa4\xdf\x0e\x53\x9b\xf6\x75\x6f\x75\x9a\x20\xd6\xb1\xd9\x76\xc3\x46\x90\xdd\xdd\x28\xb6\x2e\x4d\x1b\x93\x1a\x57\xe9\xb4\x52\xeb\xd4\x95\xb1\x99\x77\xb5\x20\xbb\xca\x02\xfc\x92\xc1\xe3\x06\x2d\xdb\xe8\xf7\x7f\xfe\x86\x5f\x3f\x7d\xfa\x78\x07\x82\xb2\x06\x02\x76\x2e\x62\x3e\x4f\xb2\xc8\x09\xa6\xbc\xd3\x62\xf2\x88\xe1\x0d\x49\x26\xd8\x39\xcd\x1c\x3d\xcf\x6e\x41\x3c\x6f\x12\x4d\x66\xce\x82\x72\xca\xc0\x5e\x0b\x27\x23\x8b\x78\xae\x50\x7d\x81\xeb\x00\x0f\xfd\x1e\x4b\x4e\x97\xc8\x34\x57\x1b\x6f\xdf\xdf\x95\x2b\xef\x0c\x5b\x8d\x8e\x8b\x12\xf8\x3f\x0d\x00\x3c\xfc\x46\x5c\x59\xe2\x69\xfb\x66\x8e\xf9\xe2\x26\xb5\x0a\xe9\x0d\x51\x9c\x46\x63\x3a\x5c\xc3\xfb\xbb\xc9\x79\x7a\x4a\x28\xd7\x09\x6d\x39\xf5\x4d\xa3\x9f\xc7\xb2\x16\x6d\xa3\x5f\xe2\x1d\x2f\xbc\x9b\xb5\xa3\x1c\x8f\xc0\xc4\x9d\x39\x78\xae\xa0\xcf\xe9\x16\x3d\xbf\x10\x6e\x68\x9d\x1f\x07\x99\x31\x75\x61\xf3\xf4\x6b\x22\xce\x54\x43\x14\xda\xc6\x1f\xba\x76\x7a\xdb\x64\xdb\xd4\x60\x8c\xbd\xe7\x41\x9c\x5e\x0e\xaf\x80\x67\xdb\x0c\xcc\x5b\xa5\xae\x81\x93\x6d\xee\x40\x74\xdd\x81\x68\xd9\x81\x37\x74\xd5\x81\x37\xa5\x84\x63\xbe\x4b\xf3\x43\x2e\xa6\x4e\x5d\x2e\x51\xb2\xda\x7b\x8c\x74\x1a\x9f\xe4\xd3\xd1\x59\x30\x97\x12\x67\xc0\x4e\xff\xbd\x5c\xbe\xad\x66\xaf\xaa\x63\xf5\x5f\x00\x00\x00\xff\xff\x2d\xc5\xa9\x4d\xdd\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\x1b\x37\x13\xbe\xef\xaf\x98\x97\x6f\x0c\x58\x80\xb4\x72\x92\xa6\x28\x0c\x08\x41\x7b\x29\x7a\x29\x02\xb4\xb7\x20\x20\x28\x72\x56\xcb\x98\x4b\x12\x1c\xae\x6d\xd5\xd0\x7f\x2f\xf8\xb1\x92\x65\xad\xd0\xf8\x64\x71\x9e\x99\x9d\x8f\xe7\x19\x32\x20\xb9\x31\x48\x04\xe6\x85\x7c\xc0\xc8\x15\x3e\x6a\x89\x0c\x98\x75\x0a\x89\xc1\x4b\x03\x20\xdd\x68\x23\xbc\xfa\xdb\xc0\xa3\x08\xed\x93\x0b\x0f\x18\x78\xb6\x36\x00\xbd\xa3\x68\xc5\x80\xaf\x50\xec\xdd\x4b\x02\x4a\x33\x52\xc4\xc0\x93\xf5\xb0\x2a\x67\xde\x39\x53\x0f\x4a\x9c\xd5\xbb\x97\x1c\xa9\xd5\x56\xe1\xf3\x81\x35\x00\xde\x08\x0b\x97\xdf\x8d\x7b\x8f\x0d\x40\x27\xa4\x36\x3a\x6a\xa4\xa3\xf5\x6b\x32\xd7\xf3\xfd\xb7\x06\xc0\x79\x0c\x22\x6a\xbb\xe3\xb4\xa7\x88\x43\x8d\xa0\xfd\x33\x72\x92\x41\xfb\xc8\xc7\x60\xe0\x7f\x1b\x60\x0c\x3e\x03\x93\x23\x45\x37\xf0\x64\x67\x70\x0f\x9d\x0b\x83\x88\xb7\xac\x33\x22\x4a\x11\xf8\x0d\xb1\x65\x0e\xe0\x88\xcb\x5e\x58\x8b\x66\xd1\x00\x6c\xb5\x31\xe9\x1b\x72\x2f\x0d\xd6\xca\x7b\x37\x06\xb3\xcf\x55\x04\xf7\x1d\x65\xe4\x5a\x9d\x55\x71\x3a\x6e\x00\xde\x26\x34\x9f\x67\x03\x20\xcc\x93\xd8\x13\xf7\xcf\x78\x0c\xd6\x09\x43\xa9\x1f\x23\x61\xe0\x4a\x44\x71\xde\xad\x6b\xb5\x26\x64\x2b\x23\x97\xce\x76\x7a\xd7\x6a\x4b\x51\x18\xb3\xd2\x3b\xab\xa3\x76\x96\xda\x80\x56\x61\x40\x05\xf7\x17\xd8\x0b\x4c\xd3\x00\xfc\x1f\xfe\xe8\xc0\xba\x08\x3e\x20\xa1\x8d\xa0\x2d\xc4\x1e\x61\x10\x7e\x09\x3a\xa6\xfc\x08\xca\xf0\x13\x20\x3c\x8a\x14\x83\x6b\x45\x5c\x61\x27\x46\x13\x0f\x6d\xa2\x91\x08\xea\x49\x04\xe4\xe7\x20\xd8\x80\x71\xee\x61\xf4\xb7\x4d\xaa\x6d\x26\xca\x32\x1b\xa6\x91\x55\x52\xdd\x3c\xb2\x25\xbc\xe2\xd5\x62\x79\xcd\x7d\x4a\x22\x01\x16\xa9\x9e\x28\x76\x34\x31\x4e\xec\xa8\x94\xf8\x77\xaf\x09\x9e\xc4\x1e\xa2\x83\x5e\x58\x65\x10\x14\xfa\xd4\x05\x2b\x13\x13\x9f\x04\x81\xb6\xe4\x75\x6a\x5c\x6e\x80\xa6\xfb\xec\xd9\xc7\xe8\xe9\x7e\xbd\x56\x9a\xe4\x48\xd4\xf6\x82\x7a\x2d\x5d\xf0\xad\x74\xc3\x3a\xae\xa3\xf6\xb4\xea\xdd\x53\x74\x2b\x3d\x78\x83\x03\xda\xb8\x1a\x9c\x1a\x0d\xae\xca\x27\x68\xe5\xec\x0a\x87\xd1\xe4\x9c\xd7\x1f\x3e\xde\x7d\x5a\x7f\x68\xa0\x26\x40\xdc\xd9\x49\x02\x59\xbb\xbc\x9c\x73\x67\xbf\x35\x87\xa6\x49\xb9\x23\x21\x94\x19\x12\x88\x80\x69\x24\x2a\x75\x2c\xcf\xa9\xd3\x14\x61\xeb\x5c\x5c\xa6\xe2\xc2\x68\xa1\xd2\x7e\x55\xb9\xd1\x64\x72\xb1\x23\x0f\x18\xb0\x0b\xd6\x4c\x0b\xc3\xc6\xc4\x80\x0d\x44\x1c\xbc\x11\x11\x3b\x6d\xf0\x96\xbd\x7b\xf1\x22\xf6\x6d\xa9\xea\xb0\x96\x66\x5d\x03\xb4\x7b\x31\x98\x36\x0e\xde\xb0\x65\x8e\x00\x70\x92\xd8\xc5\x02\x38\x99\x26\xe4\x23\x06\xd2\xce\xce\x21\xab\x69\x42\x8a\x20\x7b\x98\x59\x2a\xd5\x54\x38\x54\xe5\x6e\xb4\x1d\x9f\xb9\xc3\xa1\x6a\xba\xac\x48\x96\x31\x44\x3d\x7f\xc0\x3d\xbd\x09\xf5\x9d\x9c\x45\x2b\x9d\xc2\xdb\x14\x75\x42\x2d\xb2\x8f\x77\x14\x6b\xc1\x7c\xea\x18\x6c\x7e\x40\x5d\x00\x87\x45\x9a\xe1\xc5\xb6\xde\xee\x3c\x27\xa4\x54\x20\x03\xb6\xdd\xf9\xd9\x85\x5d\x2a\x54\x9a\xc4\xd6\x60\xf2\x81\xcd\x06\x62\x18\x11\x3e\xc3\x1d\xdc\xcf\x2d\xf3\x72\x0d\x1c\x77\xd6\x06\xce\xae\x87\x42\xb0\xaf\xaf\x74\xf5\xad\xcd\x7b\x4c\x28\x15\x90\x88\x77\x62\xd0\x66\x9f\x7a\xa6\xfd\xe3\x4f\xac\xf0\xef\xb7\xdf\xbf\x40\x72\x04\x23\xb6\x68\xa8\x6d\x8c\x93\xc2\x50\xce\x78\xd8\x73\x41\xa9\x19\x93\x7e\x07\x4c\x6d\xda\xb6\xa3\xd5\x69\x82\xd8\xc6\x6e\x3d\xec\x57\x82\xec\xe6\x46\xb1\x65\x69\x5a\x4d\xaa\xae\xd2\x69\xa5\xb6\xa9\x2b\xb5\x99\x77\xad\x20\xbb\xc8\x02\xfc\x92\xc1\x75\x83\x96\x6d\xf4\xeb\x5f\x7f\xc2\xcf\x9f\x3e\x7d\xbc\x03\x41\x59\x03\x01\x07\x17\x31\x9f\x27\x59\xe4\x04\x53\xde\x69\x31\x79\xc4\xf0\x03\x49\x26\xd8\x29\xcd\x1c\x3d\xcf\x6e\x46\x3c\x3f\x24\x9a\xcc\x9c\x19\xe5\x94\x81\xbd\x16\x4e\x46\x16\xf1\x5c\xa1\xfa\x0c\xd7\x01\x1e\xc6\x2d\x96\x9c\xce\x91\x69\xae\x36\xde\xbe\xbf\x2b\x57\xde\x09\xb6\xa8\x8e\xb3\x12\xf8\x2f\x0d\x00\x3c\xfc\x42\x5c\x59\xe2\x69\xfb\x66\x8e\xf9\xe2\x26\xb5\x0a\xe9\x0d\x51\x9c\xaa\x31\x1d\x2e\xe1\xfd\xdd\xe4\x3c\x3d\x25\x94\x1b\x84\xb6\x9c\xc6\xae\xd3\xcf\xb5\xac\x59\x5b\xf5\x4b\xbc\xe3\x85\x77\x17\xed\x28\xc7\x15\x98\xb8\x73\x09\xbe\x54\xd0\xe7\x74\x8b\x9e\x5e\x08\x37\xb4\xcc\x8f\x83\xcc\x98\xb6\xb0\x79\xfa\x35\x11\x67\xaa\x21\x0a\x6d\xe3\x9b\xae\x1d\xdf\x36\xd9\x36\x35\x18\xe3\xe8\x79\x10\xc7\x97\xc3\x2b\xe0\xc9\x76\x01\xe6\xbd\x52\xd7\xc0\xc9\x76\xe9\x40\x74\xdd\x81\x68\xde\x81\x77\x74\xd5\x81\x77\xf4\x66\x5e\x67\x0f\xc3\x37\xf3\x4a\xb6\x0a\x4f\xbc\xf8\xc7\x59\x9c\x6b\xcd\x64\xcb\xd0\x43\xbe\xa5\xf3\x13\x31\xa6\x19\x9c\xaf\x67\xb2\xda\x7b\x8c\x74\xfc\x90\xe4\xd3\xd1\x49\x8a\xe7\xcb\x83\x01\x3b\xfe\xf7\x72\xfe\x6a\xbb\x78\xaf\x1d\x9a\x7f\x03\x00\x00\xff\xff\x20\x03\xb6\x4a\x37\x0b\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/platform/packet/template.go b/pkg/platform/packet/template.go index c341ef648..a225abed5 100644 --- a/pkg/platform/packet/template.go +++ b/pkg/platform/packet/template.go @@ -121,6 +121,8 @@ module "worker-{{ $pool.Name }}" { packet = packet.default } + dns_zone = "{{$.Config.DNS.Zone}}" + ssh_keys = {{$.SSHPublicKeys}} cluster_name = "{{$.Config.ClusterName}}"