From c26fc73b74482d16c2d25295bfa3519d8fe63670 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Thu, 15 Jul 2021 13:32:43 +0530 Subject: [PATCH] aws: Add cpu_manager_policy to workers This allows a user to choose the cpu manager policy on a worker pool. Possible values are: `none` and `static`. To make this work, kubelet also needs a static allocation of system reserved and kubernetes reserved CPUs to be defined. So this commit also adds the default of 300m cores for kube-reserved-cpu and 1500m cores for system-reserved-cpu when `cpu_manager_policy` is set. Signed-off-by: Suraj Deshmukh --- .../kubernetes/workers/cl/worker.yaml.tmpl | 7 ++ .../kubernetes/workers/variables.tf | 19 ++++ .../kubernetes/workers/workers.tf | 4 + docs/configuration-reference/platforms/aws.md | 107 +++++++++--------- pkg/assets/generated_assets.go | 16 +-- pkg/platform/aws/aws.go | 55 ++++++--- pkg/platform/aws/aws_internal_test.go | 62 ++++++++++ pkg/platform/aws/template.go | 4 + 8 files changed, 196 insertions(+), 78 deletions(-) diff --git a/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl b/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl index beb0a415b..0a87ac5a0 100644 --- a/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl +++ b/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl @@ -140,6 +140,13 @@ storage: apiVersion: kubelet.config.k8s.io/v1beta1 kind: KubeletConfiguration cgroupDriver: "$${docker_cgroup_driver}" + %{~ if cpu_manager_policy == "static" ~} + cpuManagerPolicy: ${cpu_manager_policy} + systemReserved: + cpu: ${system_reserved_cpu} + kubeReserved: + cpu: ${kube_reserved_cpu} + %{~ endif ~} EOF - path: /etc/kubernetes/delete-node filesystem: root diff --git a/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/variables.tf b/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/variables.tf index 32d81fcd1..240b7d850 100644 --- a/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/variables.tf +++ b/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/variables.tf @@ -173,3 +173,22 @@ variable "enable_csi" { type = bool default = false } + + +variable "cpu_manager_policy" { + description = "CPU Manager policy to use for the worker pool. Possible values: `none`, `static`." + default = "none" + type = string +} + +variable "kube_reserved_cpu" { + description = "CPU cores reserved for the Worker Kubernetes components like kubelet, etc." + default = "300m" + type = string +} + +variable "system_reserved_cpu" { + description = "CPU cores reserved for the host services like Docker, sshd, kernel, etc." + default = "1500m" + type = string +} diff --git a/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/workers.tf b/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/workers.tf index 64ac0532c..7bb0e4cb9 100644 --- a/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/workers.tf +++ b/assets/terraform-modules/aws/flatcar-linux/kubernetes/workers/workers.tf @@ -160,6 +160,10 @@ data "ct_config" "worker-ignition" { node_labels = merge({ "node.kubernetes.io/node" = "" }, var.labels) taints = var.taints enable_tls_bootstrap = var.enable_tls_bootstrap + cpu_manager_policy = var.cpu_manager_policy + system_reserved_cpu = var.system_reserved_cpu + kube_reserved_cpu = var.kube_reserved_cpu + }) pretty_print = false snippets = var.clc_snippets diff --git a/docs/configuration-reference/platforms/aws.md b/docs/configuration-reference/platforms/aws.md index 9402a56ae..206c84da4 100644 --- a/docs/configuration-reference/platforms/aws.md +++ b/docs/configuration-reference/platforms/aws.md @@ -198,59 +198,60 @@ worker_pool "my-worker-pool" { ## Attribute reference -| Argument | Description | Default | Type | Required | -|-------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------:|:------------:|:--------:| -| `asset_dir` | Location where Lokomotive stores cluster assets. | - | string | true | -| `cluster_name` | Name of the cluster. **NOTE**: It must be unique per DNS Zone and region. | - | string | true | -| `tags` | Optional details to tag on AWS resources. | - | map(string) | false | -| `os_channel` | Flatcar Container Linux AMI channel to install from (stable, beta, alpha, edge). | "stable" | string | false | -| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | -| `dns_zone` | Route 53 DNS Zone. | - | string | true | -| `dns_zone_id` | Route 53 DNS Zone ID. | - | string | true | -| `oidc` | OIDC configuration block. | - | object | false | -| `oidc.issuer_url` | URL of the provider which allows the API server to discover public signing keys. Only URLs which use the https:// scheme are accepted. | - | string | false | -| `oidc.client_id` | A client id that all tokens must be issued for. | "clusterauth" | string | false | -| `oidc.username_claim` | JWT claim to use as the user name. | "email" | string | false | -| `oidc.groups_claim` | JWT claim to use as the user’s group. | "groups" | string | false | -| `enable_csi` | Set up IAM role needed for dynamic volumes provisioning to work on AWS | false | bool | false | -| `expose_nodeports` | Expose node ports `30000-32767` in the security group, if set to `true`. | false | bool | false | -| `ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | -| `controller_count` | Number of controller nodes. | 1 | number | false | -| `controller_type` | AWS instance type for controllers. | "t3.small" | string | false | -| `controller_clc_snippets` | Controller Flatcar Container Linux Config snippets. | [] | list(string) | false | -| `region` | AWS region to use for deploying the cluster. | "eu-central-1" | string | false | -| `enable_aggregation` | Enable the Kubernetes Aggregation Layer. | true | bool | false | -| `enable_tls_bootstrap` | Enable TLS bootstraping for Kubelet. | true | bool | false | -| `encrypt_pod_traffic` | Enable in-cluster pod traffic encryption. If true `network_mtu` is reduced by 60 to make room for the encryption header. | false | bool | false | -| `ignore_x509_cn_check` | Ignore check of common name in x509 certificates. If any application is built pre golang 1.15 then API server rejects x509 from such application, enable this to get around apiserver. | false | bool | false | -| `disk_size` | Size of the EBS volume in GB. | 40 | number | false | -| `disk_type` | Type of the EBS volume (e.g. standard, gp2, io1). | "gp2" | string | false | -| `disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | number | false | -| `network_mtu` | Physical Network MTU. When using instance types with Jumbo frames, use 9001. | 1500 | number | false | -| `host_cidr` | CIDR IPv4 range to assign to EC2 nodes. | "10.0.0.0/16" | string | false | -| `pod_cidr` | CIDR IPv4 range to assign Kubernetes pods. | "10.2.0.0/16" | string | false | -| `service_cidr` | CIDR IPv4 range to assign Kubernetes services. | "10.3.0.0/16" | string | false | -| `cluster_domain_suffix` | Cluster's DNS domain. | "cluster.local" | string | false | -| `enable_reporting` | Enables usage or analytics reporting to upstream. | false | bool | false | -| `certs_validity_period_hours` | Validity of all the certificates in hours. | 8760 | number | false | -| `conntrack_max_per_core` | Maximum number of entries in conntrack table per CPU on all nodes in the cluster. If you require more fain-grained control over this value, set it to 0 and add CLC snippet setting `net.netfilter.nf_conntrack_max sysctl setting per node pool. See [Flatcar documentation about sysctl] for more details. | 32768 | number | false | -| `worker_pool` | Configuration block for worker pools. There can be more than one. **NOTE**: worker pool name must be unique per DNS zone and region. | - | list(object) | true | -| `worker_pool.count` | Number of workers in the worker pool. Can be changed afterwards to add or delete workers. | - | number | true | -| `worker_pool.instance_type` | AWS instance type for worker nodes. | "t3.small" | string | false | -| `worker_pool.ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | -| `worker_pool.os_channel` | Flatcar Container Linux channel to install from (stable, beta, alpha, edge). | "stable" | string | false | -| `worker_pool.os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | -| `worker_pool.labels` | Map of extra Kubernetes Node labels for worker nodes. | - | map(string) | false | -| `worker_pool.taints` | Map of Taints to assign to worker nodes. | - | map(string) | false | -| `worker_pool.disk_size` | Size of the EBS volume in GB. | 40 | number | false | -| `worker_pool.disk_type` | Type of the EBS volume (e.g. standard, gp2, io1). | "gp2" | string | false | -| `worker_pool.disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | number | false | -| `worker_pool.spot_price` | Spot price in USD for autoscaling group spot instances. Leave as empty string for autoscaling group to use on-demand instances. Switching in-place from spot to on-demand is not possible. | "" | string | false | -| `worker_pool.target_groups` | Additional target group ARNs to which worker instances should be added. | [] | list(string) | false | -| `worker_pool.lb_http_port` | Port the load balancer should listen on for HTTP connections. | 80 | number | false | -| `worker_pool.lb_https_port` | Port the load balancer should listen on for HTTPS connections. | 443 | number | false | -| `worker_pool.clc_snippets` | CWorker Flatcar Container Linux Config snippets. | [] | list(string) | false | -| `worker_pool.tags` | Optional details to tag on AWS resources. | - | map(string) | false | +| Argument | Description | Default | Type | Required | +|----------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-:-:-------------|-:-:----------|-:-:------| +| `asset_dir` | Location where Lokomotive stores cluster assets. | - | string | true | +| `cluster_name` | Name of the cluster. **NOTE**: It must be unique per DNS Zone and region. | - | string | true | +| `tags` | Optional details to tag on AWS resources. | - | map(string) | false | +| `os_channel` | Flatcar Container Linux AMI channel to install from (stable, beta, alpha, edge). | "stable" | string | false | +| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | +| `dns_zone` | Route 53 DNS Zone. | - | string | true | +| `dns_zone_id` | Route 53 DNS Zone ID. | - | string | true | +| `oidc` | OIDC configuration block. | - | object | false | +| `oidc.issuer_url` | URL of the provider which allows the API server to discover public signing keys. Only URLs which use the https:// scheme are accepted. | - | string | false | +| `oidc.client_id` | A client id that all tokens must be issued for. | "clusterauth" | string | false | +| `oidc.username_claim` | JWT claim to use as the user name. | "email" | string | false | +| `oidc.groups_claim` | JWT claim to use as the user’s group. | "groups" | string | false | +| `enable_csi` | Set up IAM role needed for dynamic volumes provisioning to work on AWS | false | bool | false | +| `expose_nodeports` | Expose node ports `30000-32767` in the security group, if set to `true`. | false | bool | false | +| `ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | +| `controller_count` | Number of controller nodes. | 1 | number | false | +| `controller_type` | AWS instance type for controllers. | "t3.small" | string | false | +| `controller_clc_snippets` | Controller Flatcar Container Linux Config snippets. | [] | list(string) | false | +| `region` | AWS region to use for deploying the cluster. | "eu-central-1" | string | false | +| `enable_aggregation` | Enable the Kubernetes Aggregation Layer. | true | bool | false | +| `enable_tls_bootstrap` | Enable TLS bootstraping for Kubelet. | true | bool | false | +| `encrypt_pod_traffic` | Enable in-cluster pod traffic encryption. If true `network_mtu` is reduced by 60 to make room for the encryption header. | false | bool | false | +| `ignore_x509_cn_check` | Ignore check of common name in x509 certificates. If any application is built pre golang 1.15 then API server rejects x509 from such application, enable this to get around apiserver. | false | bool | false | +| `disk_size` | Size of the EBS volume in GB. | 40 | number | false | +| `disk_type` | Type of the EBS volume (e.g. standard, gp2, io1). | "gp2" | string | false | +| `disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | number | false | +| `network_mtu` | Physical Network MTU. When using instance types with Jumbo frames, use 9001. | 1500 | number | false | +| `host_cidr` | CIDR IPv4 range to assign to EC2 nodes. | "10.0.0.0/16" | string | false | +| `pod_cidr` | CIDR IPv4 range to assign Kubernetes pods. | "10.2.0.0/16" | string | false | +| `service_cidr` | CIDR IPv4 range to assign Kubernetes services. | "10.3.0.0/16" | string | false | +| `cluster_domain_suffix` | Cluster's DNS domain. | "cluster.local" | string | false | +| `enable_reporting` | Enables usage or analytics reporting to upstream. | false | bool | false | +| `certs_validity_period_hours` | Validity of all the certificates in hours. | 8760 | number | false | +| `conntrack_max_per_core` | Maximum number of entries in conntrack table per CPU on all nodes in the cluster. If you require more fain-grained control over this value, set it to 0 and add CLC snippet setting `net.netfilter.nf_conntrack_max sysctl setting per node pool. See [Flatcar documentation about sysctl] for more details. | 32768 | number | false | +| `worker_pool` | Configuration block for worker pools. There can be more than one. **NOTE**: worker pool name must be unique per DNS zone and region. | - | list(object) | true | +| `worker_pool.count` | Number of workers in the worker pool. Can be changed afterwards to add or delete workers. | - | number | true | +| `worker_pool.cpu_manager_policy` | CPU Manager policy to use. Possible values: `none`, `static`. | "none" | string | false | +| `worker_pool.instance_type` | AWS instance type for worker nodes. | "t3.small" | string | false | +| `worker_pool.ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true | +| `worker_pool.os_channel` | Flatcar Container Linux channel to install from (stable, beta, alpha, edge). | "stable" | string | false | +| `worker_pool.os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false | +| `worker_pool.labels` | Map of extra Kubernetes Node labels for worker nodes. | - | map(string) | false | +| `worker_pool.taints` | Map of Taints to assign to worker nodes. | - | map(string) | false | +| `worker_pool.disk_size` | Size of the EBS volume in GB. | 40 | number | false | +| `worker_pool.disk_type` | Type of the EBS volume (e.g. standard, gp2, io1). | "gp2" | string | false | +| `worker_pool.disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | number | false | +| `worker_pool.spot_price` | Spot price in USD for autoscaling group spot instances. Leave as empty string for autoscaling group to use on-demand instances. Switching in-place from spot to on-demand is not possible. | "" | string | false | +| `worker_pool.target_groups` | Additional target group ARNs to which worker instances should be added. | [] | list(string) | false | +| `worker_pool.lb_http_port` | Port the load balancer should listen on for HTTP connections. | 80 | number | false | +| `worker_pool.lb_https_port` | Port the load balancer should listen on for HTTPS connections. | 443 | number | false | +| `worker_pool.clc_snippets` | CWorker Flatcar Container Linux Config snippets. | [] | list(string) | false | +| `worker_pool.tags` | Optional details to tag on AWS resources. | - | map(string) | false | ## Applying diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index b4cb2abd9..3655efd21 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -6999,9 +6999,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/aws/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: 6199, + uncompressedSize: 6451, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x6d\x8f\xdb\x36\xf2\x7f\x9f\x4f\xc1\xba\xfe\xc3\x09\xb0\xb4\xec\xfc\xd3\x5c\xa1\xab\x0a\x6c\x1a\x27\x08\x92\x4b\x8a\xee\xe6\xf2\x62\x2f\x35\x68\x69\x64\x4f\x4c\x71\x14\x92\xb2\xd7\x75\xdc\xcf\x7e\xa0\x1e\xbc\x7a\xb2\xbb\xe9\xdd\xe1\xee\x8d\x61\x92\xbf\x79\xe0\xcc\x70\x1e\xc4\x39\x7f\x60\x76\xc6\x42\x12\xf9\x0f\x18\xcb\x14\x5a\xe3\xfe\x30\xc6\x99\x12\x09\xf8\x2c\xa2\x70\x0d\x7a\x6c\x40\x6f\x30\x84\xfc\x88\x31\x50\x62\x21\xc1\x67\x56\x67\xd0\x40\xa3\x09\x0d\x46\xbd\xe8\xa8\x06\x67\x2c\xd2\x94\xa2\x2a\x65\xdd\xd1\x4f\x26\xbc\x64\x11\x92\x8a\xcb\x43\xc6\x42\x52\x16\x94\x35\x3e\xfb\x72\xdc\x63\xec\xe6\xaa\x10\xf3\xb1\xb6\x37\xbb\x85\xf0\xca\x0a\x6d\x7f\xd6\x10\x78\x0b\x54\xde\x42\x98\x15\xe3\x21\x1b\x41\xb8\x22\x36\x78\xa5\xd0\xa2\xb0\xa4\xdf\x8a\x04\x82\xe1\x43\xcf\x38\x50\x2e\x94\xa3\x53\x82\xf1\x94\xe1\x67\x35\x7e\x3c\x79\x3c\xe1\x93\xe9\x18\x69\xbc\x46\xb5\x21\xb9\xf6\x27\xd3\x47\x03\xf6\x23\xf3\xc0\x86\x05\x85\x87\x15\x37\x47\x39\xce\xf7\x46\x0d\x83\x48\x0a\xd7\x26\x41\xbb\x6a\x1b\x25\x11\x66\xdd\x63\xc0\xad\x40\xcb\x63\xd2\x3c\x52\xe6\x8f\x8c\xde\x6f\x97\x9b\xf7\x0a\xed\x9d\x49\x9e\x83\x09\x35\xa6\x16\x49\x05\x1f\x04\x5a\x16\x93\x66\xcf\xdf\x5e\x31\x50\x56\x23\x98\x23\xf0\x83\x50\xd6\x04\x65\x30\x70\x0d\x86\xe4\x06\xda\x5a\x33\xf6\x0c\x62\xd2\x10\xac\xb3\x05\x48\xb0\x9d\xe3\xae\x4f\x7e\x01\xe3\xfc\x11\x90\xe2\xb1\x40\x99\x69\x68\x1f\x5d\x41\x18\x7c\x77\xa7\xc8\xf5\x2e\x85\x80\x14\x98\x15\xd9\x1a\x34\x11\xa8\x2e\x63\x0b\x7a\x76\x8b\x36\xa8\x19\xa1\xe6\xf4\xc2\xe3\xa5\xbf\xb7\x2b\x94\xc0\xbe\x61\x5e\x66\x74\xbe\xbf\xd4\x90\xb2\xd1\xaf\x37\xbf\x7e\x7b\xe3\x9b\x54\x84\xe0\x7f\xfc\x38\x2a\xbc\x59\x5c\x37\x0f\x3a\xe7\xe0\x08\x36\x9e\xca\xa4\xfc\x2b\x8b\x88\x19\x09\x90\xb2\xa9\xfb\xaf\x60\x74\x77\xd3\x57\xca\x58\x21\x65\xfd\xa6\x9f\x33\xd4\x10\x3d\xdb\xf5\x9a\xa7\x72\x71\xbf\xe9\xfe\x75\xef\xbe\x2e\xf8\xb6\x1c\xaa\xd3\x90\x1b\x2b\x6c\xd7\x93\x5d\x57\xcd\xd4\x06\x35\xa9\x04\x94\x7d\x81\x12\x82\xdc\x34\x4e\x5d\xad\xc0\x82\xf1\x2a\xcd\x41\x6d\xba\xb6\x3f\x3e\xb8\x64\x1d\xa1\x76\xaf\xc8\xdb\x08\xed\x49\x5c\x54\x74\xde\x86\x64\x96\x40\x2a\xb3\x25\x2a\x73\x2f\x0e\x2d\x05\x12\xa1\x30\x06\x63\x4f\x11\x57\x9e\xae\xde\xfc\xa0\x70\x79\x08\xda\x62\x8c\xa1\xb0\xc0\x45\x66\x57\xa4\xd1\xee\x78\x24\xac\x18\x75\x44\xb8\xbf\x2e\x0c\x70\xc9\xbe\x30\xb1\x5d\xb3\xd1\x3e\xd5\xa8\x2c\x1b\x3e\x3e\x8c\xd8\x17\xb6\x10\x06\x9e\x3e\x61\x3c\xaa\x12\x41\x8d\x36\x14\xe3\x50\xdb\xc1\x09\xe5\xda\xe0\x5c\x48\xa6\x81\x97\xe6\xe1\xe1\x52\x53\x96\xf2\x48\xe3\x06\x74\x3f\x13\x5e\xa4\x63\xa6\x13\xc6\xe3\x2a\x92\xfa\xa1\x15\x32\x53\x4e\xd9\x7f\xd4\x72\x24\xe7\x2e\x10\xab\x18\x6d\x1d\x49\x5a\x96\x1a\x04\x9f\x28\xd3\x4a\xc8\x0e\x31\xd8\x2d\xe9\x75\xb0\x22\xd3\x26\x4e\x31\xea\xdd\xd6\xb8\x41\x09\x4b\x68\xb1\xda\xe4\x2f\xcd\xcf\x7f\xf4\xb6\x73\xe6\x0c\x16\x2a\xf4\x14\xd8\x71\xe4\xb7\x96\x9a\x7a\xf1\x77\x06\xf6\xdb\xeb\x13\x14\x89\x08\x57\xa8\x80\x63\x29\xa2\xb6\xee\xa1\x70\xe1\x9c\x50\x94\x49\x27\xa0\xbe\xe8\xc1\xea\x4c\xf9\xf9\x4f\xcf\xdd\xcc\xce\xf8\xf9\x4f\xcf\x19\xa5\x36\xbf\xe8\x02\x95\xdf\x58\xf4\xc8\x70\x11\xef\xd4\x20\xc3\x35\x48\x10\x06\x8a\x5b\xd4\xd6\x3d\x54\xd5\xc3\x0c\x85\xc4\x90\xfc\xf6\xfa\x1c\x85\x42\xbf\xb1\xe8\xd1\xbf\x3a\x2e\x22\xd0\x6f\xaf\x4f\x51\xd0\xd2\x4b\x29\x32\x7e\x73\xd5\x46\xf3\x84\x32\x65\x99\x75\x45\x62\x81\x2a\xba\x30\x94\xe9\x10\x02\x2f\x51\xf6\xc2\x0a\xbd\x04\x5b\xfc\x77\x87\x3c\xd5\x94\x8a\xa5\xc8\xf3\xa3\x36\x2b\xa1\xdb\x21\x78\x92\x5d\x2b\x77\x1d\x59\xb7\xf7\xef\x25\x66\x38\xdc\xbf\x7e\xff\x6c\xf6\x66\x76\x3d\x7f\xf5\xb7\xcb\x97\xb3\xf9\xfb\x5f\xde\x1c\xfc\xce\xee\xf5\xe5\xcb\x43\x4b\x3d\xa1\x48\xed\x12\xca\x4c\x9e\xb8\x82\x58\x48\x03\x6d\x48\x66\x57\xa0\xac\x4b\x6f\x48\x8a\x5b\x5a\x83\xe2\x5b\x58\xac\x88\xd6\x3d\x50\xd2\xf8\x5b\x81\x4c\x28\x82\xe0\x43\x2f\x30\x94\x08\xca\xf2\x50\xf0\xb8\xaf\x10\x14\x89\xae\x43\x93\x19\x0b\x7a\x1e\x29\x13\x0c\xf7\xb5\xd5\xbc\xac\x3c\x73\x4c\xdb\xd7\x3b\xa2\xc8\x95\xf7\x3a\x59\xbe\x31\x37\x59\x1c\xe3\x6d\x87\x4a\x21\x77\xe9\x93\x47\xa8\x83\x66\x5e\x68\x23\xf3\x24\x7b\xb2\x90\x95\x89\xbe\x49\x03\xb7\x68\x39\x29\xee\x5a\x37\x5e\xd6\x60\x24\xd5\x40\xfd\xdf\xfe\x77\x86\x71\x59\xb4\xe7\x56\x9a\xf9\x82\xc8\x1a\xab\x45\xca\x7e\x3f\x34\xd8\xdd\x15\x94\x4e\xf0\xd4\x8b\x4d\x53\x87\x23\xb7\x06\xf9\xe9\x52\xd5\xa4\xd6\x64\x5d\xa9\xab\x95\x3d\xd3\xd1\x1e\x5c\x20\x9d\x51\xf5\x7e\xb2\x72\x4e\x2a\xc2\xb8\xcd\x2a\x37\x5e\x11\x3b\xee\xd2\x3a\x53\x9e\xdb\x3a\x5a\xde\x2d\xfa\xeb\x0a\x2f\xfa\x83\x20\x54\xd8\x06\x50\x04\x5c\x8a\x05\x48\x13\x0c\x87\xfb\xb7\xef\x9e\xcf\xe6\x6f\x2e\x9f\xcd\xde\x5c\xb5\x03\x24\xa5\x88\x57\xbd\x02\x4f\x85\x5d\x75\xee\x73\xec\x24\xda\xa6\x03\x11\x71\x52\x72\xc7\x53\xd2\x36\x98\x74\x8e\x97\xe8\xe2\x93\x6f\xd1\xae\xb8\x15\xe8\x5a\xac\x4a\x97\xeb\xcb\x57\x6f\xaf\x3b\xba\x14\x4d\x4f\x79\xab\x22\x62\xbf\xb2\x2f\xaa\x4a\xb9\xa4\xa5\x39\x5d\xf6\x29\xad\x70\xc6\x52\x7a\x12\xf4\x33\x99\x23\x43\x9d\x74\x60\x55\xb7\x2e\xe4\x56\xec\x4c\x6f\xa7\x7e\xa6\x03\x76\x2d\x67\xde\xff\x26\x99\xb4\xc8\x33\x03\x7a\x5c\x24\xce\xe6\x4c\xe9\x44\x42\xee\xcf\xff\xc8\x8c\x83\x6a\xc9\x2c\x95\x62\xd8\xeb\xa3\xd7\x99\x93\xc8\x48\x31\xb3\xca\x6c\x44\x5b\xf5\x3f\x35\xb6\xf4\x9c\x51\xda\x09\xdc\x9a\xed\xfe\x9c\x23\x8c\x25\x2d\x96\xe0\x26\x6f\xf7\x3e\x8f\xe3\xbe\x7b\x26\xfe\x99\x76\xb8\xe4\x9d\xd3\xe4\x43\xa2\xcf\x34\x1d\xaf\xea\x6a\x89\xcf\x26\x4f\x9f\x3c\x69\xbb\xed\xa8\x13\x2a\x89\x0a\x9a\x23\xfc\x70\x7f\x27\xe0\xf0\x87\x8a\x34\x67\x8f\x7f\xaf\x26\x9d\xfa\x1c\x7c\xce\xc4\x6e\x8c\xe4\x95\xd3\xbf\xd7\x7e\x2a\x6d\x9a\xeb\xcb\x97\xc1\x66\x3a\x7e\x3c\x1d\x4f\x6b\x98\x5a\x96\x0a\x06\xc3\xfd\x27\x42\xf5\x70\x70\x31\xb8\x60\x37\x6e\x10\x5f\x5f\xb0\x0d\x43\x95\x07\xe6\xbc\x48\x6d\xcc\x67\x83\xe1\x7e\x7d\x08\x86\xfb\xcd\x61\xf0\xf1\xd1\x61\xd0\xe6\x56\xe4\x99\x33\xdc\x8a\xbc\x74\x82\x51\xc3\xc0\x66\x67\x42\x2b\xc7\x91\x97\x88\xdb\x3c\x4a\xf8\x56\xd8\x70\x05\xa6\xfe\xfd\xe5\x84\xa1\xef\x67\xd7\xd8\x8c\x51\x91\xc5\x78\x37\x4e\xc4\xed\xdc\xc9\x98\x97\x32\x82\xe9\xd3\xe9\xf7\x4f\xce\x7a\xfd\x7e\x43\xd2\xf9\x48\xf8\xcb\x57\x46\xc2\xb7\xdf\x1c\x67\xc8\xda\xae\x01\xcb\x38\xd4\x36\x5c\xa5\x70\x85\xa2\xfc\x42\x36\x2f\x14\x9b\x97\xb3\xd3\x60\xf8\xb0\x4c\xb2\xa8\x62\x72\x59\x7b\xb4\xdf\x8f\x7f\xca\x31\xcf\x73\xc8\xe1\x30\x7a\x54\x77\x6d\x28\x2c\xfb\xe1\x87\xd9\xbb\x17\xec\xc7\xf3\xed\x4a\x8d\x46\xa4\xf8\x77\xd0\x06\x49\xdd\x7d\x56\x28\x40\xe3\xf5\xf7\xc6\x05\xef\x66\xba\x00\x2b\xea\x01\xb9\x46\x15\xf9\xac\xfc\x58\xf0\x53\x69\xdf\xbc\x21\xac\x2b\x53\x53\xd4\x85\xd1\x70\xdf\x77\xcb\x46\x68\xce\xde\xbd\x38\xeb\xca\x6e\xe2\xfa\xaf\xb8\x0d\x6e\x21\x64\xb5\xd9\xb8\x5e\xac\xcf\x4e\xb7\x7f\x66\xc6\x6c\xce\x43\xa5\x87\xfc\xce\x46\x97\x8a\x83\xb2\x7a\x97\x12\x2a\x5b\x7c\xd5\x90\x14\x0a\x99\x5f\x30\x4f\x98\x56\xb6\x28\x4e\x24\x2b\xbf\x4c\x48\x2d\xf4\xbd\xdb\xd7\xaf\x68\x60\xcb\x6a\x9b\x97\xd8\xe1\x43\x67\x3e\x57\xec\x1f\x75\xe4\x76\x1b\xcf\xfb\xb7\x9e\xf7\x93\x51\x76\xa4\x3d\xf5\xa4\xf0\xbb\x17\x09\x48\x48\x8d\x3f\x99\x63\xcc\x9f\x0f\xc5\xef\x26\x93\xaf\x0a\xc5\x7d\x43\xa1\x81\xc4\x0d\x70\x0d\xae\xf0\xc2\xa0\xe8\x6d\x2e\x5a\x08\x5a\x72\x4a\xad\x19\xf8\x2d\x5a\xc6\x06\x2e\x33\x1b\xfc\xcd\x51\x0e\xa6\x93\x49\x32\xb8\xe8\x43\xb8\x0b\x38\xc4\xff\x0f\x1a\xa7\x75\x33\x1f\x1e\xa4\xc2\x98\x6d\xf1\xa1\xdf\x80\x6e\x7d\xe8\x0f\xe9\xd8\xe2\x18\xb3\x9a\x57\xa3\x22\x44\xf3\x35\xec\x8c\xcf\x86\x7b\xb7\xed\xfe\x1f\x1e\xfc\x33\x00\x00\xff\xff\x74\x91\xee\x86\x37\x18\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\xdd\x93\xd3\x46\x12\x7f\xe7\xaf\x98\x28\xbe\x32\x54\xed\x58\x36\x47\xb8\x94\x2e\x4a\xd5\x12\x0c\x45\x41\x80\x82\xe5\x78\x20\x44\x35\x96\xda\x76\xe3\xd1\xb4\x98\x19\xd9\xeb\x18\xe7\x6f\xbf\x1a\x49\xf6\xea\xcb\xce\x92\xbb\xab\xcb\x8b\x4b\x33\xf3\xeb\x8f\xe9\x6e\xf5\x87\xcc\x39\xbf\x63\xb6\xc6\x42\x9a\x04\x77\x18\xcb\x15\x5a\xe3\x1e\x18\xe3\x4c\x89\x14\x02\x96\x50\xbc\x02\x3d\x32\xa0\xd7\x18\x43\x71\xc4\x18\x28\x31\x93\x10\x30\xab\x73\x68\xa0\xd1\xc4\x06\x93\x5e\x74\x52\x83\x33\x96\x68\xca\x50\x55\xb2\x6e\xe8\xc7\x63\x5e\xb1\x88\x49\xcd\xab\x43\xc6\x62\x52\x16\x94\x35\x01\xfb\x72\xdc\x63\xec\xc3\xdb\x52\xcc\xc7\xda\xde\xf4\x1a\xe2\xb7\x56\x68\xfb\x5a\x43\xe8\xcf\x50\xf9\x33\x61\x96\x8c\xc7\x6c\x08\xf1\x92\x98\xf7\x4c\xa1\x45\x61\x49\xbf\x14\x29\x84\x83\xbb\xbe\x71\xa0\x42\x28\x47\xa7\x04\xe3\x19\xc3\xcf\x6a\x74\x7f\x7c\x7f\xcc\xc7\x93\x11\xd2\x68\x85\x6a\x4d\x72\x15\x8c\x27\xf7\x3c\xf6\x23\xf3\xc1\xc6\x25\x85\x8f\x07\x6e\x8e\x72\x54\xec\x0d\x1b\x06\x91\x14\xaf\x4c\x8a\x76\xd9\x36\x4a\x2a\xcc\xaa\xc7\x80\x1b\x81\x96\xcf\x49\xf3\x44\x99\x3f\x32\x7a\xbf\x5d\x3e\xbc\x53\x68\x6f\x4c\xf2\x18\x4c\xac\x31\xb3\x48\x2a\x7c\x2f\xd0\xb2\x39\x69\xf6\xf8\xe5\x5b\x06\xca\x6a\x04\x73\x04\xbe\x17\xca\x9a\xb0\x0a\x06\xae\xc1\x90\x5c\x43\x5b\x6b\xc6\x1e\xc1\x9c\x34\x84\xab\x7c\x06\x12\x6c\xe7\xb8\xeb\x93\x37\x60\x9c\x3f\x42\x52\x7c\x2e\x50\xe6\x1a\xda\x47\x6f\x21\x0e\xbf\xbb\x51\xe4\x6a\x9b\x41\x48\x0a\xcc\x92\x6c\x0d\x9a\x0a\x54\x97\x73\x0b\x7a\x7a\x8d\x36\xac\x19\xa1\xe6\xf4\xd2\xe3\x95\xbf\x37\x4b\x94\xc0\xbe\x61\x7e\x6e\x74\xb1\xbf\xd0\x90\xb1\xe1\xaf\x1f\x7e\xfd\xf6\x43\x60\x32\x11\x43\xf0\xf1\xe3\xb0\xf4\x66\x79\xdd\x22\xe8\x9c\x83\x13\x58\xfb\x2a\x97\xf2\x9f\x2c\x21\x66\x24\x40\xc6\x26\xee\x59\xc1\xf0\xe6\xa6\xcf\x94\xb1\x42\xca\xfa\x4d\x3f\xe7\xa8\x21\x79\xb4\xed\x35\xcf\xc1\xc5\xfd\xa6\xfb\xcf\xbd\xfb\xbc\xe4\xdb\x72\xa8\xce\x62\x6e\xac\xb0\x5d\x4f\x76\x5d\x35\x55\x6b\xd4\xa4\x52\x50\xf6\x09\x4a\x08\x0b\xd3\x38\x75\xb5\x02\x0b\xc6\x3f\x68\x0e\x6a\xdd\xb5\xfd\xf1\x85\x4b\x57\x09\x6a\xf7\x16\xf9\x6b\xa1\x7d\x89\xb3\x03\x9d\xbf\x26\x99\xa7\x90\xc9\x7c\x81\xca\xdc\x8a\x43\x4b\x81\x54\x28\x9c\x83\xb1\xa7\x88\x0f\x9e\x3e\xbc\xf3\x5e\xe9\xf2\x18\xb4\xc5\x39\xc6\xc2\x02\x17\xb9\x5d\x92\x46\xbb\xe5\x89\xb0\x62\xd8\x11\xe1\x1e\x5d\x18\xe0\x82\x7d\x61\x62\xb3\x62\xc3\x5d\xa6\x51\x59\x36\xb8\xbf\x1f\xb2\x2f\x6c\x26\x0c\x3c\x7c\xc0\x78\x72\x48\x04\x35\xda\x58\x8c\x62\x6d\xbd\x13\xca\xb5\xc1\x85\x90\x5c\x03\xaf\xcc\xc3\xe3\x85\xa6\x3c\xe3\x89\xc6\x35\xe8\x7e\x26\xbc\x4c\xc7\x4c\xa7\x8c\xcf\x0f\x91\xd4\x0f\x3d\x20\x73\xe5\x94\xfd\xa5\x96\x23\x39\x77\x81\x78\x88\xd1\xd6\x91\xa4\x45\xa5\x41\xf8\x89\x72\xad\x84\xec\x10\x83\xdd\x90\x5e\x85\x4b\x32\x6d\xe2\x0c\x93\xde\x6d\x8d\x6b\x94\xb0\x80\x16\xab\x75\xf1\xa6\x05\xc5\x8f\xde\x74\xce\x9c\xc1\x62\x85\xbe\x02\x3b\x4a\x82\xd6\x52\x53\x2f\xfe\xc6\xc0\x41\x7b\x7d\x82\x22\x15\xf1\x12\x15\x70\xac\x44\xd4\xd6\x3d\x14\x2e\x9c\x53\x4a\x72\xe9\x04\xd4\x17\x3d\x58\x9d\xab\xa0\xf8\xe9\xb9\x9b\xd9\x9a\xa0\xf8\xe9\x39\xa3\xcc\x16\x17\x9d\xa1\x0a\x1a\x8b\x1e\x19\x2e\xe2\x9d\x1a\x64\xb8\x06\x09\xc2\x40\x79\x8b\xda\xba\x87\xea\xf0\x62\xc6\x42\x62\x4c\x41\x7b\x7d\x8e\x42\x61\xd0\x58\xf4\xe8\x7f\x38\x2e\x23\x30\x68\xaf\x4f\x51\xd0\xc2\xcf\x28\x31\x41\x73\xd5\x46\xf3\x94\x72\x65\x99\x75\x45\x62\x86\x2a\xb9\x30\x94\xeb\x18\x42\x3f\x55\xf6\xc2\x0a\xbd\x00\x5b\x3e\xbb\x43\x9e\x69\xca\xc4\x42\x14\xf9\x51\x9b\xa5\xd0\xed\x10\x3c\xc9\xae\x95\xbb\x8e\xac\xdb\xfb\xb7\x12\x33\x18\xec\x9e\xbf\x7b\x34\x7d\x31\xbd\x8a\x9e\xfd\x7c\xf9\x74\x1a\xbd\x7b\xf3\x62\x1f\x74\x76\xaf\x2e\x9f\xee\x5b\xea\x09\x45\x6a\x9b\x52\x6e\x8a\xc4\x15\xce\x85\x34\xd0\x86\xe4\x76\x09\xca\xba\xf4\x86\xa4\xb8\xa5\x15\x28\xbe\x81\xd9\x92\x68\xd5\x03\x25\x8d\xbf\x95\xc8\x94\x12\x08\xdf\xf7\x02\x63\x89\xa0\x2c\x8f\x05\x9f\xf7\x15\x82\x32\xd1\x75\x68\x72\x63\x41\x47\x89\x32\xe1\x60\x57\x5b\x45\x55\xe5\x89\x30\x6b\x5f\xef\x88\x22\x57\xde\xeb\x64\xc5\x46\x64\xf2\xf9\x1c\xaf\x3b\x54\x0a\xb9\x4b\x9f\x3c\x41\x1d\x36\xf3\x42\x1b\x59\x24\xd9\x93\x85\xac\x4a\xf4\x4d\x1a\xb8\x46\xcb\x49\x71\xd7\xba\xf1\xaa\x06\x23\xa9\x06\xea\x6f\xbb\xdf\x19\xce\xab\xa2\x1d\x59\x69\xa2\x19\x91\x35\x56\x8b\x8c\xfd\xbe\x6f\xb0\xbb\x29\x28\x9d\xe0\xa9\x17\x9b\xa6\x0e\x47\x6e\x0d\xf2\xd3\xa5\xaa\x49\xad\xc9\xba\x52\x57\x2b\x7b\xa6\xa3\x3d\xb8\x40\x3a\xa3\xea\xed\x64\x15\x9c\x54\x82\xf3\x36\xab\xc2\x78\x65\xec\xb8\x4b\xeb\x5c\xf9\x6e\xeb\x68\x79\xb7\xe8\xaf\x2b\xbc\xec\x0f\xc2\x58\x61\x1b\x40\x09\x70\x29\x66\x20\x4d\x38\x18\xec\x5e\xbe\x7a\x3c\x8d\x5e\x5c\x3e\x9a\xbe\x78\xdb\x0e\x90\x8c\x12\x7e\xe8\x15\x78\x26\xec\xb2\x73\x9f\x63\x27\xd1\x36\x1d\x88\x84\x93\x92\x5b\x9e\x91\xb6\xe1\xb8\x73\xbc\x40\x17\x9f\x7c\x83\x76\xc9\xad\x40\xd7\x62\x1d\x74\xb9\xba\x7c\xf6\xf2\xaa\xa3\x4b\xd9\xf4\x54\xb7\x2a\x23\xf6\x2b\xfb\xa2\x43\x29\x97\xb4\x30\xa7\xcb\x3e\x65\x07\x9c\xb1\x94\x9d\x04\xbd\x26\x73\x64\xa8\xd3\x0e\xec\xd0\xad\x0b\xb9\x11\x5b\xd3\xdb\xa9\x9f\xe9\x80\x5d\xcb\x59\xf4\xbf\x69\x2e\x2d\xf2\xdc\x80\x1e\x95\x89\xb3\x39\x53\x3a\x91\x50\xf8\xf3\x7f\x32\xe3\xa0\x5a\x30\x4b\x95\x18\xf6\xfc\xe8\x75\xe6\x24\x32\x52\xcc\x2c\x73\x9b\xd0\x46\xfd\xa5\xc6\x96\x9e\x33\xca\x3a\x81\x5b\xb3\xdd\x9f\x73\x84\xb1\xa4\xc5\x02\xdc\xe4\xed\xde\xcf\xe3\xb8\xef\x5e\x93\xe0\x4c\x3b\x5c\xf1\x2e\x68\x8a\x21\x31\x60\x9a\x8e\x57\x75\xb5\x24\x60\xe3\x87\x0f\x1e\xb4\xdd\x76\xd4\x09\x95\x44\x05\xcd\x11\x7e\xb0\xbb\x11\xb0\xff\x43\x45\x9a\xb3\xc7\x7f\x57\x93\x4e\x7d\x0e\x3f\xe7\x62\x3b\x42\xf2\xab\xe9\xdf\x6f\xbf\x2a\x6d\x9a\xab\xcb\xa7\xe1\x7a\x32\xba\x3f\x19\x4d\x6a\x98\x5a\x96\x0a\xbd\xc1\xee\x13\xa1\xba\xeb\x5d\x78\x17\xec\x83\x1b\xc4\x57\x17\x6c\xcd\x50\x15\x81\x19\x95\xa9\x8d\x05\xcc\x1b\xec\x56\xfb\x70\xb0\x5b\xef\xbd\x8f\xf7\xf6\x5e\x9b\x5b\x99\x67\xce\x70\x2b\xf3\xd2\x09\x46\x0d\x03\x9b\xad\x89\xad\x1c\x25\x7e\x2a\xae\x8b\x28\xe1\x1b\x61\xe3\x25\x98\xfa\xf7\x97\x13\x86\xbe\x9d\x5d\xe7\x66\x84\x8a\x2c\xce\xb7\xa3\x54\x5c\x47\x4e\x46\x54\xc9\x08\x27\x0f\x27\xdf\x3f\x38\xeb\xf5\xdb\x0d\x49\xe7\x23\xe1\x1f\x5f\x19\x09\xdf\x7e\x73\x9c\x21\x6b\xbb\x06\x2c\xe3\x50\xdb\x70\x95\xc2\x15\x8a\xea\x0b\x59\x54\x2a\x16\x55\xb3\x93\x37\xb8\x5b\x25\x59\x54\x73\x72\x59\x7b\xb8\xdb\x8d\x7e\x2a\x30\x8f\x0b\xc8\x7e\x3f\xbc\x57\x77\x6d\x2c\x2c\xfb\xe1\x87\xe9\xab\x27\xec\xc7\xf3\xed\x4a\x8d\x46\x64\xf8\x2f\xd0\x06\x49\xdd\x7c\x56\x28\x41\xa3\xd5\xf7\xc6\x05\xef\x7a\x32\x03\x2b\xea\x01\xb9\x42\x95\x04\xac\xfa\x58\xf0\x53\x65\xdf\xa2\x21\xac\x2b\x53\x53\xd4\x85\xd1\x60\xd7\x77\xcb\x46\x68\x56\x2d\x51\x9c\xe5\x51\x2a\x94\x58\x80\x8e\x32\x92\x18\x6f\x59\x18\x32\xcf\x58\x61\x31\xf6\x9a\x6d\x42\x9c\xe5\x3f\x97\xd0\xd7\x05\x32\x60\x83\x5d\x97\xbe\x4e\x51\x7a\xf9\x0d\xb8\xaa\x01\x49\x50\x3b\x29\xb8\x39\x06\x25\x24\xd2\x15\x26\x8a\xb3\xbc\xce\xc1\x99\xe9\x2c\xbd\x03\x9c\xa4\x3e\xd1\xef\x4c\x5f\x3d\x39\x1b\xc6\xdd\xa4\xfd\x7f\x09\x59\xb8\x86\x98\xd5\xbe\x0b\xfc\xd2\xb8\xff\x99\xc9\xfe\xcf\xcc\xd7\xcd\x59\xb0\x8a\xce\xa0\xb3\xd1\xa5\xe2\xa0\xac\xde\x66\x84\xca\x96\x5f\x74\x24\xc5\x42\x16\x17\x2c\x8a\x85\x95\x2d\x8a\x13\x89\x3a\xa8\x92\x71\x0b\x7d\xeb\xd6\xfd\x2b\x9a\xf7\xaa\xd3\x28\xda\x8b\xc1\x5d\x67\x3e\xd7\xe8\xdc\xeb\xc8\xed\x36\xdd\xb7\x6f\xbb\x6f\x27\xa3\x8a\xce\x9e\x5a\x5a\xfa\xdd\x4f\x04\xa4\xa4\x46\x9f\xcc\xf1\x7d\x3f\x1f\x8a\xdf\x8d\xc7\x5f\x15\x8a\xbb\x86\x42\x9e\xc4\x35\x70\x0d\xae\xe9\x00\xaf\xec\xeb\x2e\x5a\x08\x5a\x70\xca\xac\xf1\x82\x16\x2d\x63\x9e\xab\x4a\x06\x7f\x73\x94\xde\x64\x3c\x4e\xbd\x8b\x3e\x84\xbb\x80\x43\xfc\xdd\x6b\x9c\xd6\xcd\xbc\xbf\x93\x09\x63\x36\xe5\x9f\x1c\x06\x74\xeb\x4f\x8e\x98\x8e\xed\x9d\x31\xcb\xe8\x30\x26\x43\x12\xad\x60\x6b\x8a\xac\x62\x96\xc5\xf3\xfe\xce\xbf\x03\x00\x00\xff\xff\xd2\xf0\xb6\x4c\x33\x19\x00\x00"), }, "/terraform-modules/aws/flatcar-linux/kubernetes/workers/ingress.tf": &vfsgen۰CompressedFileInfo{ name: "ingress.tf", @@ -7020,9 +7020,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/aws/flatcar-linux/kubernetes/workers/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4214, + uncompressedSize: 4743, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x97\xdf\x6f\x13\x39\x10\xc7\xdf\xf3\x57\x8c\xc2\x03\x45\x6a\xb7\xe9\x0f\xa1\x03\xd1\x87\xfe\xd2\x51\x5d\x69\x7b\xa4\xdc\x3d\x9c\x4e\x8b\xd7\x9e\x6c\x46\x75\x6c\xe3\xb1\x53\x02\xe2\x7f\x3f\x79\x77\xd3\xa6\x89\x43\x29\x07\x2f\x54\xbb\x9e\xf9\x7c\x3d\x3b\xfe\x7a\x32\x15\x9e\x44\xa5\x11\xfa\x52\x47\x0e\xe8\x4b\x23\x26\xd8\x87\xaf\x3d\x80\x30\x73\x08\xdd\xbf\x03\xe0\xe0\xc9\xd4\x3d\x00\x85\x2c\x3d\xb9\x40\xd6\xc0\x01\xf4\x8f\xdb\x38\x48\x71\xb0\xe1\x3c\x3a\x34\x0a\x15\x04\x0b\xce\x5a\xdd\x3c\x7f\xd1\xef\x7d\xeb\xf5\xee\x59\xe9\xc5\x93\x41\x1f\x0c\x7d\x8a\xd8\x72\x46\xd6\x43\x18\x23\xdc\x5a\x7f\x83\xbe\x01\x35\x88\x67\x70\xf8\xf7\x70\x91\x34\x75\xb2\x24\xf5\x14\xcc\xbb\xc8\x01\x2a\x04\xc6\x90\xf6\xf0\xb1\xcd\xf0\x11\x6c\x0c\x2e\x06\xa8\x66\xd0\x55\x6a\x69\x4f\x1c\x2b\x83\xa1\x24\xc5\x39\x9a\x26\x0e\x1b\x2d\xf2\xc5\xe3\xcc\xfb\x5c\x3f\xc0\x45\x19\x3d\x85\x59\x59\x7b\x1b\xdd\x2f\x80\xb7\x35\x2d\x97\xf2\xae\x13\xf2\x0c\xc8\x70\x10\x46\x22\x2f\xaa\xea\x92\x48\x1b\x4d\xc8\x49\x32\x71\x52\xa1\x6f\xc4\x8c\x44\xd4\xa1\x7b\xbc\xb3\x2a\xef\xa2\x59\x09\x76\x74\x0f\x5a\xaa\xc0\xfc\x79\x99\x10\x8f\x7c\xea\x45\x58\x3f\xec\x15\x3c\x11\x5a\xf7\x57\xa9\xa7\xc7\xbb\x77\xbc\x26\xdb\x12\x53\x8b\x0a\x75\xb6\xd8\x13\xe1\xbe\x53\x6b\xe1\xd2\x4e\x64\xe4\x60\x27\xd0\x26\x69\x9a\xb9\x6b\x64\x63\x15\x72\xd1\x5f\x91\xfa\xf5\xdb\x43\x7c\x10\x64\xc2\x0f\xe1\x97\xb2\x3c\xa2\xa8\xcd\x9b\x53\xf4\x00\x6f\xb9\x94\x63\x61\x0c\xea\xa7\x94\x9b\x43\x8a\xce\x14\xfb\xf0\xdd\x19\x74\xf9\xee\x4e\xf6\xe5\x10\x36\xda\x80\x4d\xa8\x30\x88\x4d\x10\xda\x8d\xc5\x26\xa0\xaa\x57\xfc\xc4\x72\x39\x45\xcf\x64\xcd\x53\xf4\xc8\xe8\x3d\x9a\x90\x11\xf4\x57\x9b\x2c\x15\x66\xae\xa5\x5b\x0c\xd6\xa7\xde\x45\x4f\x12\x3a\x24\x70\x94\x63\x10\x0c\xbb\xbb\x2f\x77\x8a\x57\xaf\x8a\xc1\xb2\x3c\x45\x7c\x53\x32\x7d\xc9\x36\xe7\x9a\x93\xb0\x3f\x58\x95\x35\xa4\x2f\x38\xd7\x74\x7a\x34\x84\xa9\xd5\x71\x82\x40\x06\x7e\x3f\xca\x21\x9f\x7a\x1e\x6a\xb7\x9b\x29\xc6\x75\x8a\x5d\xa5\x6e\x60\x51\x17\x90\x4e\x88\x12\x5e\x6d\x42\xed\x76\x37\x81\xec\x4e\x76\xf3\x64\xf3\xce\xb4\x66\xf3\x99\xbd\x9f\x5d\x5e\x0d\x73\x2a\x3c\x7e\x8a\xe4\x51\x35\x8d\x93\xc1\xb3\xb3\xa1\x74\x9e\xe4\x93\x2a\x91\x29\xc3\xd0\xd9\x00\x4d\xa2\x54\xf0\x0f\xc3\x93\x86\x28\x62\xb0\x2c\x85\x26\x53\x43\x63\x94\x90\x80\xf7\x56\x55\xc0\x39\x8a\x29\xa6\xf6\x98\x23\x70\xe2\xc2\xac\x23\xaf\xc9\x11\x2c\x44\x46\xb0\x66\x4b\xe1\x44\x18\xb5\x98\xef\xc2\x06\xdc\x04\xbe\xa5\x20\xc7\x29\x82\xcc\x96\xd3\x42\x22\x8c\xbc\x9d\xb4\xf4\x60\x17\x43\x19\x4c\x52\x6e\x99\xa9\xd2\xf8\x1a\xc6\x21\x38\x7e\xbd\xbd\x5d\x53\x18\xc7\xaa\x90\x76\xb2\x1d\xd0\x7b\x31\xb2\x7e\xb2\xe5\xbc\x9d\x92\x42\xcf\x99\x67\x5b\xe2\x96\xb7\x89\x39\x22\x6f\xef\xef\xed\x0e\xfa\xcb\x9e\xe4\x6b\x0c\x3f\x7d\x0d\x1d\x2a\x45\xe9\x6f\xa1\xa1\xcd\xd4\xd5\xe2\xf0\xfd\x05\xa7\x1d\xdd\x8e\x49\x8e\xef\x0b\x01\x3c\xb6\x51\xab\x74\x71\x09\xa5\x50\xad\x7a\xe6\x3f\xff\x3e\xd4\x27\xb5\x2c\xd9\x90\x73\x98\x77\xce\xef\xcb\x3b\xb6\x26\x99\x23\x7a\x38\x27\x13\x3f\xc3\xb1\x35\x23\xaa\xe1\x2e\xe1\xa3\xf8\x20\xea\x45\x6c\xeb\xd4\xc2\xcc\x16\x6d\xfa\xa0\x79\x0f\xc9\x95\x8d\xa8\x51\x1d\xcd\xfa\x89\x7d\x6e\x6f\xec\xc4\x06\x9a\x36\xe6\x09\xd0\x3f\xf6\x28\xc2\xdd\xeb\x0f\x86\x1d\x4a\x1a\x51\x5b\x85\x8c\xc9\x5f\xba\xae\xb2\x0a\x83\x20\xdd\xd4\x33\x88\x1a\xac\x49\xf3\x12\x78\x64\x1b\xfd\xfc\x62\x7d\x06\xb2\xd9\x5b\xf4\x22\x45\x2d\xee\xe1\x26\x56\xd8\xbe\xfc\x3f\x13\xd5\x7d\x96\xc7\xa7\x1b\x29\x4a\x89\xbe\x1b\x21\x96\xf2\xfe\x11\x2b\xf4\x06\x03\x32\x1c\x1f\x42\x5a\x46\x23\x92\x22\x20\x18\xc4\x34\x82\x92\x69\xec\xe2\x9e\x07\x23\xd2\xd8\x5c\xaf\x59\xe5\x0f\xc8\xc2\x11\xa3\x9f\xa2\xcf\xb2\x0f\xe7\x6f\x93\x25\x4c\x13\x13\x8d\x72\x96\x4c\xf8\x25\x70\xe6\x71\x79\x83\xb3\x9f\xe8\xd3\xe1\xf0\x2d\xb8\x58\x69\x92\x90\x12\x34\x06\x13\x19\x3d\x3c\x97\xd6\xe3\xf3\x95\xe1\xd1\x4f\x49\x62\x29\x49\x65\xf7\xf9\xe6\xcd\xe9\xe5\x49\xef\xf8\xec\xe4\x3d\x9c\x5d\x4d\xf7\xc1\x0b\x53\x63\xfa\x88\x82\x99\x6a\x03\x0b\x9f\xa0\x4b\xc5\x45\xef\x7a\x8c\xb0\xc3\x01\xce\xae\xe0\x96\xb4\x4e\x9f\xde\x63\x53\xad\xd6\xa5\x53\x49\xca\xbb\xf2\x6e\x36\x65\xda\x19\x84\xf1\xda\x80\xa4\x5c\x19\x2e\x7a\x49\x4c\x6f\xa1\x20\x19\x03\x3f\x80\xfe\xce\xa0\xd8\x2b\x06\xc5\x60\x7b\xe7\xe5\x72\x37\x75\xbf\x71\x94\x9d\x08\x32\x25\xc7\xd1\x88\x3e\x67\xbf\xef\x9f\x11\x3d\x61\x5b\xbe\x76\x35\xc3\x2d\x85\x71\x23\xb6\x8d\xbb\xd3\x2a\x0c\xdf\x62\xba\x82\x52\x17\x77\x52\xe1\xa4\xd3\x43\x3c\xef\xec\x42\x5b\x29\x74\x77\x6f\x8e\xac\x2d\x3a\xc9\x05\x4f\x65\xf1\x60\xcd\x0b\x58\xdb\x25\xab\x43\xcc\x62\xe0\xf2\x90\x5a\x95\xc2\x9b\x7c\xff\xbe\xbf\x98\xdf\xa6\xda\x0a\x05\x95\xd0\xc9\x56\x7d\xb2\x84\xd6\x69\x83\x05\xd9\xd8\x4c\xd3\x70\x68\xd0\x73\x37\x9c\x11\xaf\xfc\xee\x7a\xc0\x4c\x17\x4c\xe9\xec\x9a\x53\x7b\x65\x7d\xc8\x70\x3b\x3b\x6f\x59\x49\x45\x62\xbd\xbd\xbe\xbe\x4a\x6e\x64\x50\xa6\x70\x5e\x2d\xcb\x9a\x01\xe2\xb7\x41\x56\x15\xff\x3a\x59\xc3\x9f\xd2\xb5\xbf\xbf\xf7\x50\x18\x9a\xf4\x7f\x19\x34\x97\x95\xb5\x81\x83\x17\x2e\xab\xef\xb4\x59\x08\xd7\xe7\x43\x38\x9a\x2f\x6c\xc4\xa4\x23\xa8\x31\x64\x8c\xa5\xb2\x56\x67\x69\x92\x29\xcb\x18\x62\x80\xe8\xe0\xec\xf0\x1d\x78\xab\xd3\x21\x5c\x98\xad\xd4\xcc\x88\x49\x9a\x7a\x9b\xc1\x8b\xa1\x99\x0a\xd2\xfc\x4b\xa6\x5e\x07\x5f\xde\xfe\x48\x68\xc6\xde\xb7\xde\x7f\x01\x00\x00\xff\xff\x5c\x1e\x8f\xd1\x76\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5f\x53\xdb\xba\x13\x7d\xcf\xa7\xd8\x49\x1f\x4a\x67\x82\x49\x80\x5f\xe7\xd7\x4e\x79\x80\xc0\xdc\x32\x97\x02\xb7\x81\xdb\x87\x3b\x77\x8c\x2c\x6f\x6c\x4d\x64\x49\xd5\x4a\xa1\x69\xa7\xdf\xfd\x8e\x6c\x87\xfc\x53\x0a\xb4\xe5\x05\xc6\x96\xf6\x9c\x3d\x5a\x9d\x5d\x33\x65\x56\xb0\x4c\x22\x74\xb9\xf4\xe4\xd0\xa6\x8a\x55\xd8\x85\x6f\x1d\x00\x37\x33\x08\xed\xcf\x11\x90\xb3\x42\x15\x1d\x80\x1c\x89\x5b\x61\x9c\xd0\x0a\x8e\xa0\x3b\x6c\xf6\x41\xd8\x07\x3b\xc6\xa2\x41\x95\x63\x0e\x4e\x83\xd1\x5a\xd6\xcf\x5f\x75\x3b\xdf\x3b\x9d\x05\x56\x78\xf1\x6c\xa0\x5b\x25\x3e\x7b\x6c\x70\xc6\xda\x82\x2b\x11\xee\xb5\x9d\xa0\xad\x81\x6a\x88\x17\x70\xfc\x69\xb4\x8c\x34\x35\x3c\x15\xf9\x73\x60\x3e\x78\x72\x90\x21\x10\xba\x90\xc3\x5d\x13\xe1\x0e\xb4\x77\xc6\x3b\xc8\x66\xd0\x2a\xb5\x96\x13\xf9\x4c\xa1\x4b\x45\x4e\x31\x34\x29\xc8\xed\x34\x90\xaf\x1e\xc7\x5c\xc4\x7a\x02\x2e\x72\x6f\x85\x9b\xa5\x85\xd5\xde\xfc\x06\xf0\x46\xd3\x74\x2d\xee\x36\x22\x2f\x40\x28\x72\x4c\x71\xa4\x65\x56\x6d\x10\xae\xbd\x72\x31\x4a\xca\x57\x19\xda\x9a\xcc\x98\x79\xe9\xda\xc7\x83\x4d\x7a\x97\xf5\x4a\xd0\xe3\x05\xd0\x9a\x02\xf3\xe7\x69\x80\x78\xe4\xa8\x97\xc1\xba\xee\x20\xa1\x8a\x49\xd9\xdd\x44\x3d\x1b\xee\x3f\xe0\xd5\xd1\xd6\x30\x25\xcb\x50\x46\xc5\xae\x98\xf9\x81\xd6\xcc\x84\x4c\xb8\x27\xa7\x2b\x68\x82\xd4\xc5\xdc\x16\xb2\xd2\x39\x52\xd2\xdd\xa0\xfa\xed\xfb\x2a\xbc\x63\x42\xb9\x27\xc1\xaf\x45\x79\x84\x51\x13\x37\xc6\x68\x05\x5e\x53\xca\x4b\xa6\x14\xca\xe7\xc8\x4d\x2e\xec\x8e\x88\x7d\xfc\xe1\x1c\xda\x78\x0f\x37\xfb\x6a\x04\x3b\xcd\x86\x1e\x64\xe8\x58\x0f\x98\x34\x25\xeb\x01\xe6\xc5\x86\x9f\x68\x4a\xa7\x68\x49\x68\xf5\x1c\x3e\xdc\x5b\x8b\xca\x45\x08\xfd\xdd\x04\x0b\xc2\xcc\xb9\xb4\x8b\x41\xdb\x50\xbb\x68\x05\x87\x16\x12\xc8\xf3\x12\x18\xc1\xfe\xfe\xeb\x41\xf2\xe6\x4d\xd2\x5f\xa7\x97\x0b\x9a\xa4\x24\xbe\x46\x8b\x73\xcb\x4d\x38\xec\x6f\xd2\x1a\x89\xaf\x38\xe7\x74\x76\x32\x82\xa9\x96\xbe\x42\x10\x0a\xfe\x38\x89\x41\x3e\xf7\x3e\x14\x66\x3f\x22\xc6\x4d\xd8\xbb\x89\xba\x83\x49\x91\x40\xb8\x21\x39\xb3\x79\x0f\x0a\xb3\xdf\x03\xa1\x07\xd1\xe4\x85\x8e\x3b\xd3\x96\xe4\x23\xb9\x9f\x5f\x5d\x8f\x62\x2c\x2c\x7e\xf6\xc2\x62\x5e\x17\x4e\x04\x9e\x8c\x76\xa9\xb1\x82\x3f\x4b\x89\x88\x0c\x23\xa3\x1d\xd4\x81\x82\xe0\xb7\xa3\xd3\x1a\x91\x79\xa7\x89\x33\x29\x54\x01\xb5\x51\x42\x00\x5c\x58\x55\x02\x17\xc8\xa6\x18\xca\x63\x0e\x81\x95\x71\xb3\x16\x79\x4b\x0c\xa7\xc1\x13\x82\x56\xbb\x39\x56\x4c\xe5\xcb\xf1\x2e\xb5\xc3\x1e\xd0\xbd\x70\xbc\x0c\x3b\x84\xda\x35\x92\x71\x84\xb1\xd5\x55\x83\xee\xf4\xf2\x56\x02\x15\x98\x6b\x22\x91\x49\x7c\x0b\xa5\x73\x86\xde\xee\xed\x15\xc2\x95\x3e\x4b\xb8\xae\xf6\x1c\x5a\xcb\xc6\xda\x56\xbb\xc6\xea\xa9\xc8\xd1\x52\xe4\xd9\x2e\xbb\xa7\x3d\x41\xe4\x91\xf6\x0e\x0f\xf6\xfb\xdd\x75\x4f\xb2\x05\xba\x9f\x6e\x43\xc7\x79\x2e\xc2\xdf\x4c\x42\x13\xa9\xd5\xe2\xf8\xe3\x25\x85\x8c\xee\x4b\xc1\xcb\x85\x10\x40\xa5\xf6\x32\x0f\x8d\x8b\xe5\x39\xe6\x9b\x9e\xf9\xcf\xbf\xab\xfc\xb8\xe4\x29\x29\x61\x0c\xc6\x9d\xf3\xc7\xf4\x86\x5a\x05\x73\x44\x0b\x17\x42\xf9\x2f\x30\xd4\x6a\x2c\x0a\x78\x08\xf8\x28\xbc\x63\xc5\x32\x6c\xe3\xd4\x4c\xcd\x96\x6d\xfa\xa8\x7e\x0f\xc1\x95\x15\x2b\x30\x3f\x99\x75\x03\xf6\x85\x9e\xe8\x4a\x3b\x31\xad\xcd\x13\xa0\x3b\xb4\xc8\xdc\xc3\xeb\x5b\x45\x06\xb9\x18\x8b\x46\x85\x88\xc9\x5f\x99\x56\xd9\x1c\x1d\x13\xb2\xd6\xd3\xb1\x02\xb4\x0a\xf3\x12\x58\x24\xed\xed\xbc\xb1\xbe\x00\x5e\xe7\xe6\x2d\x0b\xbb\x96\x73\x98\xf8\x0c\x9b\x97\xbf\x32\x51\x2d\xa2\x3c\x3e\xdd\x70\x96\x72\xb4\xed\x08\xb1\x16\xf7\x4f\x9f\xa1\x55\xe8\x90\x60\x78\x0c\x61\x99\x18\x0b\xce\x1c\x82\x42\x0c\x23\xa8\x50\xb5\x5d\x2c\xf0\x60\x2c\x24\xd6\xed\x35\xca\x7c\x05\x99\x19\x41\x68\xa7\x68\xa3\xd8\xc7\xf3\xb7\xc1\x12\xa6\x01\x13\x55\x6e\xb4\x50\xee\xb7\x80\x13\x95\xe9\x04\x67\x3f\x51\xa7\xa3\xd1\x7b\x30\x3e\x93\x82\x43\x08\x50\x1b\x8c\x27\xb4\xf0\x92\x6b\x8b\x2f\x37\x86\x47\x3b\x15\x1c\x53\x2e\xf2\x68\x9e\xef\xde\x9d\x5d\x9d\x76\x86\xe7\xa7\x1f\xe1\xfc\x7a\x7a\x08\x96\xa9\x02\xc3\x21\x32\x22\x51\x28\x58\x3a\x82\x36\x14\x25\x9d\x9b\x12\x61\x40\x0e\xce\xaf\xe1\x5e\x48\x19\x8e\xde\x62\xad\x56\xe3\xd2\x41\x92\xf4\x41\xde\x5e\x2d\xd3\xa0\xef\xca\xad\x1b\x02\xf3\x5c\x51\xd2\x09\x64\x3a\x4b\x82\x44\x0c\xfc\x08\xba\x83\x7e\x72\x90\xf4\x93\xfe\xde\xe0\xf5\x7a\x35\xb5\xdf\x38\xb9\xae\x98\x50\x29\xf9\xf1\x58\x7c\x89\x9e\xef\x5f\x1e\xad\xc0\x46\xbe\x66\x35\xc1\xbd\x70\x65\x4d\xb6\xd9\xf7\xc0\x95\x29\xba\xc7\xd0\x82\x42\x15\xb7\x54\xe1\xb4\xe5\x23\x68\x5e\xd9\x89\xd4\x9c\xc9\xb6\x6f\x8e\xb5\x4e\x5a\xca\x09\x4d\x79\xb2\xb2\xe6\x15\x6c\xad\x92\xcd\x21\x66\x79\xe3\xfa\x90\x9a\xa5\xcc\xaa\x78\xfd\x7e\xbc\x9c\x77\x53\xa9\x59\x0e\x19\x93\xc1\x56\x6d\xb0\x84\xc6\x69\x9d\x06\x5e\xdb\x4c\x5d\x70\xa8\xd0\x52\x3b\x9c\x09\xda\xf8\xee\x5a\xc1\x0c\x0d\x26\x35\x7a\xcb\xad\xbd\xd6\xd6\x45\x70\x5b\x3b\x6f\xb0\x02\x8b\x80\xf5\xfe\xe6\xe6\x3a\xb8\x91\x42\x1e\xb6\xd3\xa6\x2c\x5b\x06\x88\xff\xf7\xa3\xac\xe8\xf7\xd1\x1a\xfd\x14\xaf\xc3\xc3\x83\x55\x62\xa8\xc2\xef\xd4\x49\x4a\x33\xad\x1d\x39\xcb\x4c\x94\xdf\x59\xbd\x10\x6e\x2e\x46\x70\x32\x5f\x58\x93\x09\x57\x50\xa2\x8b\x18\x4b\xa6\xb5\x8c\xa2\x71\x12\x51\x8c\x11\x3a\xf0\x06\xce\x8f\x3f\x80\xd5\x32\x5c\xc2\xa5\xd9\x2a\x9f\x29\x56\x85\xa9\xb7\x1e\xbc\x08\xea\xa9\x20\xcc\xbf\x42\x15\xdb\xc0\xd7\xd3\x1f\x33\x49\x18\x28\x2d\xdf\x49\xe3\xd3\xaa\x6e\x77\x36\x35\x5a\x0a\x3e\x8b\x72\x1b\x5e\xdf\x42\xd3\x15\x43\xd9\x85\x65\xf3\x29\x29\xf2\xbf\x80\x04\xae\xdb\x71\x07\xa6\x4c\x7a\xa4\xb7\x70\xa7\xb4\xc2\xbb\x1e\xdc\x91\x63\x4e\xf0\xbb\xc8\x47\x56\x37\x2c\x79\x9a\x3f\xd7\x16\x36\xf7\xa8\x94\x1b\xbf\x95\x73\x30\x04\x5a\xb5\xb3\x40\xf6\x53\x43\x76\xc9\x3f\xb9\xae\x8c\x56\x18\x3e\xbf\xa4\x98\x34\x8d\x43\xa2\xeb\x01\x3a\x1e\x23\x7b\xd0\xef\x57\x4f\x6c\x26\x33\x72\x58\xfd\x12\xdd\x52\x93\x7b\x70\xf8\x86\xdf\xa9\xe6\x93\xe0\xde\x44\x65\xde\x83\x49\x48\x43\x6e\x25\x3b\xf8\xdf\x8f\xd9\xfe\x17\x00\x00\xff\xff\x4b\x4b\xf5\xcb\x87\x12\x00\x00"), }, "/terraform-modules/aws/flatcar-linux/kubernetes/workers/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -7034,9 +7034,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/aws/flatcar-linux/kubernetes/workers/workers.tf": &vfsgen۰CompressedFileInfo{ name: "workers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4584, + uncompressedSize: 4741, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x6d\x8f\xe3\xb6\x11\xfe\xae\x5f\x31\xd0\x05\xe8\x6e\xea\xd5\xbe\x24\x68\x01\x23\xc6\x61\xd1\xa4\xc1\x7d\x48\x2f\xc8\x15\x49\xd1\xc5\x82\xa0\xc9\xb1\xc4\x2c\x45\x0a\xe4\xc8\x8e\xef\xe0\xff\x5e\x0c\x29\xc9\xf6\xae\x7d\x77\x2d\x7a\xfa\xb0\x58\x73\x9e\x79\xe5\xcc\xa3\xd1\x2b\xf8\xcd\x87\x27\x0c\x11\xee\x7b\xf2\xef\x94\xb4\xc6\xd5\xf0\x63\xf0\x7d\x57\x04\x8c\xbe\x0f\x0a\xa1\x94\x9b\x28\x64\x4f\x3e\x66\xb9\xa8\x59\x5e\x42\xb9\xc9\xba\x25\x7c\x28\x00\x9c\x6c\x11\x16\x50\x7e\xf5\x61\x2d\x43\xd5\x79\x6f\x05\x1f\xed\xae\x32\xaa\x2c\x0a\x80\x57\xa0\x7c\xef\xa8\x00\xd0\x18\x4d\x40\x2d\x94\xec\xa4\x32\xb4\x85\xe9\x59\x00\xeb\x67\x25\x31\xc2\x5b\xe3\x44\x34\xef\x11\x5e\x3c\xa7\xe1\xf2\x8f\xcf\x86\xc3\x9f\xe1\x2e\x05\xb4\x92\xbd\x25\xa1\xbc\xb7\xda\x6f\xdc\xa1\xca\x37\x37\x05\x40\x83\xd2\x52\x23\x54\x83\xea\x49\xd4\x41\x2a\x14\x1d\x06\xe3\x75\x06\xa4\xec\x1c\x12\x9b\x2e\x00\xd6\x9d\x12\xef\xbd\x43\x61\x34\x3a\x32\x2b\x83\x61\xf0\x1d\xfb\xa5\x43\x12\x46\xc7\xac\x43\xd8\x76\x56\x12\x16\x00\x56\xf6\x4e\x35\x42\x79\xb7\x32\x75\x1f\x24\x19\xef\x60\x01\x5c\xfe\x53\xa2\x21\x8d\x8a\xcb\x3c\xd8\x92\xa1\x46\x82\x74\x3f\x11\xc8\xc3\xa6\x31\xaa\x01\xe3\x22\x49\xa7\x30\x42\x6c\x7c\x6f\x35\x2c\x11\xa4\xd6\xa8\x0b\x18\x54\xf2\x95\x0a\x19\x5c\x84\x05\xac\xac\x24\x42\x77\xf1\x50\x70\xfe\xc9\xfd\x52\x1c\x02\x07\xcf\x51\x34\x44\x5d\x65\xf4\xec\xb3\x80\x71\x42\x72\x1d\x0e\x61\x91\x8f\x1f\x2f\x39\x09\x6b\x56\xa8\xb6\xca\x62\x6a\x2a\x4e\xca\xaf\x31\x04\xa3\x11\xa8\xc1\xf1\x9a\xb8\x7f\x28\xf8\x2d\x48\xa7\x21\x60\x67\xa5\x42\xe8\x3b\x2d\x09\x61\x89\x8d\x5c\x1b\x1f\x92\xba\x0a\x28\x09\xc5\x12\x57\x3e\xa0\x18\xb5\x16\x40\xa1\xe7\x8a\xef\x72\xdd\x7e\x93\x86\xb8\xf1\x57\x3e\x4c\xc5\xca\xaa\x7c\x03\x1a\xad\xdc\x46\xae\x18\x63\x38\x8a\xfb\x77\x3f\x72\x75\x23\x49\xc2\x0a\xde\xac\xf6\x15\xce\x4d\x2e\xdd\x9f\x88\x8b\x9c\xbd\x6b\xb8\xc0\xaa\xae\x20\x76\x9e\xa0\x0b\x46\x21\x90\xf7\x60\xfd\xe6\x72\x36\x99\xdb\x18\x6b\x59\xc5\x87\xae\x91\x0e\x75\x95\x2c\xbd\x1d\x7e\x31\x24\x02\x46\x25\x3b\x04\x65\x51\xba\xbe\x9b\xed\xfd\xe4\xcc\xf5\x2c\x95\xe3\x09\xb1\x83\xa5\xc9\xd1\x9a\x55\x76\x6b\x72\x64\x7d\x44\x5d\xc1\xf7\x26\xca\xa5\x45\xd8\x48\x43\x9c\x87\x5c\x7b\xa3\xc1\xc4\xd8\x63\x4c\x26\xa4\x35\xb5\x83\x8d\xa1\x06\x3c\x35\x18\x40\x59\xdf\xeb\xc8\x31\xb1\x8e\x58\xf9\x30\x4d\xae\x20\xd3\xa2\xef\x89\x67\xff\x26\x4d\x39\xc9\xfa\x65\x17\xe5\xbf\x30\xdc\x2a\x3f\x4f\xb8\x3d\x31\x9e\xe5\x3f\x64\x8b\xe5\x04\x5a\x4b\xdb\x3f\x1f\xe3\x89\x64\x94\xed\x23\x61\x18\x78\xe6\x2c\xf1\x8c\x7a\x5d\xf0\x9d\xac\xb9\x1d\x24\x0d\x03\xb5\xef\x04\x7e\x76\xb9\x3b\x1f\x67\x47\x11\x73\x53\x90\xac\xc1\x38\x0e\x39\x5e\xe4\xe6\xad\xe3\x25\xcc\x3f\x33\x27\xd6\x5e\x8c\xa9\xc1\x6b\x28\xff\x75\x95\xff\x9d\xb3\xe8\x13\xb9\x8e\xee\x1e\x48\xd6\x8f\xff\x45\x2e\xfb\x54\x1e\x2f\x8b\x5d\x51\xbc\x82\x37\xf7\x3f\xc1\xcf\xde\x1a\xb5\xad\x9e\x91\xbb\x91\xad\x18\x5b\x58\x74\xc1\xaf\x8c\xc5\x12\x4a\x15\x8d\xd0\xc1\xac\x31\x64\x8a\xcf\x7c\x99\x43\x42\xc7\x2d\x24\x54\x34\xf0\x1a\x6e\x61\x0e\xcc\x91\xc1\x5b\xe4\x98\x7f\xf7\xc6\x5d\x94\xe5\x0c\x46\xe3\x2c\xa8\xf6\xe6\xaa\xaf\x13\x69\xa5\xb8\x5e\x46\xc2\x60\xd1\xa5\x40\xbf\x70\x10\x46\x27\xce\xc9\xbe\x60\x01\xdf\x7d\x77\xf5\xc3\xdb\xbf\x17\xe3\x8d\x96\xbf\x62\x88\xc6\xbb\x72\x0e\xe5\xdd\xcd\xed\xdd\xd5\xed\xcd\xd5\xed\x5f\xcb\xdc\x1e\xe5\x3b\x9e\xfe\x16\x1d\x95\xf3\x13\xdd\x5d\xde\x2b\xca\xaa\x0f\xc5\xfe\x3a\x4b\x54\x77\xf3\x7b\x22\xa9\x9a\x5f\xbd\xed\x5b\x1c\x8c\x1d\x48\xff\x96\x38\xe3\x9d\x93\x5d\x6c\x3c\x9d\x93\xff\x53\xd6\xf1\x9c\xec\x9c\xe5\xef\xd1\xe2\xc7\x2c\x67\xf9\x69\xcb\x59\x76\xde\x72\x54\xc1\x2c\xf1\x7e\x2d\x8d\x95\x4b\x63\x0d\x6d\xff\xed\x1d\x9e\x34\x94\xa1\x6f\x46\xc6\x3c\x0f\x19\x23\xfd\x08\xe4\x5c\xb0\x59\x9a\xc3\xfd\x34\xe0\x27\xaf\xcd\xca\xa8\xc4\xf6\x27\xd1\x1f\xbb\xaf\xa4\xbc\x1d\xa4\x93\xf0\x71\x8f\x2b\x7f\x58\xad\x50\x71\x97\x94\xf7\xd6\xfa\xcd\x81\x89\xf2\x97\xa1\xf9\x59\xf8\x75\x79\x3c\xba\x45\xfe\x8f\x1b\xf2\xec\x98\xfc\x2f\xf3\xd1\x49\x6a\x12\x89\x5e\x97\x23\x59\x1f\xd0\x0c\xcf\x83\x8c\xb1\x6f\xf1\x70\x0e\xff\x1f\xb3\x71\x38\x1d\x70\x34\x21\x65\xa4\x38\xbf\x4f\x4e\x7f\xe1\xa4\x66\xc7\xb8\x9f\x83\x71\xca\x74\xd2\x96\xf3\x67\x26\x92\x2b\x0c\x6b\x93\x2b\x88\xea\xae\x92\xad\x7c\xef\x9d\xdc\xc4\x4a\xf9\xb6\x3c\x42\xef\x9e\xd9\x3d\x7f\x2f\xd9\xb0\xd1\x2c\xdb\xdb\x38\x79\x2f\xe3\x06\xbd\xdf\xe3\x8e\x6f\xea\xd4\xe2\x36\xad\xce\xfb\xcd\x59\x74\x01\x57\xe6\x8f\xc1\xd3\xe7\xbe\xe1\x38\x36\xd3\xca\x9a\xd7\xcc\x7d\xe4\x0b\xd0\x92\x64\x95\xb6\xf6\xd6\x54\xfc\x1e\x56\x32\x54\x23\x90\x75\x46\xae\xa7\x6d\x87\x83\x0e\x9b\x3e\x3a\x2f\x20\xad\x0e\x22\x6f\x2c\x93\xed\xb4\xc3\x4e\xe7\x05\xc0\xd0\x64\xad\x77\x86\x7c\xe0\xa5\x63\x01\x2b\x69\x63\xda\x49\xfb\x88\x41\x70\x38\x63\x54\x8a\x86\x5a\x0c\xab\xe1\x95\xa9\x9d\x49\xdb\x6c\x40\xa7\x31\xa0\xce\x2b\x59\x24\x1f\x64\x8d\x89\xcf\x3d\x89\xa5\xf5\xea\x49\x68\xe4\xab\x1e\x9a\x60\x9d\x46\x2e\xa7\x90\xc3\xd2\x26\x3e\x8d\xa1\x4f\xf2\xf4\x1d\x70\x20\xe7\xdf\x49\x6e\x7c\x17\x8f\xd3\x4a\x72\x3e\x4e\x72\x74\x2a\x6c\x3b\x5e\xdf\xe0\xc5\xc2\xb8\x5f\xf4\x23\xaa\x3e\xf0\x1a\x34\x2c\xdd\x43\x81\x8e\x4f\x4f\x2d\xb6\xd7\xd7\xf0\xf6\x0b\x6e\xb6\x00\xa6\x76\x2c\x51\x8d\x74\x35\x1e\x64\xfa\x30\x36\xc2\xe3\x98\xcf\xa9\xd7\xff\xa9\x17\xe8\x73\xcc\x99\x37\xfa\x34\x12\x6f\x86\xab\x85\x7c\xe3\x45\xea\x83\x72\xea\x80\x69\x0c\xa6\x1e\x18\x19\xcc\x11\x26\x0e\x1b\x67\x8a\x9d\x5d\x94\x5f\x7d\x60\xea\xaa\x5a\xaf\x7b\x8b\xbb\x6b\x65\xaf\x87\x0f\xa0\xad\x6c\x6d\x45\x6d\x67\xcb\xd9\x50\xdc\xa7\x7e\x89\xd9\xc9\x31\x13\x92\x8d\x62\xe9\x3d\x45\x0a\xb2\x83\xd7\x60\x1c\x7f\x9e\x5d\xdc\xde\xcc\x3e\xe9\x6b\x52\xbb\xda\x1b\x3f\xe1\x19\x80\xfc\x13\xba\x71\x20\x17\x10\xa4\xd3\xbe\x15\x91\x78\x34\xaa\xc9\x8a\x18\x61\x0f\x37\x8f\x55\xc0\xd8\x5b\x3a\xd2\x8f\xa8\x02\xd2\x27\xf5\x33\xec\x85\x0d\x25\x85\xc2\x40\x87\xcd\x3d\x1c\x0d\x80\x88\x61\x8d\x61\x4f\x37\xe9\xfb\x6c\x7e\x7d\x9d\x29\x46\x76\x26\x03\x76\xf3\xbf\x7c\xfb\xed\x37\x99\x02\x77\x97\x97\x30\x3f\xac\x18\x23\xf7\xb5\x48\x9b\x14\x40\x8c\x8d\xe0\x35\xf9\x19\x4d\x2f\xe0\xf7\xe8\x1d\x3a\xe5\x35\xa6\x0d\x7a\xc4\x5d\xe6\x66\x1e\x78\x4e\xbb\x28\x62\x26\x74\x61\x3a\x58\x80\x32\x3a\x34\x3e\x52\xd6\x19\x24\x7c\x38\x83\xdb\x9b\x67\xba\xbe\x95\xc6\x89\xd8\xaf\x12\x91\x0e\x59\x9f\x12\x26\x35\xe7\x35\x0a\x2b\x97\x68\xe3\x71\xa0\x2d\x86\x1a\x2f\x3e\x40\xc9\x88\x94\x60\x70\x48\x18\x2b\xe3\xaf\xf9\xa8\xe4\x7a\x95\xb0\xcb\x05\xc8\x16\x72\x24\x24\x8d\xa3\xe7\x99\xef\x5f\xae\x2c\x1c\x98\xe5\x44\x33\xc2\x47\x3a\x95\x07\x95\x5d\x74\x01\x89\xb6\xcc\xbc\x69\x3c\x32\xcb\x02\x44\x67\xba\x0e\x07\xcf\x63\xde\x4a\x8c\xc7\xc5\xae\xf8\x4f\x00\x00\x00\xff\xff\xe8\xb5\x42\xbd\xe8\x11\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x6d\x6f\x23\xb7\x11\xfe\xbe\xbf\x62\xb0\x17\xa0\x76\x2a\xaf\x5f\x12\xb4\x80\x10\xe1\x60\x34\x69\x70\x1f\xd2\x0b\x72\x45\x52\xd4\x30\x08\x8a\x1c\xed\x32\xe6\x92\x0b\x72\x56\x8a\xee\xa0\xff\x5e\x0c\xb9\xbb\x92\x6c\xe9\xee\x5a\xf4\xf4\xc1\xb0\x38\xcf\x0c\xe7\xf5\xe1\xe8\x15\xfc\xe6\xc3\x13\x86\x08\xf7\x3d\xf9\x77\x4a\x5a\xe3\x6a\xf8\x31\xf8\xbe\x2b\x02\x46\xdf\x07\x85\x50\xca\x4d\x14\xb2\x27\x1f\xb3\x5c\xd4\x2c\x2f\xa1\xdc\x64\xdd\x12\x3e\x14\x00\x4e\xb6\x08\x0b\x28\xbf\xfa\xb0\x96\xa1\xea\xbc\xb7\x82\x8f\x76\x57\x19\x55\x16\x05\xc0\x2b\x50\xbe\x77\x54\x00\x68\x8c\x26\xa0\x16\x4a\x76\x52\x19\xda\xc2\xf4\x59\x00\xeb\x67\x25\x31\xc2\x5b\xe3\x44\x34\xef\x11\x5e\x7c\x4e\xc3\xe5\x1f\x9f\x0d\x87\x3f\xc3\x5d\x72\x68\x25\x7b\x4b\x42\x79\x6f\xb5\xdf\xb8\x43\x95\x6f\x6e\x0a\x80\x06\xa5\xa5\x46\xa8\x06\xd5\x93\xa8\x83\x54\x28\x3a\x0c\xc6\xeb\x0c\x48\xd1\x39\x24\x36\x5d\x00\xac\x3b\x25\xde\x7b\x87\xc2\x68\x74\x64\x56\x06\xc3\x70\x77\xec\x97\x0e\x49\x18\x1d\xb3\x0e\x61\xdb\x59\x49\x58\x00\x58\xd9\x3b\xd5\x08\xe5\xdd\xca\xd4\x7d\x90\x64\xbc\x83\x05\x70\xfa\x4f\x89\x86\x30\x2a\x4e\xf3\x60\x4b\x86\x1a\x09\x52\x7d\x22\x90\x87\x4d\x63\x54\x03\xc6\x45\x92\x4e\x61\x84\xd8\xf8\xde\x6a\x58\x22\x48\xad\x51\x17\x30\xa8\xe4\x92\x0a\x19\x5c\x84\x05\xac\xac\x24\x42\x77\xf1\x50\x70\xfc\xe9\xfa\xa5\x38\x04\x0e\x37\x47\xd1\x10\x75\x95\xd1\xb3\xcf\x02\xc6\x09\xc9\x79\x38\x84\x45\x3e\x7e\xbc\xe4\x20\xac\x59\xa1\xda\x2a\x8b\xa9\xa9\x38\x28\xbf\xc6\x10\x8c\x46\xa0\x06\xc7\x32\x71\xff\x50\xf0\x5b\x90\x4e\x43\xc0\xce\x4a\x85\xd0\x77\x5a\x12\xc2\x12\x1b\xb9\x36\x3e\x24\x75\x15\x50\x12\x8a\x25\xae\x7c\x40\x31\x6a\x2d\x80\x42\xcf\x19\xdf\xe5\xbc\xfd\x26\x0d\x71\xe3\xaf\x7c\x98\x92\x95\x55\xb9\x02\x1a\xad\xdc\x46\xce\x18\x63\xd8\x8b\xfb\x77\x3f\x72\x76\x23\x49\xc2\x0a\xde\xac\xf6\x19\xce\x4d\x2e\xdd\x9f\x88\x93\x9c\x6f\xd7\x70\x81\x55\x5d\x41\xec\x3c\x41\x17\x8c\x42\x20\xef\xc1\xfa\xcd\xe5\x6c\x32\xb7\x31\xd6\xb2\x8a\x0f\x5d\x23\x1d\xea\x2a\x59\x7a\x3b\x7c\x63\x48\x04\x8c\x4a\x76\x08\xca\xa2\x74\x7d\x37\xdb\xdf\x93\x23\xd7\xb3\x94\x8e\x27\xc4\x0e\x96\x26\x7b\x6b\x56\xf9\x5a\x93\x3d\xeb\x23\xea\x0a\xbe\x37\x51\x2e\x2d\xc2\x46\x1a\xe2\x38\xe4\xda\x1b\x0d\x26\xc6\x1e\x63\x32\x21\xad\xa9\x1d\x6c\x0c\x35\xe0\xa9\xc1\x00\xca\xfa\x5e\x47\xf6\x89\x75\xc4\xca\x87\x69\x72\x05\x99\x16\x7d\x4f\x3c\xfb\x37\x69\xca\x49\xd6\x2f\xbb\x28\xff\x85\xa1\xaa\xfc\x79\xc2\xed\x89\xf1\x2c\xff\x21\x5b\x2c\x27\xd0\x5a\xda\xfe\xf9\x18\x4f\x24\xa3\x6c\x1f\x09\xc3\xc0\x33\x67\x89\x67\xd4\xeb\x82\xef\x64\xcd\xed\x20\x69\x18\xa8\x7d\x27\xf0\x67\x97\xbb\xf3\x71\x76\xe4\x31\x37\x05\xc9\x1a\x8c\x63\x97\xe3\x45\x6e\xde\x3a\x5e\xc2\xfc\x33\x63\x62\xed\xc5\x18\x1a\xbc\x86\xf2\x5f\x57\xf9\xdf\x39\x8b\x3e\x11\xeb\x78\xdd\x03\xc9\xfa\xf1\xbf\x88\x65\x1f\xca\xe3\x65\xb1\x2b\x8a\x57\xf0\xe6\xfe\x27\xf8\xd9\x5b\xa3\xb6\xd5\x33\x72\x37\xb2\x15\x63\x0b\x8b\x2e\xf8\x95\xb1\x58\x42\xa9\xa2\x11\x3a\x98\x35\x86\x4c\xf1\x99\x2f\xb3\x4b\xe8\xb8\x85\x84\x8a\x06\x5e\xc3\x2d\xcc\x81\x39\x32\x78\x8b\xec\xf3\xef\xde\xb8\x8b\xb2\x9c\xc1\x68\x9c\x05\xd5\xde\x5c\xf5\x75\x22\xad\xe4\xd7\x4b\x4f\x18\x2c\xba\xe4\xe8\x17\x76\xc2\xe8\xc4\x39\xf9\x2e\x58\xc0\x77\xdf\x5d\xfd\xf0\xf6\xef\xc5\x58\xd1\xf2\x57\x0c\xd1\x78\x57\xce\xa1\xbc\xbb\xb9\xbd\xbb\xba\xbd\xb9\xba\xfd\x6b\x99\xdb\xa3\x7c\xc7\xd3\xdf\xa2\xa3\x72\x7e\xa2\xbb\xcb\x7b\x45\x59\xf5\xa1\xd8\x97\xb3\x44\x75\x37\xbf\x27\x92\xaa\xf9\xd5\xdb\xbe\xc5\xc1\xd8\x81\xf4\x6f\x89\x33\xde\x39\xd9\xc5\xc6\xd3\x39\xf9\x3f\x65\x1d\xcf\xc9\xce\x59\xfe\x1e\x2d\x7e\xcc\x72\x96\x9f\xb6\x9c\x65\xe7\x2d\x47\x15\xcc\x12\xef\xd7\xd2\x58\xb9\x34\xd6\xd0\xf6\xdf\xde\xe1\x49\x43\x19\xfa\x66\x64\xcc\xf3\x90\xd1\xd3\x8f\x40\xce\x39\x9b\xa5\xd9\xdd\x4f\x03\x7e\xf2\xda\xac\x8c\x4a\x6c\x7f\x12\xfd\xb1\x7a\x25\xe5\xed\x20\x9d\x84\x8f\x7b\x5c\xf9\xc3\x6a\x85\x8a\xbb\xa4\xbc\xb7\xd6\x6f\x0e\x4c\x94\xbf\x0c\xcd\xcf\xc2\xaf\xcb\xe3\xd1\x2d\xf2\x7f\xdc\x90\x67\xc7\xe4\x7f\x99\x8f\x4e\x52\x93\x48\xf4\xba\x1c\xc9\xfa\x80\x66\x78\x1e\x64\x8c\x7d\x8b\x87\x73\xf8\xff\x98\x8d\xc3\xe9\x80\xa3\x09\x29\x23\xc5\xf9\x7d\xba\xf4\x17\x0e\x6a\x76\x8c\xfb\x39\x18\xa7\x4c\x27\x6d\x39\x7f\x66\x22\x5d\x85\x61\x6d\x72\x06\x51\xdd\x55\xb2\x95\xef\xbd\x93\x9b\x58\x29\xdf\x96\x47\xe8\xdd\x33\xbb\xe7\xeb\x92\x0d\x1b\xcd\xb2\xbd\x8d\x93\x75\x19\x37\xe8\xfd\x1e\x77\x5c\xa9\x53\x8b\xdb\xb4\x3a\xef\x37\x67\xd1\x05\x5c\x99\x3f\x86\x9b\x3e\xf7\x85\x63\xdf\x4c\x2b\x6b\x5e\x33\xf7\x9e\x2f\x40\x4b\x92\x55\xda\xda\x5b\x53\xf1\x3b\xac\x64\xa8\x46\x20\xeb\x8c\x5c\x4f\xdb\x0e\x07\x1d\x36\x7d\x74\x5e\x40\x5a\x1d\x44\xde\x58\x26\xdb\x69\x87\x9d\xce\x0b\x80\xa1\xc9\x5a\xef\x0c\xf9\xc0\x4b\xc7\x02\x56\xd2\xc6\xb4\x93\xf6\x11\x83\x60\x77\x46\xaf\x14\x0d\xb9\x18\x56\xc3\x2b\x53\x3b\x93\xb6\xd9\x80\x4e\x63\x40\x9d\x57\xb2\x48\x3e\xc8\x1a\x13\x9f\x7b\x12\x4b\xeb\xd5\x93\xd0\xc8\xa5\x1e\x9a\x60\x9d\x46\x2e\x87\x90\xdd\xd2\x26\x3e\x8d\xae\x4f\xf2\xf4\x3b\xe0\x40\xce\xdf\x93\xdc\xf8\x2e\x1e\x87\x95\xe4\x7c\x9c\xe4\xe8\x54\xd8\x76\xbc\xbe\xc1\x8b\x85\x71\xbf\xe8\x47\x54\x7d\xe0\x35\x68\x58\xba\x87\x04\x1d\x9f\x9e\x5a\x6c\xaf\xaf\xe1\xed\x17\xdc\x6c\x01\x4c\xed\x58\xa2\x1a\xe9\x6a\x3c\x88\xf4\x61\x6c\x84\xc7\x31\x9e\x53\xcf\xff\xa9\x07\xf4\x39\xe6\xcc\x8b\x3e\x8d\xc4\x9b\xa1\xb4\x90\x2b\x5e\xa4\x3e\x28\xa7\x0e\x98\xc6\x60\xea\x81\x91\xc1\x1c\x61\xe2\xb0\x71\xa6\xf8\xb2\x8b\xf2\xab\x0f\x4c\x5d\x55\xeb\x75\x6f\x71\x77\xad\xec\xf5\xf0\x03\x68\x2b\x5b\x5b\x51\xdb\xd9\x72\x36\x24\xf7\xa9\x5f\x62\xbe\xe4\x98\x09\xc9\x46\xb1\xf4\x9e\x22\x05\xd9\xc1\x6b\x30\x8e\x7f\x9e\x5d\xdc\xde\xcc\x3e\x79\xd7\xa4\x76\xb5\x37\x7e\xe2\x66\x00\xf2\x4f\xe8\xc6\x81\x5c\x40\x90\x4e\xfb\x56\x44\xe2\xd1\xa8\x26\x2b\x62\x84\x3d\xdc\x3c\x56\x01\x63\x6f\xe9\x48\x3f\xa2\x0a\x48\x9f\xd4\xcf\xb0\x17\x36\x94\x14\x0a\x03\x1d\x36\xf7\x70\x34\x00\x22\x86\x35\x86\x3d\xdd\xa4\xdf\x67\xf3\xeb\xeb\x4c\x31\xb2\x33\x19\xb0\x9b\xff\xe5\xdb\x6f\xbf\xc9\x14\xb8\xbb\xbc\x84\xf9\x61\xc6\x18\xb9\xcf\x45\xda\xa4\x00\x62\x6c\x04\xaf\xc9\xcf\x68\x7a\x01\xbf\x47\xef\xd0\x29\xaf\x31\x6d\xd0\x23\xee\x32\x37\xf3\xc0\x73\xda\x45\x11\x33\xa1\x0b\xd3\xc1\x02\x94\xd1\xa1\xf1\x91\xb2\xce\x20\xe1\xc3\x19\xdc\xde\x3c\xd3\xf5\xad\x34\x4e\xc4\x7e\x95\x88\x74\x88\xfa\x94\x30\xa9\x39\xaf\x51\x58\xb9\x44\x1b\x8f\x1d\x6d\x31\xd4\x78\xf1\x01\x4a\x46\xa4\x00\x83\x43\xc2\x58\x19\x7f\xcd\x47\x25\xe7\xab\x84\x5d\x4e\x40\xb6\x90\x3d\x21\x69\x1c\x3d\x8f\x7c\xff\xb8\xb2\x70\x60\x96\x13\xcd\x08\x1f\xe9\xd4\x1c\x67\xd7\x8b\x56\x3a\x59\x63\x18\x5f\xe5\x83\xea\xbe\x10\xe6\x6a\x6c\x23\x61\x2b\x02\xa6\x72\x6a\xa1\xba\xfe\x80\xc5\x5f\x0a\xa7\xe1\x79\xa1\x32\x2a\xbd\x10\x72\xd9\x77\x1c\x7f\x17\x90\x68\xcb\xcf\x42\x9a\xdd\xfc\x04\x00\x44\x67\xba\x0e\x87\xb4\x8c\x45\x51\x62\x3c\x2e\x76\xc5\x7f\x02\x00\x00\xff\xff\x75\x7e\x43\x33\x85\x12\x00\x00"), }, "/terraform-modules/azure": &vfsgen۰DirInfo{ name: "azure", @@ -8126,9 +8126,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/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: 6855, + uncompressedSize: 6840, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6d\x6f\x1b\xc7\xf1\x7f\xcf\x4f\x31\xb8\xe4\x0f\xd9\x00\x79\xa2\x14\xc7\x89\x84\xf8\x0f\xc8\xa2\x53\x0b\x75\x62\x35\x54\x9a\xa2\x55\x70\x5c\xee\xcd\xf1\xb6\xdc\xdb\xbd\xee\xec\x91\x62\x0d\xf7\xb3\x17\xb3\x7b\x47\xf1\x49\x8d\xe4\x18\xad\x5e\x09\xbc\xd9\x99\xdf\xfe\xe6\x79\xbf\x80\x4b\xdd\x90\x47\xd7\xeb\x2d\x84\x53\x62\xaa\x11\x12\x19\x7f\xca\x8c\xa8\x30\x81\x0f\x3d\x00\xbf\xaa\x11\xda\xbf\x57\x40\xde\x29\x33\xeb\x01\xe4\x48\xd2\xa9\xda\x2b\x6b\xe0\x15\x24\x3f\x1b\xf5\x8f\x06\xa1\x3d\x0e\x7c\x1c\x9e\xd5\x0e\x6b\x34\x39\xe6\xe0\x2d\xe4\x86\xb2\x7f\x5a\x83\xcf\x93\xde\xc7\x4d\x8b\xb5\xb3\x7f\x47\xe9\x33\x95\x47\x7b\x3b\x8a\xaf\x85\x9c\xa3\x87\x56\x0a\xae\x46\xf0\x0c\xd3\x59\x0a\x2f\x86\x5f\x63\x81\x67\x72\x20\x25\x9e\x0d\x5e\xc8\x6f\x4e\x06\xdf\x7e\x23\x4f\x06\x67\x2f\xce\xe4\xe9\xd9\x70\x7a\xfa\x4d\x2e\xa3\xa9\x2f\xe0\x47\x9b\x23\x6d\xd9\xb4\x56\x7f\xea\x15\x97\xd6\xcd\xd1\x01\xab\x38\x74\xcd\xd2\x92\xe7\x9f\x77\xaf\x19\x8f\x65\xd2\x36\xc6\x1f\xb2\x6a\x9a\x6a\x8a\x2e\x58\x2d\x44\xa3\x7d\xfb\xf3\xc9\x3e\x8e\x1f\x83\x24\xd8\xa2\x85\x42\x7d\x90\xc2\xc0\x14\x41\x96\xc2\xcc\x30\x07\x51\x78\x74\x4b\xe1\x72\x0a\xc4\xa3\x46\x8f\x60\x1d\x88\x3c\x07\xc3\x5c\xec\x60\x63\x24\xbf\xc1\xc4\x26\xa6\x44\x7e\x95\x52\x25\xb4\x4e\xef\xbe\x7d\x99\x3c\xe8\x32\x65\xc8\x0b\x23\x31\x2a\x2d\xac\x7b\x24\x5e\x87\xd2\xa1\xf0\x08\xbe\xc4\x83\x70\xa5\x96\x19\x19\x55\xd7\xe8\xe9\x10\x6c\xad\xc8\x3f\x8b\xd8\x9f\xef\xa3\xbb\xb4\xc6\x0b\x65\xd0\xc1\x3b\x65\x9a\x3b\xb8\xb4\xa6\x50\x33\x58\x2b\xdc\xbb\xee\xdf\x7e\x8d\x51\x74\xf3\x7e\xf4\xfe\x1c\x2a\x35\x73\x01\x9c\x85\x89\xc7\xaa\xd6\xc2\x63\xa1\x34\x4e\x60\x59\xa2\x81\x1b\x74\x4e\x14\xd6\x55\x30\x19\xa6\x27\xa7\x13\x50\x04\xb6\xf1\x20\x4c\x0e\x0d\x21\x4c\x3e\xfc\x5f\xa0\xe2\x5f\x1f\x27\xbd\x2f\x58\x89\x58\x58\x95\x03\xd5\x28\x55\xb1\x52\x66\x06\x93\xc1\x80\x2f\x3d\xd0\x62\x8a\x9a\x26\x20\x66\x42\x99\xa8\x9c\x09\x59\x08\xc7\x3a\xb1\xaa\xfd\x2a\xdd\x20\x25\x8a\x1f\xa2\xa3\x12\xf5\xc3\x6c\xfc\x20\x6a\x8e\x24\xd9\x90\xb7\x15\x44\x25\x1b\xbe\x8a\xfc\xa7\xfb\xa4\x7c\xf8\xb8\x13\x42\x42\x99\xc3\xde\xd8\x35\xbf\xa3\xe5\x37\x10\x45\xbd\x87\x10\x6d\x99\x57\xf5\x1d\x66\x51\x4d\xd6\x38\xbd\x81\x63\x1d\xc5\x3d\x00\xae\x04\x1e\xcf\x41\x5d\xff\xe5\xcd\x60\x6a\xad\x67\xbe\xbf\xd7\xc2\x4b\xe1\xc0\x1a\x68\x03\xd7\x2e\xd0\xc1\xdb\x9b\x9b\xeb\x31\x33\x5d\x08\xa5\x59\x2e\x6f\x82\xd3\x05\x4c\x9b\x19\x28\x13\x94\xa4\x41\xe9\x4d\xa9\x08\x6a\xe1\x65\xc9\xf2\xd4\xd4\xb5\xa5\x58\x0c\x0a\x75\x07\xbe\x54\x74\x0e\xa5\xf7\xf5\xf9\xf1\xf1\x4c\xf9\x94\xb1\xa6\xd6\xcd\x8e\xc3\x3f\x33\xe5\x8f\xa5\xad\x2a\xe5\x73\x55\x14\xc7\xd3\x97\x45\x81\xa7\xdf\x8a\xd3\xa0\xf9\xad\x5d\xe2\x02\x5d\x3f\x78\xbe\xa9\xc9\x3b\x14\x55\xd0\xca\x19\xc4\x84\x80\x35\x7a\x75\x1f\x1d\x11\x35\xa1\xe3\x2b\xe4\x16\x09\x8c\xf5\xe0\x50\xaf\xf8\x7e\xa8\x35\xf3\x2c\x83\x6e\xd9\xb8\x05\x52\x0a\x63\x0b\x4b\x04\x2a\x6d\xa3\x63\x88\x46\x1d\x41\x2f\xd3\x1e\x95\x11\x2c\x95\x2f\x39\x92\x3b\x25\xad\x82\x7e\x08\x6d\xeb\x4b\x74\x4b\x45\x18\x54\x77\x5a\x52\xf8\xde\x3a\xdf\x18\xe1\x51\xaf\xfa\x40\x8a\xab\x01\x79\x76\x59\xea\x50\xa3\x20\x4c\x8b\x48\xff\x40\x73\x32\xa6\x06\xfd\x23\x61\x2b\xdf\x61\x66\xd1\x29\x82\xe0\x1e\x31\xd5\x58\xb1\x73\x7c\x29\x3c\x48\xd6\x1f\x0e\x5d\x79\x28\x05\xc1\x14\xd1\x40\x6d\x89\x14\x07\x8d\xb7\x60\x84\x57\x0b\xb6\x12\x6a\x95\xd6\xeb\x60\x50\x95\x98\x21\x81\x20\xb0\x45\xa1\xa4\x12\x1a\xde\x8f\xc1\xc6\x20\x5d\x47\x4a\x3f\x28\x9f\x36\xfe\x9e\x2d\x51\xe5\x2f\x5f\xa4\x70\x53\xa2\x43\x8e\x06\x63\x41\xb8\xea\xe5\x8b\x6d\xcd\x20\x16\x42\xe9\x10\xba\x6b\x65\xe9\x46\x76\xbc\x82\x24\xe9\xed\xa7\xc6\x3b\x2b\x45\xf8\xdf\x5b\xd0\x56\xe4\xc1\xe5\xf5\x1d\x02\xc7\x32\x44\x51\x28\x9c\xad\x76\xb2\xa3\x10\x52\x69\xe5\x57\x4f\xe9\x76\x6d\x2e\x74\x47\x63\x23\xa9\xb5\x5d\x05\xa3\x5d\x9f\x57\x66\xc7\x94\xa5\x4c\x38\x59\x3e\xa5\x9b\x04\xca\x0e\xb4\x91\x8e\xb1\xdd\x82\xcd\xfa\x95\x47\xe9\x1b\x17\x9c\xd8\xf9\xee\x59\x50\xd4\x8f\x7c\xef\xb6\x5f\x4b\x19\x77\x1b\x83\xfa\x29\xd0\x62\xac\x3e\x01\x5b\x6b\x63\x13\x16\xfb\x03\x9e\x45\x4d\x7d\x98\xa2\x17\x7d\x10\xba\x2e\x45\x1f\x30\x9f\xed\xcd\x09\x96\x32\x4e\x37\x65\xcd\x93\x3a\x72\xe3\x1c\x1a\xff\x04\xa4\xad\x91\x2d\x02\x39\x80\xf1\x4e\x54\xb5\x46\x38\x3a\x3d\x39\x3b\x49\xbf\x4e\x87\x47\x30\x00\x42\x0c\x15\x8c\xce\x8f\x8f\x97\xcb\xe5\x4e\xd2\x72\x2d\x6b\xd3\x99\x8e\x9f\xf7\xef\x93\x81\x4b\xe4\x5e\xef\x8e\xf3\x65\x6e\x2b\xa1\x4c\x46\x4d\x51\xa8\xbb\x83\x83\xdf\x9f\x1a\x74\x0a\x63\xe9\x8f\xd2\xb1\x06\x85\xf8\x8b\xe7\x60\xa9\xb4\x0e\xb9\x6f\x68\x89\x0e\x73\x98\xae\x40\x5a\x87\xb9\xa1\x14\x46\x2d\x45\x8a\xba\x70\x4d\xb5\x95\x42\xb7\x03\x64\x61\x6d\xda\xb2\x98\xd2\x42\xa6\x5b\x32\xcf\x21\x79\x3c\xf7\x9b\x07\x77\xae\x3b\x6f\xa6\x28\xc3\x80\x71\xf0\x8e\x7f\x5c\x7f\x06\x9e\x21\x1e\xb4\xb9\x4d\xa1\xc8\x24\x3a\xff\xa0\x42\x67\xd0\x23\xc1\xe5\x05\xb0\x98\x2a\x94\xe4\x79\xc5\x20\xf2\x84\xaa\x62\x9f\x98\x6f\x1b\x4e\x1f\x67\x59\xd4\x2a\x76\x83\x83\xb6\x2f\xba\xaf\x50\x3b\xb5\x60\x9b\x68\xf2\xda\x2a\xe3\x3f\x8b\x71\xa2\x32\x9b\xe3\xea\x13\x26\xbe\xf1\xf8\x2d\xd4\xcd\x54\x2b\x09\xac\x20\x44\x54\x43\xe8\xe0\x88\x63\xe5\x68\xc7\x65\x7c\x07\x25\x31\x93\x2a\x3f\x78\xcf\xef\xbe\x7b\xf3\x7e\xd4\xbb\xbc\x1a\xfd\x04\x57\xd7\x8b\x17\xe0\x78\x86\x0d\x93\x01\x91\x9a\x19\xd8\x70\x41\xab\x8a\xd2\xde\x4d\x89\x70\x42\x1e\xae\xae\xd7\x31\xeb\x30\xb0\x95\x07\x38\x4c\x49\xb6\xa6\x37\xf6\xfb\x93\xa1\x2f\x1f\x3c\xd0\x45\x79\x8f\xc1\xf4\x36\x08\x39\x10\xa7\xaf\x20\x39\x19\xa6\x5f\xa5\xc3\x74\x78\x7c\xf2\x72\xef\xba\xbe\xa9\x33\x27\x1e\x58\xbf\x2e\x3c\x0f\xb9\x9e\xef\xd7\x4e\xe5\x02\x7e\xba\xb8\x1a\xc1\x30\x16\x36\xbc\xf3\x4e\x40\xae\x68\x1e\x66\xf7\x29\x32\xb3\x11\x62\xcd\x15\x86\x3c\x1a\x0f\x72\x5d\x7c\xc8\x5b\x27\x66\x98\xc2\xa5\x30\x47\x7e\x2d\x1f\x12\xfb\x1e\x4a\x56\x86\x4d\xc5\x6d\xfe\x44\x79\x9e\xc2\x9f\x85\x56\x39\x2c\x84\x6e\x90\xce\xe1\x36\xf1\xae\xc1\xdb\xa4\x0f\xb7\x49\x21\x34\xe1\x6d\xb2\x1f\x4b\x53\x6b\xf5\x5e\xd2\x06\xe9\x87\x88\x60\xeb\xbf\x83\x8c\xb7\xc2\xe5\x30\x52\x34\x87\xdc\xa9\x05\x52\xa8\x87\xfd\xcf\xc8\xce\xff\x90\x19\xa2\xdf\xc3\xcc\xd8\x32\xc6\xb1\xe7\xef\xa3\x4f\xe6\xe6\x69\xe4\x94\xff\x55\x72\xb2\x82\x0e\xf2\xf3\x0b\x0f\xe8\x84\x81\xa0\xce\x7c\x28\x7e\x40\x2b\xf2\x58\xad\x93\x3c\xb2\x97\xf3\x58\x38\x1e\x8f\x22\x87\x39\x72\x15\x09\x73\x76\x27\x56\xd9\xc6\xb4\x62\xc7\x95\xf1\xc7\x71\x63\xe4\x06\x34\x20\xca\x07\x6b\xae\x6e\x6c\x18\xc6\xb9\x9c\x38\xb1\xec\x34\x31\x10\xd5\x62\x69\x09\xf8\x7c\x1c\xf1\xb9\x6d\x8a\x62\xe1\x0a\x93\x6b\xa6\xf2\xc3\x04\x8d\xe3\x02\xdc\xad\x60\xa5\x70\xf9\x52\x38\xcc\xb6\xcf\xc6\xa9\xa2\x7d\x57\xa0\x14\x2e\x78\xbb\xe4\xed\xc7\xc5\x3b\xce\x31\x0c\x1e\x95\x08\x5d\xff\x28\x6e\x8c\x83\x2f\xbf\xfc\xa0\x4c\x8e\x77\x1f\x8f\x02\x87\x71\x8b\xd6\x4d\x98\xcf\x03\x33\xf7\x36\xe0\x6a\x94\xc6\xe7\xa2\xb0\x56\xd4\xfc\xc9\xf8\xae\x71\x05\x63\xec\x81\x8e\xd3\xa8\xc6\x16\x30\xd9\xb9\x63\xd6\x72\x32\x81\x8e\x86\x14\xde\xc4\xc9\xea\x1c\x76\x64\x79\x0f\x6e\x97\xdb\xc1\x10\x5e\xc1\x6d\xf2\xdd\xb6\xc4\xff\xdf\x26\xf0\x71\x9f\xfd\xdf\x58\xac\xff\x93\x0b\x3a\x78\x0f\xf7\xb7\xeb\x6e\x4b\xea\x02\x22\x49\x02\x79\x89\xc1\x3b\x3f\x58\xaf\x2f\x49\xda\xeb\x75\xae\x13\x6b\x0c\xdb\x84\x06\xa7\x99\x35\xa7\xdc\xab\xef\x67\x81\x5d\xe2\x26\xbd\x4a\xd4\x29\x5c\x98\xf8\xc2\xd1\x36\x33\xa8\x50\x18\x82\x84\x79\x37\x76\x1d\x1d\x9b\x86\x92\x14\x26\xdb\xd8\x26\xc1\x57\x3d\x59\x5a\x4b\x9c\x3d\xab\x2d\x5c\x61\x43\xac\x78\x69\xc7\x18\x05\x1b\xef\x7a\x47\xd4\x65\x4a\x60\x9c\xef\xdd\xed\x41\x8f\x6d\xb8\x3b\x5d\x36\x57\xc4\xff\x64\xd3\x59\x7d\x30\xfc\x47\xf1\x3b\xbc\xfe\xc3\x35\xe7\x74\x7c\xe3\x68\x03\x71\x69\xdb\x72\x27\xda\xad\x55\x5a\x63\x50\x86\xfc\x6d\xd3\x85\x8f\xd5\x88\x2e\x9c\x09\x2f\x67\x22\xfe\xa8\x28\x16\xc9\xf8\xac\x86\x6a\x81\xa0\x8c\x0f\xf3\x09\x78\x27\x78\xb7\x85\x5c\x39\x94\x3e\x0a\xb5\xfa\x50\x0b\xe2\x15\xff\xea\x9a\x3e\xbd\x32\x7a\x31\x3b\x9c\xeb\xef\x14\x79\x4e\x1a\x16\x88\x50\xbb\xb2\x56\x3b\x5b\x8b\x99\x68\xc1\xc4\x98\x09\x81\xa2\x28\x38\x66\x1f\xcc\xde\xe4\xb7\xf5\x72\x97\xfc\x20\x8c\x98\x61\xfe\x7a\x75\xfe\xce\xce\x6d\x65\x79\xdd\x4f\xfa\x90\x5c\xc6\x32\xfb\x7a\x75\xfe\xb3\x89\x6f\x6f\x0a\xf3\xe4\xd7\xed\x0b\x04\xfb\x59\x1e\x1e\x77\xb3\x6e\x1f\xdb\x7b\xad\x9a\xe3\x66\xf8\x44\xcc\xf1\x0c\xd8\x18\xe3\xba\xbd\xaf\x43\xb2\x8d\x0b\x85\xeb\x07\x35\x2b\x7d\xfb\xfe\xd9\x87\xaa\x21\xdf\x3d\x63\x04\x77\x4d\x57\x20\x0c\x8f\xcf\x03\x9e\x53\x1f\xb8\xb5\x30\xab\xfd\x2b\x9b\x46\xeb\x9d\xd0\x6b\xdf\xdd\x9f\xb2\xfc\x8f\x7e\x1c\xc3\x5f\xad\xc1\x76\x55\x6a\x77\xc2\x54\xda\x6a\x77\x5d\x45\x13\xe2\xda\x6b\xca\xa6\xd6\x7a\xf2\x4e\x1c\x8e\xf0\x37\x41\x10\x6e\xde\x8d\xe1\x75\x27\x18\x2a\x03\xcf\xcb\x1a\xfd\x81\x2d\x20\x04\xda\xf6\xea\x53\x37\x59\x15\x5c\xea\xb2\xda\x6a\x25\x57\x07\x6d\x5d\x5e\xff\x0c\xd1\xf3\x9c\xcf\x2c\xc6\xe1\xc4\xc5\x83\x0d\xee\x24\x7b\x0a\x7b\xb5\x6e\x62\xac\xc1\x49\x1f\x26\xe4\x85\x57\x72\x72\xe0\xfd\x33\x61\x91\xc7\x2d\x2e\x61\xb6\xef\x86\xf7\x4c\xd6\xcd\x83\x98\x79\xa8\xa7\xed\x39\x9f\xc1\xfe\x12\xc1\x6e\x2c\x16\xd2\x56\xb5\x35\x68\x3c\x81\x56\xf3\xb8\x51\x0d\x6a\x67\xef\x56\xfd\xf0\xbf\x46\xdf\x07\xf4\xf2\x10\xf0\xd3\xe1\x70\x58\x3d\x72\xe5\x0a\xb3\xc9\xe7\xc0\xde\x6d\x42\x11\x6e\x6e\xe5\x9c\xb7\x1c\xa2\x32\xef\xc3\x9c\x6f\xa5\x3f\x19\xef\xbf\x03\x00\x00\xff\xff\x77\xfe\xea\x07\xc7\x1a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6d\x6f\x1b\xc7\x11\xfe\xce\x5f\x31\xb8\xa4\x90\x0d\x90\x27\xca\x51\x9c\x48\x88\x0b\xc8\xa2\x53\x0b\x75\x62\x35\x54\x9a\xa2\x55\x70\x5c\xee\xcd\xf1\xb6\xdc\xdb\xbd\xee\xec\x91\x62\x0d\xf7\xb7\x17\xb3\x7b\x47\xf1\x4d\x89\xe4\x04\xad\x3e\x09\xbc\xd9\x99\x67\x9f\x79\xdf\xcf\xe0\x52\x37\xe4\xd1\xf5\x7a\x0b\xe1\x94\x98\x6a\x84\x44\xc6\x9f\x32\x23\x2a\x4c\xe0\x43\x0f\xc0\xaf\x6a\x84\xf6\xef\x15\x90\x77\xca\xcc\x7a\x00\x39\x92\x74\xaa\xf6\xca\x1a\x78\x05\xc9\x8f\x46\xfd\xab\x41\x68\x8f\x03\x1f\x87\x67\xb5\xc3\x1a\x4d\x8e\x39\x78\x0b\xb9\xa1\xec\xdf\xd6\xe0\xf3\xa4\xf7\x71\xd3\x62\xed\xec\x3f\x51\xfa\x4c\xe5\xd1\xde\x8e\xe2\x6b\x21\xe7\xe8\xa1\x95\x82\xab\x11\x3c\xc3\x74\x96\xc2\xe9\xf0\x4b\x2c\xf0\x4c\x0e\xa4\xc4\xb3\xc1\xa9\xfc\xea\x64\xf0\xf5\x57\xf2\x64\x70\x76\x7a\x26\x5f\x9c\x0d\xa7\x2f\xbe\xca\x65\x34\xf5\x19\x7c\x6f\x73\xa4\x2d\x9b\xd6\xea\x4f\xbd\xe2\xd2\xba\x39\x3a\x60\x15\x87\xae\x59\x5a\xf2\xfc\xf3\xee\x35\xe3\xb1\x4c\xda\xc6\xf8\x43\x56\x4d\x53\x4d\xd1\x05\xab\x85\x68\xb4\x6f\x7f\x3e\xd9\xc7\xf1\x7d\x90\x04\x5b\xb4\x50\xa8\x0f\x52\x18\x98\x22\xc8\x52\x98\x19\xe6\x20\x0a\x8f\x6e\x29\x5c\x4e\x81\x78\xd4\xe8\x11\xac\x03\x91\xe7\x60\x98\x8b\x1d\x6c\x8c\xe4\x57\x98\xd8\xc4\x94\xc8\x2f\x52\xaa\x84\xd6\xe9\xdd\xd7\x2f\x93\x07\x5d\xa6\x0c\x79\x61\x24\x46\xa5\x85\x75\x8f\xc4\xeb\x50\x3a\x14\x1e\xc1\x97\x78\x10\xae\xd4\x32\x23\xa3\xea\x1a\x3d\x1d\x82\xad\x15\xf9\x67\x11\xfb\xf3\x7d\x74\x97\xd6\x78\xa1\x0c\x3a\x78\xa7\x4c\x73\x07\x97\xd6\x14\x6a\x06\x6b\x85\x7b\xd7\xfd\xc7\xcf\x31\x8a\x6e\xde\x8f\xde\x9f\x43\xa5\x66\x2e\x80\xb3\x30\xf1\x58\xd5\x5a\x78\x2c\x94\xc6\x09\x2c\x4b\x34\x70\x83\xce\x89\xc2\xba\x0a\x26\xc3\xf4\xe4\xc5\x04\x14\x81\x6d\x3c\x08\x93\x43\x43\x08\x93\x0f\x7f\x08\x54\xfc\xe7\xe3\xa4\xf7\x19\x2b\x11\x0b\xab\x72\xa0\x1a\xa5\x2a\x56\xca\xcc\x60\x32\x18\xf0\xa5\x07\x5a\x4c\x51\xd3\x04\xc4\x4c\x28\x13\x95\x33\x21\x0b\xe1\x58\x27\x56\xb5\x5f\xa5\x1b\xa4\x44\xf1\x43\x74\x54\xa2\x7e\x98\x8d\xef\x44\xcd\x91\x24\x1b\xf2\xb6\x82\xa8\x64\xc3\x57\x91\xff\x74\x9f\x94\x0f\x1f\x77\x42\x48\x28\x73\xd8\x1b\xbb\xe6\x77\xb4\xfc\x0a\xa2\xa8\xf7\x10\xa2\x2d\xf3\xaa\xbe\xc3\x2c\xaa\xc9\x1a\xa7\x37\x70\xac\xa3\xb8\x07\xc0\x95\xc0\xe3\x39\xa8\xeb\xbf\xbd\x19\x4c\xad\xf5\xcc\xf7\xb7\x5a\x78\x29\x1c\x58\x03\x6d\xe0\xda\x05\x3a\x78\x7b\x73\x73\x3d\x66\xa6\x0b\xa1\x34\xcb\xe5\x4d\x70\xba\x80\x69\x33\x03\x65\x82\x92\x34\x28\xbd\x29\x15\x41\x2d\xbc\x2c\x59\x9e\x9a\xba\xb6\x14\x8b\x41\xa1\xee\xc0\x97\x8a\xce\xa1\xf4\xbe\x3e\x3f\x3e\x9e\x29\x9f\x32\xd6\xd4\xba\xd9\x71\xf8\x67\xa6\xfc\xb1\xb4\x55\xa5\x7c\xae\x8a\xe2\x78\xfa\xb2\x28\xf0\xc5\xd7\xe2\x45\xd0\xfc\xd6\x2e\x71\x81\xae\x1f\x3c\xdf\xd4\xe4\x1d\x8a\x2a\x68\xe5\x0c\x62\x42\xc0\x1a\xbd\xba\x8f\x8e\x88\x9a\xd0\xf1\x15\x72\x8b\x04\xc6\x7a\x70\xa8\x57\x7c\x3f\xd4\x9a\x79\x96\x41\xb7\x6c\xdc\x02\x29\x85\xb1\x85\x25\x02\x95\xb6\xd1\x31\x44\xa3\x8e\xa0\x97\x69\x8f\xca\x08\x96\xca\x97\x1c\xc9\x9d\x92\x56\x41\x3f\x84\xb6\xf5\x25\xba\xa5\x22\x0c\xaa\x3b\x2d\x29\x7c\x6b\x9d\x6f\x8c\xf0\xa8\x57\x7d\x20\xc5\xd5\x80\x3c\xbb\x2c\x75\xa8\x51\x10\xa6\x45\xa4\x7f\xa0\x39\x19\x53\x83\xfe\x91\xb0\x95\xef\x30\xb3\xe8\x14\x41\x70\x8f\x98\x6a\xac\xd8\x39\xbe\x14\x1e\x24\xeb\x0f\x87\xae\x3c\x94\x82\x60\x8a\x68\xa0\xb6\x44\x8a\x83\xc6\x5b\x30\xc2\xab\x05\x5b\x09\xb5\x4a\xeb\x75\x30\xa8\x4a\xcc\x90\x40\x10\xd8\xa2\x50\x52\x09\x0d\xef\xc7\x60\x63\x90\xae\x23\xa5\x1f\x94\x4f\x1b\x7f\xcf\x96\xa8\xf2\x97\xa7\x29\xdc\x94\xe8\x90\xa3\xc1\x58\x10\xae\x7a\x79\xba\xad\x19\xc4\x42\x28\x1d\x42\x77\xad\x2c\xdd\xc8\x8e\x57\x90\x24\xbd\xfd\xd4\x78\x67\xa5\x08\xff\x7b\x0b\xda\x8a\x3c\xb8\xbc\xbe\x43\xe0\x58\x86\x28\x0a\x85\xb3\xd5\x4e\x76\x14\x42\x2a\xad\xfc\xea\x29\xdd\xae\xcd\x85\xee\x68\x6c\x24\xb5\xb6\xab\x60\xb4\xeb\xf3\xca\xec\x98\xb2\x94\x09\x27\xcb\xa7\x74\x93\x40\xd9\x81\x36\xd2\x31\xb6\x5b\xb0\x59\xbf\xf2\x28\x7d\xe3\x82\x13\x3b\xdf\x3d\x0b\x8a\xfa\x91\xef\xdd\xf6\x6b\x29\xe3\x6e\x63\x50\x3f\x05\x5a\x8c\xd5\x27\x60\x6b\x6d\x6c\xc2\x62\x7f\xc0\xb3\xa8\xa9\x0f\x53\xf4\xa2\x0f\x42\xd7\xa5\xe8\x03\xe6\xb3\xbd\x39\xc1\x52\xc6\xe9\xa6\xac\x79\x52\x47\x6e\x9c\x43\xe3\x9f\x80\xb4\x35\xb2\x45\x20\x07\x30\xde\x89\xaa\xd6\x08\x47\x2f\x4e\xce\x4e\xd2\x2f\xd3\xe1\x11\x0c\x80\x10\x43\x05\xa3\xf3\xe3\xe3\xe5\x72\xb9\x93\xb4\x5c\xcb\xda\x74\xa6\xe3\xe7\xfd\xfb\x64\xe0\x12\xb9\xd7\xbb\xe3\x7c\x99\xdb\x4a\x28\x93\x51\x53\x14\xea\xee\xe0\xe0\xf7\x97\x06\x9d\xc2\x58\xfa\xa3\x74\xac\x41\x21\xfe\xe2\x39\x58\x2a\xad\x43\xee\x1b\x5a\xa2\xc3\x1c\xa6\x2b\x90\xd6\x61\x6e\x28\x85\x51\x4b\x91\xa2\x2e\x5c\x53\x6d\xa5\xd0\xed\x00\x59\x58\x9b\xb6\x2c\xa6\xb4\x90\xe9\x96\xcc\x73\x48\x1e\xcf\xfd\xe6\xc1\x9d\xeb\xce\x9b\x29\xca\x30\x60\x1c\xbc\xe3\x9f\xd7\x9f\x81\x67\x88\x07\x6d\x6e\x53\x28\x32\x89\xce\x3f\xa8\xd0\x19\xf4\x48\x70\x79\x01\x2c\xa6\x0a\x25\x79\x5e\x31\x88\x3c\xa1\xaa\xd8\x27\xe6\xdb\x86\xd3\xc7\x59\x16\xb5\x8a\xdd\xe0\xa0\xed\x8b\xee\x2b\xd4\x4e\x2d\xd8\x26\x9a\xbc\xb6\xca\xf8\xdf\xc5\x38\x51\x99\xcd\x71\xf5\x09\x13\xdf\x78\xfc\x16\xea\x66\xaa\x95\x04\x56\x10\x22\xaa\x21\x74\x70\xc4\xb1\x72\xb4\xe3\x32\xbe\x83\x92\x98\x49\x95\x1f\xbc\xe7\x37\xdf\xbc\x79\x3f\xea\x5d\x5e\x8d\x7e\x80\xab\xeb\xc5\x29\x38\x9e\x61\xc3\x64\x40\xa4\x66\x06\x36\x5c\xd0\xaa\xa2\xb4\x77\x53\x22\x9c\x90\x87\xab\xeb\x75\xcc\x3a\x0c\x6c\xe5\x01\x0e\x53\x92\xad\xe9\x8d\xfd\xfe\x64\xe8\xcb\x07\x0f\x74\x51\xde\x63\x30\xbd\x0d\x42\x0e\xc4\xe9\x2b\x48\x4e\x86\xe9\x17\xe9\x30\x1d\x1e\x9f\xbc\xdc\xbb\xae\x6f\xea\xcc\x89\x07\xd6\xaf\x0b\xcf\x43\xae\xe7\xfb\xb5\x53\xb9\x80\x1f\x2e\xae\x46\x30\x8c\x85\x0d\xef\xbc\x13\x90\x2b\x9a\x87\xd9\x7d\x8a\xcc\x6c\x84\x58\x73\x85\x21\x8f\xc6\x83\x5c\x17\x1f\xf2\xd6\x89\x19\xa6\x70\x29\xcc\x91\x5f\xcb\x87\xc4\xbe\x87\x92\x95\x61\x53\x71\x9b\x3f\x51\x9e\xa7\xf0\x57\xa1\x55\x0e\x0b\xa1\x1b\xa4\x73\xb8\x4d\xbc\x6b\xf0\x36\xe9\xc3\x6d\x52\x08\x4d\x78\x9b\xec\xc7\xd2\xd4\x5a\xbd\x97\xb4\x41\xfa\x21\x22\xd8\xfa\x6f\x20\xe3\xad\x70\x39\x8c\x14\xcd\x21\x77\x6a\x81\x14\xea\x61\xff\x77\x64\xe7\xff\xc8\x0c\xd1\x6f\x61\x66\x6c\x19\xe3\xd8\xf3\xf7\xd1\x27\x73\xf3\x34\x72\xca\xff\x29\x39\x59\x41\x07\xf9\xf9\x89\x07\x74\xc2\x40\x50\x67\x3e\x14\x3f\xa0\x15\x79\xac\xd6\x49\x1e\xd9\xcb\x79\x2c\x1c\x8f\x47\x91\xc3\x1c\xb9\x8a\x84\x39\xbb\x13\xab\x6c\x63\x5a\xb1\xe3\xca\xf8\xe3\xb8\x31\x72\x03\x1a\x10\xe5\x83\x35\x57\x37\x36\x0c\xe3\x5c\x4e\x9c\x58\x76\x9a\x18\x88\x6a\xb1\xb4\x04\xfc\x7e\x1c\xf1\xb9\x6d\x8a\x62\xe1\x0a\x93\x6b\xa6\xf2\xc3\x04\x8d\xe3\x02\xdc\xad\x60\xa5\x70\xf9\x52\x38\xcc\xb6\xcf\xc6\xa9\xa2\x7d\x57\xa0\x14\x2e\x78\xbb\xe4\xed\xc7\xc5\x3b\xce\x31\x0c\x1e\x95\x08\x5d\xff\x28\x6e\x8c\x83\xcf\x3f\xff\xa0\x4c\x8e\x77\x1f\x8f\x02\x87\x71\x8b\xd6\x4d\x98\xcf\x03\x33\xf7\x36\xe0\x6a\x94\xc6\xe7\xa2\xb0\x56\xd4\xfc\xc9\xf8\xae\x71\x05\x63\xec\x81\x8e\xd3\xa8\xc6\x16\x30\xd9\xb9\x63\xd6\x72\x32\x81\x8e\x86\x14\xde\xc4\xc9\xea\x1c\x76\x64\x79\x0f\x6e\x97\xdb\xc1\x10\x5e\xc1\x6d\xf2\xcd\xb6\xc4\x1f\x6f\x13\xf8\xb8\xcf\xfe\xaf\x2c\xd6\xbf\xe4\x82\x0e\xde\xc3\xfd\xed\xba\xdb\x92\xba\x80\x48\x92\x40\x5e\x62\xf0\xce\x0f\xd6\xeb\x4b\x92\xf6\x7a\x9d\xeb\xc4\x1a\xc3\x36\xa1\xc1\x69\x66\xcd\x29\xf7\xea\xfb\x59\x60\x97\xb8\x49\xaf\x12\x75\x0a\x17\x26\xbe\x70\xb4\xcd\x0c\x2a\x14\x86\x20\x61\xde\x8d\x5d\x47\xc7\xa6\xa1\x24\x85\xc9\x36\xb6\x49\xf0\x55\x4f\x96\xd6\x12\x67\xcf\x6a\x0b\x57\xd8\x10\x2b\x5e\xda\x31\x46\xc1\xc6\xbb\xde\x11\x75\x99\x12\x18\xe7\x7b\x77\x7b\xd0\x63\x1b\xee\x4e\x97\xcd\x15\xf1\x3f\xd9\x74\x56\x1f\x0c\xff\x51\xfc\x0e\xaf\xff\x74\xcd\x39\x1d\xdf\x38\xda\x40\x5c\xda\xb6\xdc\x89\x76\x6b\x95\xd6\x18\x94\x21\x7f\xdb\x74\xe1\x63\x35\xa2\x0b\x67\xc2\xcb\x99\x88\x3f\x2a\x8a\x45\x32\x3e\xab\xa1\x5a\x20\x28\xe3\xc3\x7c\x02\xde\x09\xde\x6d\x21\x57\x0e\xa5\x8f\x42\xad\x3e\xd4\x82\x78\xc5\xbf\xba\xa6\x4f\xaf\x8c\x5e\xcc\x0e\xe7\xfa\x3b\x45\x9e\x93\x86\x05\x22\xd4\xae\xac\xd5\xce\xd6\x62\x26\x5a\x30\x31\x66\x42\xa0\x28\x0a\x8e\xd9\x07\xb3\x37\xf9\x6d\xbd\xdc\x25\xdf\x09\x23\x66\x98\xbf\x5e\x9d\xbf\xb3\x73\x5b\x59\x5e\xf7\x93\x3e\x24\x97\xb1\xcc\xbe\x5e\x9d\xff\x68\xe2\xdb\x9b\xc2\x3c\xf9\x79\xfb\x02\xc1\x7e\x96\x87\xc7\xdd\xac\xdb\xc7\xf6\x5e\xab\xe6\xb8\x19\x3e\x11\x73\x3c\x03\x36\xc6\xb8\x6e\xef\xeb\x90\x6c\xe3\x42\xe1\xfa\x4e\xcd\x4a\xdf\xbe\x7f\xf6\xa1\x6a\xc8\x77\xcf\x18\xc1\x5d\xd3\x15\x08\xc3\xe3\xf3\x80\xe7\xd4\x07\x6e\x2d\xcc\x6a\xff\xca\xa6\xd1\x7a\x27\xf4\xda\x77\xf7\xa7\x2c\xff\xa3\xef\xc7\xf0\x77\x6b\xb0\x5d\x95\xda\x9d\x30\x95\xb6\xda\x5d\x57\xd1\x84\xb8\xf6\x9a\xb2\xa9\xb5\x9e\xbc\x13\x87\x23\xfc\x4d\x10\x84\x9b\x77\x63\x78\xdd\x09\x86\xca\xc0\xf3\xb2\x46\x7f\x60\x0b\x08\x81\xb6\xbd\xfa\xd4\x4d\x56\x05\x97\xba\xac\xb6\x5a\xc9\xd5\x41\x5b\x97\xd7\x3f\x42\xf4\x3c\xe7\x33\x8b\x71\x38\x71\xf1\x60\x83\x3b\xc9\x9e\xc2\x5e\xad\x9b\x18\x6b\x70\xd2\x87\x09\x79\xe1\x95\x9c\x1c\x78\xff\x4c\x58\xe4\x71\x8b\x4b\x98\xed\xbb\xe1\x3d\x93\x75\xf3\x20\x66\x1e\xea\x69\x7b\xce\x67\xb0\x3f\x45\xb0\x1b\x8b\x85\xb4\x55\x6d\x0d\x1a\x4f\xa0\xd5\x3c\x6e\x54\x1a\x7d\x1f\xd0\xcb\x43\x60\xbf\x18\x0e\xab\x47\x6e\x59\x61\x1c\xf9\x4d\x70\x4b\x4b\x7e\xbd\xfa\x44\x7c\x23\x2b\xe7\xbc\xd6\x10\x95\x79\x1f\xe6\x7c\x0d\xfd\x20\xd8\x93\x2f\x7f\x19\xed\x7f\x03\x00\x00\xff\xff\x06\xe1\x6b\xd1\xb8\x1a\x00\x00"), }, "/terraform-modules/packet/flatcar-linux/kubernetes/workers/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", diff --git a/pkg/platform/aws/aws.go b/pkg/platform/aws/aws.go index 036ac8401..31817a087 100644 --- a/pkg/platform/aws/aws.go +++ b/pkg/platform/aws/aws.go @@ -31,23 +31,24 @@ import ( ) type workerPool struct { - Name string `hcl:"pool_name,label"` - Count int `hcl:"count"` - SSHPubKeys []string `hcl:"ssh_pubkeys"` - InstanceType string `hcl:"instance_type,optional"` - OSChannel string `hcl:"os_channel,optional"` - OSVersion string `hcl:"os_version,optional"` - Labels map[string]string `hcl:"labels,optional"` - Taints map[string]string `hcl:"taints,optional"` - DiskSize int `hcl:"disk_size,optional"` - DiskType string `hcl:"disk_type,optional"` - DiskIOPS int `hcl:"disk_iops,optional"` - SpotPrice string `hcl:"spot_price,optional"` - TargetGroups []string `hcl:"target_groups,optional"` - CLCSnippets []string `hcl:"clc_snippets,optional"` - Tags map[string]string `hcl:"tags,optional"` - LBHTTPPort int `hcl:"lb_http_port,optional"` - LBHTTPSPort int `hcl:"lb_https_port,optional"` + Name string `hcl:"pool_name,label"` + Count int `hcl:"count"` + CPUManagerPolicy string `hcl:"cpu_manager_policy,optional"` + SSHPubKeys []string `hcl:"ssh_pubkeys"` + InstanceType string `hcl:"instance_type,optional"` + OSChannel string `hcl:"os_channel,optional"` + OSVersion string `hcl:"os_version,optional"` + Labels map[string]string `hcl:"labels,optional"` + Taints map[string]string `hcl:"taints,optional"` + DiskSize int `hcl:"disk_size,optional"` + DiskType string `hcl:"disk_type,optional"` + DiskIOPS int `hcl:"disk_iops,optional"` + SpotPrice string `hcl:"spot_price,optional"` + TargetGroups []string `hcl:"target_groups,optional"` + CLCSnippets []string `hcl:"clc_snippets,optional"` + Tags map[string]string `hcl:"tags,optional"` + LBHTTPPort int `hcl:"lb_http_port,optional"` + LBHTTPSPort int `hcl:"lb_https_port,optional"` } type config struct { @@ -281,6 +282,7 @@ func (c *config) checkValidConfig() hcl.Diagnostics { diagnostics = append(diagnostics, c.checkWorkerPoolNamesUnique()...) diagnostics = append(diagnostics, c.checkNameSizes()...) diagnostics = append(diagnostics, c.checkLBPortsUnique()...) + diagnostics = append(diagnostics, c.checkCPUManagerPolicy()...) if c.ConntrackMaxPerCore < 0 { diagnostics = append(diagnostics, &hcl.Diagnostic{ @@ -410,3 +412,22 @@ func (c *config) checkWorkerPoolNamesUnique() hcl.Diagnostics { return diagnostics } + +func (c *config) checkCPUManagerPolicy() hcl.Diagnostics { + var diagnostics hcl.Diagnostics + + for _, w := range c.WorkerPools { + switch w.CPUManagerPolicy { + case "", "none", "static": + continue + default: + diagnostics = append(diagnostics, &hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: "invalid cpu_manager_policy", + Detail: fmt.Sprintf("Worker pool '%s' has invalid cpu_manager_policy '%s'", w.Name, w.CPUManagerPolicy), + }) + } + } + + return diagnostics +} diff --git a/pkg/platform/aws/aws_internal_test.go b/pkg/platform/aws/aws_internal_test.go index 7ab0200e0..2a755daa2 100644 --- a/pkg/platform/aws/aws_internal_test.go +++ b/pkg/platform/aws/aws_internal_test.go @@ -15,6 +15,7 @@ package aws import ( + "reflect" "testing" "github.com/hashicorp/hcl/v2" @@ -222,3 +223,64 @@ func TestConfigurationIsValidWhen(t *testing.T) { }) } } + +func Test_config_checkCPUManagerPolicy(t *testing.T) { + tests := []struct { + name string + WorkerPools []workerPool + want hcl.Diagnostics + }{ + { + name: "valid_cpu_manager_policy_values", + WorkerPools: []workerPool{ + {CPUManagerPolicy: ""}, + {CPUManagerPolicy: "static"}, + {CPUManagerPolicy: "none"}, + }, + want: nil, + }, + { + name: "invalid_cpu_manager_policy_value", + WorkerPools: []workerPool{ + {CPUManagerPolicy: ""}, + {Name: "foobar", CPUManagerPolicy: "foobar"}, + }, + want: hcl.Diagnostics{&hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: "invalid cpu_manager_policy", + Detail: "Worker pool 'foobar' has invalid cpu_manager_policy 'foobar'", + }}, + }, + { + name: "all_invalid_values", + WorkerPools: []workerPool{ + {Name: "foo", CPUManagerPolicy: "foo"}, + {Name: "bar", CPUManagerPolicy: "bar"}, + }, + want: hcl.Diagnostics{ + &hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: "invalid cpu_manager_policy", + Detail: "Worker pool 'foo' has invalid cpu_manager_policy 'foo'", + }, + &hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: "invalid cpu_manager_policy", + Detail: "Worker pool 'bar' has invalid cpu_manager_policy 'bar'", + }, + }, + }, + } + for _, tt := range tests { + tt := tt + t.Run(tt.name, func(t *testing.T) { + c := &config{ + WorkerPools: tt.WorkerPools, + } + + if got := c.checkCPUManagerPolicy(); !reflect.DeepEqual(got, tt.want) { + t.Errorf("config.checkCPUManagerPolicy() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/pkg/platform/aws/template.go b/pkg/platform/aws/template.go index 1efe033e4..9bbf0b692 100644 --- a/pkg/platform/aws/template.go +++ b/pkg/platform/aws/template.go @@ -198,6 +198,10 @@ module "worker-pool-{{ $index }}" { clc_snippets = {{ (index $.WorkerpoolCfg $index "clc_snippets") }} {{- end }} + {{- if $pool.CPUManagerPolicy }} + cpu_manager_policy = "{{$pool.CPUManagerPolicy}}" + {{- end}} + {{- if $pool.Tags }} tags = {{ index (index $.WorkerpoolCfg $index) "tags" }} {{- end }}