From 6e2e567dae6aa02f9d9dc5a8a9c7703173e415ba Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek Date: Tue, 17 Mar 2020 18:23:54 +0100 Subject: [PATCH] Add ability to provide extra kube-apiserver flags This commit adds an ability to provide extra flags for self-hosted kube-apiserver, so this feature can be used when configuring dex and gangway for OIDC authentication to the cluster, as currently any manual changes to kube-apiserver pods will be overwritten during cluster upgrade. Closes #122 Signed-off-by: Mateusz Gozdek --- .../aws/flatcar-linux/kubernetes/bootkube.tf | 22 ++-- .../aws/flatcar-linux/kubernetes/variables.tf | 6 + .../flatcar-linux/kubernetes/bootkube.tf | 1 + .../flatcar-linux/kubernetes/variables.tf | 6 + .../lokomotive-kubernetes/bootkube/assets.tf | 1 + .../resources/charts/kube-apiserver.yaml | 6 + .../templates/kube-apiserver.yaml | 6 + .../charts/kube-apiserver/values.yaml | 1 + .../bootkube/variables.tf | 6 + .../flatcar-linux/kubernetes/bootkube.tf | 2 + .../flatcar-linux/kubernetes/variables.tf | 6 + ci/aws/aws-cluster.lokocfg.envsubst | 5 + .../baremetal-cluster.lokocfg.envsubst | 5 + ci/packet/packet-cluster.lokocfg.envsubst | 5 + docs/configuration-reference/platforms/aws.md | 4 + .../platforms/baremetal.md | 44 +++---- .../platforms/packet.md | 4 + .../authentication-with-dex-gangway.md | 53 +++----- pkg/assets/generated_assets.go | 44 +++---- pkg/platform/aws/aws.go | 32 +++-- pkg/platform/aws/template.go | 4 + pkg/platform/baremetal/baremetal.go | 113 ++++++++++-------- pkg/platform/baremetal/template.go | 4 + pkg/platform/packet/packet.go | 24 ++-- pkg/platform/packet/template.go | 4 + 25 files changed, 244 insertions(+), 164 deletions(-) diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/bootkube.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/bootkube.tf index 4e73271b0..19ebbb6a9 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/bootkube.tf @@ -2,16 +2,16 @@ module "bootkube" { source = "../../../bootkube" - cluster_name = var.cluster_name - api_servers = [format("%s.%s", var.cluster_name, var.dns_zone)] - etcd_servers = aws_route53_record.etcds.*.fqdn - asset_dir = var.asset_dir - network_mtu = var.network_mtu - pod_cidr = var.pod_cidr - service_cidr = var.service_cidr - cluster_domain_suffix = var.cluster_domain_suffix - enable_reporting = var.enable_reporting - enable_aggregation = var.enable_aggregation - + cluster_name = var.cluster_name + api_servers = [format("%s.%s", var.cluster_name, var.dns_zone)] + etcd_servers = aws_route53_record.etcds.*.fqdn + asset_dir = var.asset_dir + network_mtu = var.network_mtu + pod_cidr = var.pod_cidr + service_cidr = var.service_cidr + cluster_domain_suffix = var.cluster_domain_suffix + enable_reporting = var.enable_reporting + enable_aggregation = var.enable_aggregation + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags certs_validity_period_hours = var.certs_validity_period_hours } diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf index 2daf728f6..207319c77 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf @@ -182,3 +182,9 @@ variable "certs_validity_period_hours" { type = number default = 8760 } + +variable "kube_apiserver_extra_flags" { + description = "Extra flags passed to self-hosted kube-apiserver." + type = list(string) + default = [] +} diff --git a/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/bootkube.tf b/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/bootkube.tf index ad6dd143e..cbec5d2b7 100644 --- a/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/bootkube.tf @@ -13,6 +13,7 @@ module "bootkube" { cluster_domain_suffix = var.cluster_domain_suffix enable_reporting = var.enable_reporting enable_aggregation = var.enable_aggregation + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags certs_validity_period_hours = var.certs_validity_period_hours } diff --git a/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/variables.tf b/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/variables.tf index 373bd1c4a..0bbbae3de 100644 --- a/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/variables.tf +++ b/assets/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/variables.tf @@ -162,3 +162,9 @@ variable "certs_validity_period_hours" { type = number default = 8760 } + +variable "kube_apiserver_extra_flags" { + description = "Extra flags passed to self-hosted kube-apiserver." + type = list(string) + default = [] +} diff --git a/assets/lokomotive-kubernetes/bootkube/assets.tf b/assets/lokomotive-kubernetes/bootkube/assets.tf index 750195982..6e779210e 100644 --- a/assets/lokomotive-kubernetes/bootkube/assets.tf +++ b/assets/lokomotive-kubernetes/bootkube/assets.tf @@ -35,6 +35,7 @@ resource "local_file" "kube-apiserver" { aggregation_client_key = var.enable_aggregation == true ? base64encode(join(" ", tls_private_key.aggregation-client.*.private_key_pem)) : "" replicas = length(var.etcd_servers) expose_on_all_interfaces = var.expose_on_all_interfaces + extra_flags = var.kube_apiserver_extra_flags }) } diff --git a/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver.yaml b/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver.yaml index 1a6b46cac..42e8e72dc 100644 --- a/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver.yaml +++ b/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver.yaml @@ -17,3 +17,9 @@ apiserver: trustedCertsDir: ${trusted_certs_dir} replicas: ${replicas} exposeOnAllInterfaces: ${expose_on_all_interfaces} + %{~ if length(extra_flags) > 0 ~} + extraFlags: + %{~ for f in extra_flags ~} + - ${f} + %{~ endfor ~} + %{~ endif ~} diff --git a/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/templates/kube-apiserver.yaml b/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/templates/kube-apiserver.yaml index 86f73ab2b..10ae89717 100644 --- a/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/templates/kube-apiserver.yaml +++ b/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/templates/kube-apiserver.yaml @@ -107,6 +107,9 @@ spec: --requestheader-group-headers=X-Remote-Group \ --requestheader-username-headers=X-Remote-User \ {{ end -}} + {{- range .Values.apiserver.extraFlags -}} + {{ . }} \ + {{- end }} --storage-backend=etcd3 {{- else }} - /hyperkube @@ -141,6 +144,9 @@ spec: - --requestheader-group-headers=X-Remote-Group - --requestheader-username-headers=X-Remote-User {{- end }} + {{- range .Values.apiserver.extraFlags -}} + - {{ . }} + {{- end }} readinessProbe: tcpSocket: port: 6443 diff --git a/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/values.yaml b/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/values.yaml index b1de59352..a238a6085 100644 --- a/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/values.yaml +++ b/assets/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/values.yaml @@ -20,3 +20,4 @@ apiserver: # service (kubernetes.default.svc) and on all interfaces on port 6443. # If false, it will be exposed only on HostIP on port 6443. exposeOnAllInterfaces: false + extraFlags: [] diff --git a/assets/lokomotive-kubernetes/bootkube/variables.tf b/assets/lokomotive-kubernetes/bootkube/variables.tf index 737c6b2c5..8b688a1d8 100644 --- a/assets/lokomotive-kubernetes/bootkube/variables.tf +++ b/assets/lokomotive-kubernetes/bootkube/variables.tf @@ -134,3 +134,9 @@ variable "expose_on_all_interfaces" { type = bool default = false } + +variable "kube_apiserver_extra_flags" { + description = "Extra flags passed to self-hosted kube-apiserver." + type = list(string) + default = [] +} diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf index 52369d794..6edfa2346 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/bootkube.tf @@ -24,4 +24,6 @@ module "bootkube" { container_arch = var.os_arch expose_on_all_interfaces = true + + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags } diff --git a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/variables.tf b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/variables.tf index e2bb5297a..f57d7adb9 100644 --- a/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/variables.tf +++ b/assets/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/variables.tf @@ -175,3 +175,9 @@ variable "tags" { type = list(string) default = ["ManagedBy:Lokomotive", "CreatedBy:Unspecified"] } + +variable "kube_apiserver_extra_flags" { + description = "Extra flags passed to self-hosted kube-apiserver." + type = list(string) + default = [] +} diff --git a/ci/aws/aws-cluster.lokocfg.envsubst b/ci/aws/aws-cluster.lokocfg.envsubst index 88672c53c..5d0eb9702 100644 --- a/ci/aws/aws-cluster.lokocfg.envsubst +++ b/ci/aws/aws-cluster.lokocfg.envsubst @@ -25,6 +25,11 @@ cluster "aws" { "deployment" = "ci" } } + + # Smoke test for extra flags feature. + kube_apiserver_extra_flags = [ + "-v=1", + ] } component "openebs-operator" {} diff --git a/ci/baremetal/baremetal-cluster.lokocfg.envsubst b/ci/baremetal/baremetal-cluster.lokocfg.envsubst index f6767121d..5f1ec5161 100644 --- a/ci/baremetal/baremetal-cluster.lokocfg.envsubst +++ b/ci/baremetal/baremetal-cluster.lokocfg.envsubst @@ -31,4 +31,9 @@ cluster "bare-metal" { "node2", "node3", ] + + # Smoke test for extra flags feature. + kube_apiserver_extra_flags = [ + "-v=1", + ] } diff --git a/ci/packet/packet-cluster.lokocfg.envsubst b/ci/packet/packet-cluster.lokocfg.envsubst index 0ec049417..1dd7ba1ee 100644 --- a/ci/packet/packet-cluster.lokocfg.envsubst +++ b/ci/packet/packet-cluster.lokocfg.envsubst @@ -26,6 +26,11 @@ cluster "packet" { node_type = "c2.medium.x86" labels = "testing.io=yes,roleofnode=testing" } + + # Smoke test for extra flags feature. + kube_apiserver_extra_flags = [ + "-v=1", + ] } component "openebs-operator" {} diff --git a/docs/configuration-reference/platforms/aws.md b/docs/configuration-reference/platforms/aws.md index 2874bf13a..bf868e709 100644 --- a/docs/configuration-reference/platforms/aws.md +++ b/docs/configuration-reference/platforms/aws.md @@ -50,6 +50,7 @@ variable "worker_disk_type" {} variable "worker_disk_iops" {} variable "worker_spot_price" {} variable "target_groups" {} +variable "kube_apiserver_extra_flags" {} backend "s3" { bucket = var.state_s3_bucket @@ -140,6 +141,8 @@ cluster "aws" { "key" = "value" } } + + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags } ``` @@ -194,6 +197,7 @@ worker_pool "my-worker-pool" { | `cluster_domain_suffix` | Cluster's DNS domain. | "cluster.local" | false | | `enable_reporting` | Enables usage or analytics reporting to upstream. | false | false | | `certs_validity_period_hours` | Validity of all the certificates in hours. | 8760 | false | +| `kube_apiserver_extra_flags` | Extra flags passed to self-hosted kube-apiserver. | [] | 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. | - | true | | `worker_pool.count` | Number of workers in the worker pool. Can be changed afterwards to add or delete workers. | - | true | | `worker_pool.instance_type` | AWS instance type for worker nodes. | "t3.small" | false | diff --git a/docs/configuration-reference/platforms/baremetal.md b/docs/configuration-reference/platforms/baremetal.md index 14079f9a6..a72c330b2 100644 --- a/docs/configuration-reference/platforms/baremetal.md +++ b/docs/configuration-reference/platforms/baremetal.md @@ -46,6 +46,7 @@ variable "management_cidrs" {} variable "node_private_cidr" {} variable "state_s3_bucket" {} variable "lock_dynamodb_table" {} +variable "kube_apiserver_extra_flags" {} cluster "bare-metal" { asset_dir = var.asset_dir @@ -83,6 +84,8 @@ cluster "bare-metal" { os_version = "current" os_channel = "flatcar-stable" + + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags } ``` @@ -111,26 +114,27 @@ os_version = var.custom_default_os_version ## Attribute reference -| Argument | Description | Default | Required | -|-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------:|:--------:| -| `asset_dir` | Location where Lokomotive stores cluster assets. | - | true | -| `cached_install` | Whether the operating system should PXE boot and install from matchbox /assets cache. Note that the admin must have downloaded the `os_version` into matchbox assets. | "false" | false | -| `cluster_name` | Name of the cluster. | - | true | -| `controller_domains` | Ordered list of controller FQDNs. Example: ["node1.example.com"] | - | true | -| `controller_macs` | Ordered list of controller identifying MAC addresses. Example: ["52:54:00:a1:9c:ae"] | - | true | -| `controller_names` | Ordered list of controller names. Example: ["node1"] | - | true | -| `k8s_domain_name` | Controller DNS name which resolves to a controller instance. Workers and kubeconfig's will communicate with this endpoint. Example: "cluster.example.com" | - | true | -| `matchbox_ca_path` | Path to the CA to verify and authenticate client certificates. | - | true | -| `matchbox_client_cert_path` | Path to the server TLS certificate file. | - | true | -| `matchbox_client_key_path` | Path to the server TLS key file. | - | true | -| `matchbox_endpoint` | Matchbox API endpoint. | - | true | -| `matchbox_http_endpoint` | Matchbox HTTP read-only endpoint. Example: "http://matchbox.example.com:8080" | - | true | -| `worker_names` | Ordered list of worker names. Example: ["node2", "node3"] | - | true | -| `worker_macs` | Ordered list of worker identifying MAC addresses. Example ["52:54:00:b2:2f:86", "52:54:00:c3:61:77"] | - | true | -| `worker_domains` | Ordered list of worker FQDNs. Example ["node2.example.com", "node3.example.com"] | - | true | -| `ssh_pubkeys` | SSH public keys for user `core`. | - | true | -| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | false | -| `os_channel` | Flatcar Container Linux channel to install from ("flatcar-stable", "flatcar-beta", "flatcar-alpha", "flatcar-edge"). | "flatcar-stable" | false | +| Argument | Description | Default | Required | +|------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------:|:--------:| +| `asset_dir` | Location where Lokomotive stores cluster assets. | - | true | +| `cached_install` | Whether the operating system should PXE boot and install from matchbox /assets cache. Note that the admin must have downloaded the `os_version` into matchbox assets. | "false" | false | +| `cluster_name` | Name of the cluster. | - | true | +| `controller_domains` | Ordered list of controller FQDNs. Example: ["node1.example.com"] | - | true | +| `controller_macs` | Ordered list of controller identifying MAC addresses. Example: ["52:54:00:a1:9c:ae"] | - | true | +| `controller_names` | Ordered list of controller names. Example: ["node1"] | - | true | +| `k8s_domain_name` | Controller DNS name which resolves to a controller instance. Workers and kubeconfig's will communicate with this endpoint. Example: "cluster.example.com" | - | true | +| `matchbox_ca_path` | Path to the CA to verify and authenticate client certificates. | - | true | +| `matchbox_client_cert_path` | Path to the server TLS certificate file. | - | true | +| `matchbox_client_key_path` | Path to the server TLS key file. | - | true | +| `matchbox_endpoint` | Matchbox API endpoint. | - | true | +| `matchbox_http_endpoint` | Matchbox HTTP read-only endpoint. Example: "http://matchbox.example.com:8080" | - | true | +| `worker_names` | Ordered list of worker names. Example: ["node2", "node3"] | - | true | +| `worker_macs` | Ordered list of worker identifying MAC addresses. Example ["52:54:00:b2:2f:86", "52:54:00:c3:61:77"] | - | true | +| `worker_domains` | Ordered list of worker FQDNs. Example ["node2.example.com", "node3.example.com"] | - | true | +| `ssh_pubkeys` | SSH public keys for user `core`. | - | true | +| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | false | +| `os_channel` | Flatcar Container Linux channel to install from ("flatcar-stable", "flatcar-beta", "flatcar-alpha", "flatcar-edge"). | "flatcar-stable" | false | +| `kube_apiserver_extra_flags` | Extra flags passed to self-hosted kube-apiserver. | [] | false | ## Applying diff --git a/docs/configuration-reference/platforms/packet.md b/docs/configuration-reference/platforms/packet.md index 7c21100f0..532a392ec 100644 --- a/docs/configuration-reference/platforms/packet.md +++ b/docs/configuration-reference/platforms/packet.md @@ -44,6 +44,7 @@ variable "management_cidrs" {} variable "node_private_cidr" {} variable "state_s3_bucket" {} variable "lock_dynamodb_table" {} +variable "kube_apiserver_extra_flags" {} backend "s3" { bucket = var.state_s3_bucket @@ -122,6 +123,8 @@ cluster "packet" { certs_validity_period_hours = 8760 + kube_apiserver_extra_flags = var.kube_apiserver_extra_flags + worker_pool "worker-pool-1" { count = var.workers_count @@ -210,6 +213,7 @@ node_type = var.custom_default_worker_type | `reservation_ids` | Specify Packet hardware reservation ID for instances. | - | false | | `reservation_ids_default` | Default reservation ID for nodes not listed in the `reservation_ids`. The value`next-available` will choose any reservation that matches the pool's device type and facility. | "" | false | | `certs_validity_period_hours` | Validity of all the certificates in hours. | 8760 | false | +| `kube_apiserver_extra_flags` | Extra flags passed to self-hosted kube-apiserver. | [] | false | | `worker_pool` | Configuration block for worker pools. There can be more than one. | - | true | | `worker_pool.count` | Number of workers in the worker pool. Can be changed afterwards to add or delete workers. | 1 | true | | `worker_pool.disable_bgp` | Disable BGP on nodes. Nodes won't be able to connect to Packet BGP peers. | false | false | diff --git a/docs/how-to-guides/authentication-with-dex-gangway.md b/docs/how-to-guides/authentication-with-dex-gangway.md index bab7af5f7..8908907f9 100644 --- a/docs/how-to-guides/authentication-with-dex-gangway.md +++ b/docs/how-to-guides/authentication-with-dex-gangway.md @@ -250,20 +250,18 @@ Configuring an API server to use the OpenID Connect authentication plugin requir * Dex is accessible to both your browser and the Kubernetes API server. -To reconfigure the API server with specific flags, edit the `kube-apiserver` DaemonSet as follows: - -```bash -kubectl -n kube-system edit daemonset kube-apiserver -``` - -Add the following CLI arguments to the API server pod: - -```bash ---oidc-issuer-url=https://dex.YOUR.CLUSTER.DOMAIN.NAME ---oidc-client-id=gangway ---oidc-username-claim=email ---oidc-groups-claim=groups -``` +To reconfigure the API server with specific flags, add following snippet to your cluster configuration: +```hcl +cluster "aws" { + ... + + kube_apiserver_extra_flags = [ + "--oidc-issuer-url=https://dex.YOUR.CLUSTER.DOMAIN.NAME", + "--oidc-client-id=gangway", + "--oidc-username-claim=email", + "--oidc-groups-claim=groups", + } +} Set the argument values according to the following table @@ -272,33 +270,10 @@ Set the argument values according to the following table | `--oidc-issuer-url`| Value of `issuer_host` in the Dex configuration. | | `--oidc-client-id` | The client ID obtained from GitHub in step 2. | -Example: - -```bash - containers: - - command: - . - . - . - - exec /hyperkube \ - kube-apiserver \ - --advertise-address=$(POD_IP) \ - --allow-privileged=true \ - --anonymous-auth=false \ - --authorization-mode=RBAC \ - . - . - . - --oidc-issuer-url=https://dex.YOUR.CLUSTER.DOMAIN.NAME \ - --oidc-client-id=gangway \ - --oidc-username-claim=email \ - --oidc-groups-claim=groups -``` - -It may take a few moments for the API server pods to restart. You can check the status by running the following command: +To apply configured changes, execute: ```bash -kubectl get pods -n kube-system +lokoctl cluster apply ``` ## Step 6: Authenticate with Gangway (for users) diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index a928acf56..9a91c0905 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -2964,9 +2964,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/bootkube.tf": &vfsgen۰CompressedFileInfo{ name: "bootkube.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 664, + uncompressedSize: 786, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcd\x4e\xeb\x30\x10\x85\xf7\x7e\x8a\x51\xae\x2a\xb5\x57\x25\x2c\x10\xcb\x3e\x01\x4b\x96\x08\x59\x4e\x3c\x49\xad\x26\x9e\x30\x33\x4e\xf9\x11\xef\x8e\x42\x69\x71\x13\x11\x65\xe5\xef\xf3\xd1\xd1\xf1\x3f\x78\xc4\xae\xb9\xd9\x93\x28\x7a\x78\x48\x15\x72\x44\x45\x01\x27\x82\x2a\xb0\x3e\xa4\x0a\x6b\x8a\x4d\x68\xb7\xd0\xbb\x18\x1a\x14\x95\x8d\xe9\xc9\xa7\x0e\xa1\xa8\x88\x74\x52\x0a\xf8\x30\x00\x42\x89\x6b\x84\x1d\x14\x65\x79\x7b\xfa\x2f\x82\x31\x00\x75\x97\x44\x91\x6d\x74\x3d\xc2\xe5\xdb\xc1\xe8\xb8\xcc\x99\x01\x70\x43\xb0\x82\x3c\x22\x0b\xe4\xea\x53\x43\xdc\x3b\x5d\x17\x2b\x29\x57\x52\x6c\x17\x77\x4f\x27\x3e\x8a\x7d\xa7\x88\x9b\x67\x03\x80\x5a\xfb\x65\xd8\x0e\xdc\x51\x2c\x53\x52\xbc\xbf\xb3\x8c\x35\xb1\x2f\x27\x55\xca\xff\x65\xf3\xe2\xe3\xd4\x62\x5a\xc1\xfa\xc0\x00\x30\x2f\x7c\x61\x06\x20\xa2\x1e\x89\x0f\xb6\xd7\xb4\xf0\x32\x66\x00\x06\xf2\xb6\x0e\xfe\x3a\xf0\xc7\x3c\xb3\x69\x49\xe4\x31\xd4\x38\x53\x4f\x5a\xce\xb2\x51\x3d\xf5\x2e\x44\x2b\xa9\x69\xc2\xeb\x6c\xd4\x2b\x36\x2d\x12\x5d\xd5\xa1\x65\x1c\x88\x35\xc4\x36\x8f\x9f\xb3\x5f\xdd\xb5\x2d\x63\xeb\x34\x50\x5c\xe8\x19\xfb\x7e\x69\x64\x15\x3b\xba\x2e\xf8\xa0\x6f\x76\x40\x0e\xe4\xed\x9e\x12\xcb\xb9\xda\xdf\x86\xf9\x34\x5f\x01\x00\x00\xff\xff\x24\x77\x90\x0c\x98\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd2\xc1\x8e\x94\x40\x10\x06\xe0\x7b\x3f\x45\x05\xb3\xc9\xae\x59\xf1\x60\x3c\xce\x13\x78\xf4\x68\x4c\xa5\xa1\xab\xd9\xce\x42\x17\x56\x55\xb3\xab\xc6\x77\x37\x1d\x64\x64\x67\x06\xc2\x89\x7c\x7f\xd1\xf5\xc3\x3b\xf8\x4a\x63\xfc\xf0\xc4\x6a\x14\xe0\x4b\xe9\x48\x32\x19\x29\x78\x55\x32\x85\xfb\xe7\xd2\x51\xcf\x39\xa6\xe1\x11\x26\x9f\x53\x24\x35\x7d\x70\x13\x87\x32\x12\x34\x1d\xb3\x55\xd2\xc0\x6f\x07\xa0\x5c\xa4\x27\x38\x41\xd3\xb6\x1f\xd7\xfb\x0c\x9c\x03\xe8\xc7\xa2\x46\x82\xd9\x4f\x04\x17\xd7\x09\x16\x2f\xed\x5e\x38\x00\x3f\x27\x54\x92\x85\x44\x2f\x3d\x9c\xe0\x5b\x64\x99\xbc\xdd\x37\x77\xda\xde\x69\xf3\x78\x35\x61\x7d\x12\xb2\xe2\x2f\xce\xf4\xf0\xdd\x01\x90\xf5\xe1\x68\xe4\x09\xfc\x8b\xa2\x70\x31\xfa\xfc\x09\x85\x7a\x96\xd0\xd6\x80\xb6\xef\xdb\xf8\x23\xe4\x7a\xa2\xda\x0b\x86\x24\x57\xe7\xd9\x56\x38\x0b\x07\x90\xc9\x5e\x58\x9e\x71\xb2\x72\xa0\x77\xc2\x01\xcc\x1c\xb0\x4f\xe1\xd6\xf0\x7f\x7e\x13\xb5\x6d\x92\x25\xf5\x74\x33\xb0\xe2\xbd\xd8\xd5\x1f\x78\xf2\x29\xa3\x96\x18\xd3\xeb\xcd\xfa\xdf\x88\xda\x5a\xf6\xdd\x48\x28\x34\xb3\x58\xca\xc3\xf5\xab\x2e\xc5\xff\x90\x1f\x06\xa1\xc1\x5b\xe2\x7c\x10\xda\x09\x07\x50\xff\x16\xf4\x73\x5a\x3f\x12\xd2\xab\x89\xc7\x38\xfa\x41\xb7\xd8\xb1\xa8\x4b\x92\x98\xe2\xe2\xc7\x14\x92\xfd\xc4\x99\x24\x71\xc0\x27\x2e\xa2\xdb\x92\xc7\xc2\xfd\x71\x7f\x03\x00\x00\xff\xff\x77\x63\xe8\x83\x12\x03\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/cl": &vfsgen۰DirInfo{ name: "cl", @@ -3038,9 +3038,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4765, + uncompressedSize: 4924, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdf\x6f\x1b\xb9\x11\x7e\xd7\x5f\x31\xd0\x3d\x9c\x0c\xc8\x6b\xcb\x4e\xd3\xe4\x70\x79\x90\xe5\xf4\xce\xbd\xc4\x76\xa3\xf8\x0c\x5c\x51\x2c\x28\x72\x76\x97\x30\x97\x64\x39\xa4\x14\xa5\xb8\xff\xbd\x20\x77\x25\xaf\xa5\x15\x6a\x27\x4d\x1e\xa2\x68\x39\xdf\xf7\xcd\x4f\xce\x6a\xc9\x9c\x64\x0b\x85\x30\xe4\x2a\x90\x47\x97\x6b\x56\xe3\x10\xfe\x33\x00\xf0\x6b\x8b\xd0\xfe\x79\x07\xe4\x9d\xd4\xe5\x00\x40\x20\x71\x27\xad\x97\x46\xc3\x3b\x18\xde\x69\xf9\xef\x80\xd0\x9a\x43\x34\x87\x91\x75\x68\x51\x0b\x14\xe0\x0d\x08\x4d\xf9\x57\xa3\xf1\x68\x38\xf8\x73\x30\xf8\x01\xa6\xf7\xf3\xc1\xe0\x91\x78\xf3\xf8\x25\xa4\xd3\xfb\x39\x7c\x32\xc1\xe3\x5f\xce\xe1\xf2\x7a\x0e\x7f\x18\x8d\x30\xc2\xac\xcc\x80\xad\x28\xc3\x2f\xac\xb6\x0a\x33\x6e\xea\x86\x74\x9f\x2d\x97\xe2\xbb\x09\xaf\x2e\x5b\xce\x3f\xce\x6f\xa7\xd3\x8b\x8b\xd9\xdf\xa6\xbf\xbd\x9f\x9d\x6e\xfc\x94\x9a\x3c\xd3\x1c\xa9\xcb\xcf\x8d\xf6\xce\x28\x85\x2e\xe7\x26\x68\xdf\x27\x42\x87\x7a\x81\x2e\x89\x28\x58\x50\xbe\xfd\x7a\xb2\x2f\xeb\x3a\x9d\x04\x53\xc0\x23\x2e\xc1\x48\x66\x98\x41\xcd\x62\x42\x68\x37\x00\x2b\xe3\x1e\xfe\xdf\xe4\x0d\x26\xed\x30\x75\x5c\x8d\x14\x1d\xb2\x4e\x9c\x7f\x80\xfb\x0a\x35\x08\x23\x75\x09\xbe\x42\x08\xb6\x74\x4c\x20\x75\x9c\xb2\x8a\x69\x04\xa3\xc1\x9f\x67\x54\x33\xa5\xb6\xa1\x6d\xe0\x56\x15\xea\x04\x55\xb1\x65\x84\x89\xb9\x21\xa9\x4b\x85\x4f\x11\xb4\x11\x38\x7e\x04\xa9\x18\x81\x36\x1e\x50\x9b\x50\x56\x50\x63\x6d\xdc\x1a\x46\x67\xbf\x5c\x1c\x25\x34\x6f\xc0\x05\x0d\xb5\x71\x08\xbe\x62\x3a\xe1\x6e\x99\x4d\x01\x0f\x61\x81\xc7\xcc\x4a\x42\xb7\x44\x07\x52\x83\x65\x8e\x29\x85\x6a\x0c\x64\x60\x85\xa0\xb1\x69\x81\x40\x98\x20\x19\x2c\x64\x59\xa6\xb3\x0d\x4c\x06\xf7\xd2\x57\xf0\xeb\xf4\x89\xd2\x8e\x48\xaa\x4c\x50\x02\x16\x08\x85\x4c\x0f\xaa\x24\xb6\x30\x2e\x01\x5a\x67\x44\xe0\x29\x23\x84\x3e\x58\x1a\x83\xf4\x3f\x12\x38\xe4\xa6\xae\xb7\x2d\x18\xe8\x51\x39\xc1\x2a\x52\x26\xb7\x3e\x4d\x3f\x8e\xc1\x9b\x04\x55\xca\x25\x82\x55\xa8\xfd\x3a\x3a\x17\x28\x65\xb1\x8d\x4a\x61\x1c\xa0\xe7\x02\x98\x16\x3b\x7e\x67\x7b\xb5\x32\xf4\xe7\x59\x8d\x42\x86\x7a\xb8\x5f\x35\xef\x67\x67\x3b\xe9\x8b\xd8\x9d\xf2\xed\xaf\xd7\x9d\x0a\xea\x6b\xd8\x5d\x09\x29\x80\xcf\x56\xd0\x5f\xc3\x86\x9e\x33\x10\x9f\x30\x17\x8a\x79\xce\x5c\x0f\xf1\x75\x9c\x8d\xa6\x80\x1b\x8b\x8e\xf9\x58\xa9\xf3\x35\x79\xac\x61\xc4\x8d\x43\x43\x60\x1c\xb4\xd6\xbb\x5d\x6b\x28\xe7\x15\xd3\x1a\xd5\x4b\xa4\x90\x8f\xd6\x3d\x4a\xa6\x1f\xaf\xa0\xc5\x4b\xce\xc7\xc6\xbb\x99\xc3\xa8\x31\x18\xc3\x02\x3d\x1b\x03\x53\xb6\x62\x63\x40\x51\x62\x8f\x9e\x25\x3a\x92\x46\xbf\x44\x0f\x0f\xce\xa1\xf6\x3d\x82\x7e\x6f\xc0\x62\x74\x36\x5a\xda\xc3\x31\x28\x3a\xd4\xe8\x24\x87\x96\x12\x28\xf0\x0a\x18\xc1\xd9\xd9\xeb\x49\xf6\xf6\x6d\x76\xba\x37\xe5\x25\x3d\xe4\x24\xbf\xf6\x26\xee\xc0\x84\x7b\x75\xba\x2f\x6b\x2e\xbf\xe2\x46\xd3\xfb\x8b\x39\x2c\x8d\x0a\x75\x6c\x25\xf8\xe5\xa2\x8f\xf2\xa5\x55\x5a\xda\xb3\x9e\x60\x7c\x8e\xb6\xfb\xac\xcd\x5d\x13\xeb\x56\x30\x27\xc6\x50\xda\xb3\x31\x48\x33\xe9\x75\x5e\x1a\x4b\x2f\x70\xbe\xc7\xf7\xab\x9b\xdb\xf9\x41\x15\x93\xd3\xbd\x98\xb7\x8d\x6a\x9d\xe4\x2f\x8a\x41\x4f\x00\xe6\xd6\x78\x48\x40\x31\xd4\x77\xf3\xcb\x54\xa4\x2c\x78\x43\x9c\xa9\xd8\x38\xa5\x33\xc1\x02\xc5\x73\xdb\xb9\x96\xc1\x07\x64\x4b\x8c\x85\xb1\xa1\xc0\xda\xfa\x75\xcb\x7c\x00\xa3\x9d\x8e\x46\x1f\x0b\xac\xe3\x74\xeb\xe0\x5d\x1b\x8f\x63\xa0\x95\xf4\xbc\x8a\x16\x52\x1f\x5b\xc5\x38\x42\xe1\x4c\xdd\xb0\x7b\xd3\x35\x6d\x2e\x14\x6b\x88\xe4\x42\xe1\x4f\x50\x79\x6f\xe9\xa7\x93\x93\x52\xfa\x2a\x2c\xe2\x3e\x72\xe2\xd1\x39\x56\x18\x57\x1f\x5b\x67\x96\x52\xa0\xa3\x9e\xef\x8e\xd9\x8a\x4e\x24\x51\x40\x3a\x79\x75\x7e\x76\x7a\x60\x28\x32\x57\xa2\xcf\x93\x23\xbd\xd9\x56\x92\xfc\xa8\x71\xff\xa8\x67\x0a\x08\x21\xe3\x67\xa6\xa0\x41\x6a\x43\x32\xfd\x74\x4d\xd1\xb1\x55\x25\x79\xd5\x0e\xc6\xce\xf5\xf1\x78\x25\x31\x21\x50\x0c\xf7\x52\xfa\xcf\x7f\x1d\x5c\x04\xb8\xe2\x39\x69\x69\x2d\xfa\x6f\x10\x3c\xdb\x02\x41\xfc\xc8\xa4\x46\x07\x1f\xa4\x0e\x5f\xe2\xff\x0b\x59\xc2\x16\xfb\x7f\x8a\xda\xec\x41\xdf\x25\xe8\xbe\x89\xcd\x77\x8b\xf1\xac\xa4\x27\xfb\x51\xcd\x6c\xc7\xe8\x5d\x7a\x04\x30\xfc\xc8\x34\x2b\x51\x5c\xac\x87\x91\xfd\x83\x79\x30\xb5\xf1\x72\x99\x46\x3c\xc0\x70\xe6\x90\xf9\xed\xe3\x3b\x4d\x16\xb9\x2c\x64\x93\xa3\x3f\xf7\xe5\xdf\xd8\x36\xfd\x02\x3d\x93\x2a\x25\xdd\xb3\xb8\x40\xc5\x25\x1d\x1c\x92\x09\x8e\x23\xb5\x0b\x2d\x4f\x6e\x85\x78\x77\x19\xdd\x95\x4f\x54\xe5\x0f\xb8\xfe\x86\x00\xce\xe7\xbf\x82\x0d\x0b\x25\x39\x44\x80\xd4\xa3\x81\xd0\xc1\x8f\xf1\x4a\xfc\x71\xa7\xec\x19\x11\xfa\x5c\x48\xd7\x10\xed\x60\xdd\x32\x5f\x45\x0f\x18\x08\xe9\x90\xfb\xb8\xb7\xac\x2a\x74\x08\x25\xea\x78\xe3\xa2\x80\x84\xd0\x2d\xe1\xd4\xcf\x22\xde\xc0\x29\x85\x04\x84\xdc\xa1\x8f\x6b\xf3\x81\x01\xf6\x44\x91\x46\x1f\x0b\x29\xaf\x7d\xe8\xd5\x34\xbb\xbe\x02\xa9\x3d\xba\x22\x8e\x8d\x8f\x9f\xef\x32\xb8\x23\x84\x37\x6f\xdf\x4c\x40\xc6\x25\xab\x19\x2b\x9b\xd6\x8a\x84\xed\x7e\xf6\xf7\x50\x2f\x0c\x14\x8e\xd5\x48\xd9\xbe\x98\x43\x6b\xfa\xab\x37\xa7\x4f\x15\x56\x86\x7c\xce\xa5\xe8\x8f\xd9\xec\xea\xf2\x13\x5c\xdd\x2e\x5f\x81\x63\xba\xc4\x14\x3e\x22\x59\xea\xf8\x29\x2e\x4a\x71\x67\xa6\x83\xb1\xd8\x1b\xe6\x93\xd3\x2c\xfd\x3d\x99\xbc\xde\xc9\x9d\x35\xe2\x5b\x64\xfc\x16\x16\xe8\x34\x7a\x24\xb0\x46\xbc\x4c\xc9\x59\xbf\x92\xb8\xb6\x4a\x8e\x07\xd5\xfc\xfc\xf3\xfb\x9b\xcb\xc1\xb3\x24\xb5\x50\x94\x0d\x3e\x57\x08\x13\xf2\x70\x75\x0b\x2b\xa9\x54\x2c\x2d\x87\x69\x41\x16\xa9\xa8\xe3\xce\x9c\x6f\x77\xe6\x71\xba\x55\x27\xa7\xbe\x3a\x68\x10\xeb\x5f\x68\xca\x06\x51\xcc\xa0\xe3\x76\x8f\xcb\x8d\xbb\xe7\xfd\xee\x6e\x5e\xec\x85\xa9\x99\xd4\x39\x85\xa2\x90\x5f\x7a\xb3\xf0\x8f\x80\x4e\x62\xd3\x84\xcd\xe9\xb6\x16\xa3\xd8\xc6\x6e\xab\x95\x69\x5a\xa1\x43\x01\x8b\xf5\x56\x2a\x5c\xb6\x7a\x24\x6d\x7e\x0f\xc8\x94\xe1\x4c\xb5\x4b\x43\x61\x4c\xd6\x4a\xce\x68\xc9\xb3\x27\x67\x8e\xe0\xf9\xb9\x7d\x62\xb8\xe3\x2e\xea\xf8\x6f\xee\xd0\x1a\x17\x77\xec\xbe\x99\xb4\x30\x46\xf5\xbc\x17\x24\xcb\xf8\xe2\x53\x62\xdc\x3a\x99\x66\x6a\xed\x25\x8f\x6f\x53\x2d\x58\xda\x16\x2c\x79\x87\xac\x26\x18\xcd\x98\x92\xdc\x1c\xed\xcf\xf7\x82\x29\xc2\x5e\x5d\xac\x2c\x1d\x96\x69\x82\xf6\xe6\xa0\x15\x11\x23\xde\xa9\xb3\xe9\xa3\x15\x7c\x60\x6b\x74\x30\x6a\x09\x9b\x99\xed\x02\xf6\x0c\xac\xad\x9b\x5d\x69\xf1\x6c\x33\xce\x67\xe8\xbc\x2c\x24\x67\x7e\xe7\x27\x0a\x74\x9e\xf2\x25\x53\x52\x48\xbf\xce\x2d\x3a\x69\x44\x5e\x99\xe0\xa8\x57\xf2\xef\xed\xc9\xb8\x2c\xc6\x57\xd6\xa8\x9d\x77\xb0\xe3\x0e\xd7\x58\x3f\x77\x8a\xbd\xf9\xeb\xeb\x38\xc5\xfe\x1b\x00\x00\xff\xff\x81\xea\xf8\x6f\x9d\x12\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdf\x6f\x1b\xb9\x11\x7e\xd7\x5f\x31\xd0\x3d\x44\x06\xe4\xb5\x65\xa7\x69\x72\xb8\x3c\xc8\x72\x7a\xe7\x5e\x62\xbb\x51\x7c\x06\xae\x28\x16\x14\x39\xbb\x4b\x98\x4b\xb2\x1c\x52\xb2\x52\xe4\x7f\x2f\xc8\x5d\xc9\xfa\xb1\x42\xed\xa4\xf6\x83\xd7\x5a\xce\x37\xdf\xfc\xe0\xc7\xa1\xe6\xcc\x49\x36\x53\x08\x7d\xae\x02\x79\x74\xb9\x66\x35\xf6\xe1\x3f\x3d\x00\xbf\xb4\x08\xed\xcf\x7b\x20\xef\xa4\x2e\x7b\x00\x02\x89\x3b\x69\xbd\x34\x1a\xde\x43\xff\x4e\xcb\x7f\x07\x84\xd6\x1c\xa2\x39\x0c\xac\x43\x8b\x5a\xa0\x00\x6f\x40\x68\xca\xbf\x1a\x8d\x47\xfd\xde\xb7\x5e\xef\x27\x18\xdf\x4f\x7b\xbd\x27\xc7\xab\xd7\x2f\x71\x3a\xbe\x9f\xc2\x67\x13\x3c\xfe\xe5\x1c\x2e\xaf\xa7\xf0\xa7\xd1\x08\x03\xcc\xca\x0c\xd8\x82\x32\x7c\x64\xb5\x55\x98\x71\x53\x37\x4e\xf7\xbd\xe5\x52\xfc\xb0\xc3\xab\xcb\xd6\xe7\x9f\xe7\xb7\xe3\xf1\xc5\xc5\xe4\x6f\xe3\xdf\x3f\x4c\x4e\x57\x71\x4a\x4d\x9e\x69\x8e\xb4\xe9\x9f\x1b\xed\x9d\x51\x0a\x5d\xce\x4d\xd0\xbe\x8b\x84\x0e\xf5\x0c\x5d\x22\x51\xb0\xa0\x7c\xfb\xf1\x68\x9f\xd6\x75\x5a\x09\xa6\x80\x27\x5c\x82\x81\xcc\x30\x83\x9a\xc5\x82\xd0\x6e\x02\x16\xc6\x3d\xfc\xbf\x9d\x37\x98\xb4\xe3\x69\x23\xd4\xe8\x62\xc3\xd9\x46\x9e\x7f\x82\xfb\x0a\x35\x08\x23\x75\x09\xbe\x42\x08\xb6\x74\x4c\x20\x6d\x04\x65\x15\xd3\x08\x46\x83\x3f\xcf\xa8\x66\x4a\xad\x53\xdb\xc0\x2d\x2a\xd4\x09\xaa\x62\xf3\x08\x13\x6b\x43\x52\x97\x0a\xb7\x11\xb4\x11\x38\x7c\x02\xa9\x18\x81\x36\x1e\x50\x9b\x50\x56\x50\x63\x6d\xdc\x12\x06\x67\xbf\x5e\x1c\x25\x34\x6f\xc0\x05\x0d\xb5\x71\x08\xbe\x62\x3a\xe1\xae\x3d\x9b\x02\x1e\xc2\x0c\x8f\x99\x95\x84\x6e\x8e\x0e\xa4\x06\xcb\x1c\x53\x0a\xd5\x10\xc8\xc0\x02\x41\x63\xb3\x05\x02\x61\x82\x64\x30\x93\x65\x99\xd6\x36\x30\x19\xdc\x4b\x5f\xc1\x6f\xe3\x2d\xa6\x1b\x24\xa9\x32\x41\x09\x98\x21\x14\x32\xbd\xa8\x12\xd9\xc2\xb8\x04\x68\x9d\x11\x81\xa7\x8a\x10\xfa\x60\x69\x08\xd2\xbf\x22\x70\xc8\x4d\x5d\xaf\xb7\x60\xa0\x27\xe6\x04\x8b\xe8\x32\x85\xf5\x79\xfc\x69\x08\xde\x24\xa8\x52\xce\x11\xac\x42\xed\x97\x31\xb8\x40\xa9\x8a\x6d\x56\x0a\xe3\x00\x3d\x17\xc0\xb4\xd8\x89\x3b\xdb\xeb\x95\xbe\x3f\xcf\x6a\x14\x32\xd4\xfd\xfd\xae\xf9\x30\x39\xdb\x29\x5f\xc4\xde\x68\xdf\xee\x7e\xdd\xe9\xa0\xae\x0d\xbb\x4b\x21\x25\xf0\xd9\x0c\xba\x7b\xd8\xd0\x73\x04\x71\xcb\x73\xa1\x98\xe7\xcc\x75\x38\xbe\x8e\xda\x68\x0a\xb8\xb1\xe8\x98\x8f\x9d\x3a\x5d\x92\xc7\x1a\x06\xdc\x38\x34\x04\xc6\x41\x6b\xbd\xbb\x6b\x0d\xe5\xbc\x62\x5a\xa3\x7a\x09\x15\xf2\xd1\xba\x83\xc9\xf8\xd3\x15\xb4\x78\x29\xf8\xb8\xf1\x6e\xa6\x30\x68\x0c\x86\x30\x43\xcf\x86\xc0\x94\xad\xd8\x10\x50\x94\xd8\xc1\x67\x8e\x8e\xa4\xd1\x2f\xe1\xc3\x83\x73\xa8\x7d\x07\xa1\x3f\x1a\xb0\x98\x9d\x15\x97\x76\x71\x4c\x8a\x0e\x35\x3a\xc9\xa1\x75\x09\x14\x78\x05\x8c\xe0\xec\xec\xcd\x28\x7b\xf7\x2e\x3b\xdd\x53\x79\x49\x0f\x39\xc9\xaf\x9d\x85\x3b\xa0\x70\xaf\x4f\xf7\x69\x4d\xe5\x57\x5c\x71\xfa\x70\x31\x85\xb9\x51\xa1\x8e\x5b\x09\x7e\xbd\xe8\x72\xf9\xd2\x2e\x2d\xed\x59\x47\x32\xbe\x44\xdb\x7d\xaf\xcd\x59\x13\xfb\x56\x30\x27\x86\x50\xda\xb3\x21\x48\x33\xea\x0c\x5e\x1a\x4b\x2f\x08\xbe\x23\xf6\xab\x9b\xdb\xe9\x41\x16\xa3\xd3\xbd\x9c\xb7\x1b\xd5\x3a\xc9\x5f\x94\x83\x8e\x04\x4c\xad\xf1\x90\x80\x62\xaa\xef\xa6\x97\xa9\x49\x59\xf0\x86\x38\x53\x71\xe3\x94\xce\x04\x0b\x14\xd7\xad\x75\x2d\x83\x8f\xc8\xe6\x18\x1b\x63\xe5\x02\x6b\xeb\x97\xad\xe7\x03\x18\xad\x3a\x1a\x7d\x2c\xb0\x8e\xea\xb6\x81\x77\x6d\x3c\x0e\x81\x16\xd2\xf3\x2a\x5a\x48\x7d\x6c\x15\xe3\x08\x85\x33\x75\xe3\xdd\x9b\x4d\xd3\xe6\x40\xb1\x86\x48\xce\x14\xfe\x0c\x95\xf7\x96\x7e\x3e\x39\x29\xa5\xaf\xc2\x2c\xce\x23\x27\x1e\x9d\x63\x85\x71\xf5\xb1\x75\x66\x2e\x05\x3a\xea\xf8\xec\x98\x2d\xe8\x44\x12\x05\xa4\x93\xd7\xe7\x67\xa7\x07\x44\x91\xb9\x12\x7d\x9e\x02\xe9\xac\xb6\x92\xe4\x07\x4d\xf8\x47\x1d\x2a\x20\x84\x8c\xcf\x4c\x41\x83\xd4\xa6\x64\xfc\xf9\x9a\x62\x60\x8b\x4a\xf2\xaa\x15\xc6\x8d\xe3\xe3\xe9\x48\x62\x42\xa0\xe8\xef\x95\xf4\x9f\xff\x3a\x38\x08\x70\xc5\x73\xd2\xd2\x5a\xf4\xdf\x41\x78\xb2\x06\x82\xf8\xc8\xa4\x46\x07\x1f\xa5\x0e\x8f\xf1\xff\x42\x96\xb0\xc6\xfe\x9f\xa4\x56\x73\xd0\x0f\x11\xba\x6f\x72\xf3\xc3\x64\x3c\x2b\x69\x6b\x3e\xaa\x99\xdd\x30\x7a\x9f\x5e\x01\xf4\x3f\x31\xcd\x4a\x14\x17\xcb\x7e\xf4\xfe\xd1\x3c\x98\xda\x78\x39\x4f\x12\x0f\xd0\x9f\x38\x64\x7e\xfd\xfa\x4e\x93\x45\x2e\x0b\xd9\xd4\xe8\xdb\x3e\xfd\x1b\xdb\x96\x5f\xa0\x67\x52\xa5\xa2\x7b\x16\x07\xa8\x38\xa4\x83\x43\x32\xc1\x71\xa4\x76\xa0\xe5\x29\xac\x10\xcf\x2e\xa3\x37\xe9\x13\x55\xf9\x03\x2e\xbf\x23\x81\xd3\xe9\x6f\x60\xc3\x4c\x49\x0e\x11\x20\xed\xd1\x40\xe8\xe0\x55\x3c\x12\x5f\xed\xb4\x3d\x23\x42\x9f\x0b\xe9\x1a\x47\x3b\x58\xb7\xcc\x57\x31\x02\x06\x42\x3a\xe4\x3e\xce\x2d\x8b\x0a\x1d\x42\x89\x3a\x9e\xb8\x28\x20\x21\x6c\xb6\x70\xda\xcf\x22\x9e\xc0\xa9\x84\x04\x84\xdc\xa1\x8f\x63\xf3\x01\x01\xdb\x62\xa4\xd1\xc7\x46\xca\x6b\x1f\x3a\x39\x4d\xae\xaf\x40\x6a\x8f\xae\x88\xb2\xf1\xe9\xcb\x5d\x06\x77\x84\xf0\xf6\xdd\xdb\x11\xc8\x38\x64\x35\xb2\xb2\xda\x5a\xd1\x61\x3b\x9f\xfd\x3d\xd4\x33\x03\x85\x63\x35\x52\xb6\x4f\xe6\xd0\x98\xfe\xfa\xed\xe9\x36\xc3\xca\x90\xcf\xb9\x14\xdd\x39\x9b\x5c\x5d\x7e\x86\xab\xdb\xf9\x6b\x70\x4c\x97\x98\xd2\x47\x24\x4b\x1d\x9f\xe2\xa0\x14\x67\x66\x3a\x98\x8b\x3d\x31\x1f\x9d\x66\xe9\xf7\x64\xf4\x66\xa7\x76\xd6\x88\xef\xa1\xf1\x7b\x98\xa1\xd3\xe8\x91\xc0\x1a\xf1\x32\x26\x67\xdd\x4c\xe2\xd8\x2a\x39\x1e\x64\xf3\xcb\x2f\x1f\x6e\x2e\x7b\xcf\xa2\xd4\x42\x51\xd6\xfb\x52\x21\x8c\xc8\xc3\xd5\x2d\x2c\xa4\x52\xb1\xb5\x1c\xa6\x01\x59\xa4\xa6\x8e\x33\x73\xbe\x9e\x99\x87\xe9\x54\x1d\x9d\xfa\xea\xa0\x41\xec\x7f\xa1\x29\xeb\x45\x32\xbd\x8d\xb0\x3b\x42\x6e\xc2\x3d\xef\x0e\x77\x75\xb1\x17\xa6\x66\x52\xe7\x14\x8a\x42\x3e\x76\x56\xe1\x1f\x01\x9d\xc4\x66\x13\x36\xab\xdb\x5e\x8c\x64\x1b\xbb\x35\x57\xa6\x69\x81\x0e\x05\xcc\x96\x6b\xaa\x70\xd9\xf2\x91\xb4\xfa\x3e\x20\x53\x86\x33\xd5\x0e\x0d\x85\x31\x59\x4b\x39\xa3\x39\xcf\xb6\xd6\x1c\xc1\xf3\x6b\xbb\x65\xb8\x13\x2e\xea\xf8\x37\x77\x68\x8d\x8b\x33\x76\x97\x26\xcd\x8c\x51\x1d\xf7\x82\x64\x19\x2f\x3e\x25\xc6\xa9\x93\x69\xa6\x96\x5e\xf2\x78\x9b\x6a\xc1\xd2\xb4\x60\xc9\x3b\x64\x35\xc1\x60\xc2\x94\xe4\xe6\x68\x5f\xdf\x0b\xa6\x08\x3b\x79\xb1\xb2\x74\x58\x26\x05\xed\xac\x41\x4b\x22\x66\x7c\xa3\xcf\xc6\x4f\x56\xf0\x91\x2d\xd1\xc1\xa0\x75\xd8\x68\xb6\x0b\xd8\x21\x58\xeb\x30\x37\xa9\xc5\xb5\x8d\x9c\x4f\xd0\x79\x59\x48\xce\xfc\xce\x57\x14\xe8\x3c\xe5\x73\xa6\xa4\x90\x7e\x99\x5b\x74\xd2\x88\xbc\x32\xc1\x51\x27\xe5\x3f\xda\x95\x71\x58\x8c\x57\xd6\xc8\x9d\x6f\x60\xc7\x19\xae\xb1\x7e\xae\x8a\xbd\xfd\xeb\x9b\x1d\x15\xdb\xde\x3e\x39\x3e\x7a\xc7\xf2\x42\xad\x8f\xcd\xdd\x2c\xc6\xf7\x90\xde\x83\x8d\x9a\x9f\x6e\xc1\x84\xaa\x38\x8e\x7a\x88\x7b\x77\xd8\x7d\x6a\x7b\xe7\xd6\xde\xf9\xfd\xdf\x00\x00\x00\xff\xff\x5e\xee\x40\x90\x3c\x13\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers": &vfsgen۰DirInfo{ name: "workers", @@ -3250,9 +3250,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/bootkube.tf": &vfsgen۰CompressedFileInfo{ name: "bootkube.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 799, + uncompressedSize: 866, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xd6\xbe\xcb\x87\x04\xe3\xca\x65\xbf\x80\x23\x47\x84\xa2\xb4\x71\x3b\x6b\x6d\x5c\xd9\x4e\x01\x21\xfe\x3b\xca\xd6\x8d\x32\xb5\xab\x7a\x7c\x9e\xbc\x76\xde\xfc\x83\x17\xec\x9a\x87\x3d\xab\x61\x84\xe7\x5c\xa1\x24\x34\x54\x08\xaa\x68\x0a\xff\x0f\xb9\xc2\x9a\x53\x43\xed\x3d\xf4\x21\x51\x83\x6a\x7a\xe7\x7a\x8e\xb9\x43\xd8\x54\xcc\x56\x90\x0d\x7c\x39\x00\xe5\x2c\x35\xc2\x0e\x36\xdb\xed\xe3\xe9\xbf\x00\xce\x01\xd4\x5d\x56\x43\xf1\x29\xf4\x08\x0b\xdf\x0e\xc6\x20\xdb\x39\xe5\x00\xc2\x40\x5e\x51\x46\x14\x5d\x72\x60\x07\xaf\xc5\x3a\x3c\xa9\x8f\xdc\x07\x4a\x47\xf1\xcd\x01\xa0\xd5\xf1\x96\x3a\xc5\x71\x32\xe1\xae\x43\x99\x7c\x2d\xa1\x65\x7d\x1f\x49\x16\x23\xcf\xea\x85\x72\x00\x09\xed\x9d\xe5\xe0\x7b\xcb\x37\x8c\x19\x35\x73\x68\xf0\x21\x1b\x47\x34\xac\x8d\x38\xf9\x1e\x6d\xcf\xf1\xca\x59\xa1\x1c\xc0\xc0\xd1\xd7\x14\xd7\x86\x9d\xce\x39\x53\xa5\x28\x94\x91\x6a\x5c\x95\x4e\xc2\x9c\x9a\xb5\x37\xdd\xb2\xe6\xa6\xa1\x8f\xd5\xf6\xfe\x50\xa5\x8c\x14\xaa\x0e\xbd\xe0\xc0\x62\x94\xda\xe5\xc8\x6b\xea\x57\x0c\x6d\x2b\xd8\x86\xb2\xf8\x0d\x71\x46\x1d\x1f\x1c\x8a\xa9\x1f\x43\x47\x91\xec\xd3\x0f\x28\xc4\xd1\xef\x39\x8b\x9e\xc7\x5d\x27\xdc\xb7\xfb\x09\x00\x00\xff\xff\xde\x0e\x28\xb6\x1f\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xb1\x8e\xdb\x30\x0c\x86\x77\x3d\x05\x91\x2e\x2d\xd0\xa6\x6b\x97\x3c\x41\xc7\x8e\x45\x21\xc8\x16\xed\x10\x91\x45\x83\xa4\xdc\x1c\x0e\xf7\xee\x07\x25\x4e\xce\x17\xd8\x31\x3c\x7e\x9f\x7e\x51\x3f\xbf\xc0\x1f\x4c\xdd\x8f\x23\xab\x61\x84\xdf\xa5\x41\xc9\x68\xa8\x10\x54\xd1\x14\xbe\x9e\x4a\x83\x2d\xe7\x8e\xfa\xef\x30\x84\x4c\x1d\xaa\xe9\x37\x37\x70\x2c\x09\x61\xd7\x30\x5b\x45\x76\xf0\xea\x00\x94\x8b\xb4\x08\x07\xd8\xed\xf7\x3f\xaf\xff\x1d\x70\x0e\xa0\x4d\x45\x0d\xc5\xe7\x30\x20\xac\x7c\x07\x98\x82\xec\x97\x94\x03\x08\x23\x79\x45\x99\x50\x74\xcd\x81\x03\xfc\xad\xd6\xe9\x97\xfa\xc8\x43\xa0\x7c\x11\xff\x39\x00\xb4\x36\x3e\x53\xe7\x38\xce\x26\x9c\x12\xca\xec\x6b\x0d\xad\xe3\xfb\x48\xb2\x1a\x79\x53\xef\x94\x03\xc8\x68\xff\x59\x4e\x7e\xb0\xf2\xc4\x58\x50\x0b\x87\x46\x1f\x8a\x71\x44\xc3\xd6\x88\xb3\x1f\xd0\x8e\x1c\x1f\x9c\x0d\xca\x01\x8c\x1c\x7d\x4b\x71\xeb\xb2\xf3\x39\x37\xaa\x16\x85\x32\x51\x8b\x9b\xd2\x55\x58\x52\x8b\xf6\xe6\x57\xd6\xd2\x75\x74\xde\x6c\xef\x13\x55\xcb\xc8\xa1\x49\xe8\x05\x47\x16\xa3\xdc\xaf\x47\x3e\x52\x1f\x62\xe8\x7b\xc1\x3e\xd4\xc1\x9f\x88\x0b\xca\x01\xd4\xc5\xf3\x61\xa4\xeb\x0e\x78\x3c\x9b\x04\xdf\xa5\xd0\xeb\x52\xdd\xa6\x2e\x3b\x8b\x62\xea\xa7\x90\x28\x92\xbd\xf8\x11\x85\x38\xfa\x23\x17\xd1\xdb\xc4\xdb\x84\x7b\x73\xef\x01\x00\x00\xff\xff\xe4\xce\x65\x21\x62\x03\x00\x00"), }, "/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/cl": &vfsgen۰DirInfo{ name: "cl", @@ -3317,9 +3317,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/bare-metal/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4769, + uncompressedSize: 4928, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\xdf\x6f\xdc\x46\x0e\x7e\xdf\xbf\x82\x70\x1e\x62\x03\x8e\xfc\x23\x69\xe2\x5b\xb4\x0f\xc1\xda\x87\x06\x57\x27\x6e\xed\xb4\x07\x14\x85\xc0\x9d\xa1\x56\x03\x8f\x66\x54\x72\xb4\xeb\x45\xd1\xff\xfd\x30\x23\x69\x7f\xca\x39\xfb\xe0\xf3\xcb\x42\xf2\x0c\xf9\xf1\x23\xf9\x91\x9a\x23\x1b\x9c\x5a\x82\x03\x65\x1b\x09\xc4\xb9\xc3\x8a\x0e\xe0\xaf\x11\x40\x58\xd6\x04\xdd\xdf\x0f\x20\x81\x8d\x9b\x8d\x00\x34\x89\x62\x53\x07\xe3\x1d\xfc\x00\x07\x5f\x9d\xf9\xb3\x21\xe8\xae\x43\xba\x3e\xfa\x7b\x34\x7a\x05\x53\x64\x7a\x53\x51\x40\x3b\x1a\xad\xfd\x54\x18\x54\x39\xf5\x0f\x79\x19\x42\x9d\x93\xd3\xb5\x37\x2e\x3c\xc7\xe3\x75\x67\x01\x7e\xbc\xbb\xbb\x01\x26\xd4\x6f\xbc\xb3\x4b\xe8\x6d\xc1\x21\x65\xb3\x0c\xa2\xfd\xf1\xc9\x49\xef\x2f\xa3\x07\xac\x6a\x4b\x99\xf2\xd5\xf8\xe2\xf4\xe2\xf4\x28\xc1\x5c\x03\xf3\x92\xab\x12\x9d\x23\xfb\x1c\x30\x93\xf6\x0a\x14\x9e\x01\x61\xe2\x99\xbe\xdc\xc2\xc4\xbb\x80\xc6\x11\xc3\x4f\xc6\x35\x0f\xa0\x89\xcd\x1c\x83\x99\x13\x1c\x2a\xcf\xe4\xe5\x8d\x84\xe8\xf5\x18\xba\xc7\x29\x05\x5c\x3d\xa0\xad\x4b\x3c\x86\xc2\x62\x50\xc8\xab\xa3\xfd\x73\x7b\xb6\x7f\x4a\x87\x07\x62\x99\x13\x8b\xf1\xee\x39\xb1\xfc\xda\x5e\x79\x72\x2c\xc1\xc3\xcd\xbf\xaf\x00\x9d\x06\xe3\x24\xa0\xb5\xff\xd7\xf0\x5e\x41\x85\xaa\x34\x8e\x64\xf4\x0a\xee\x88\x19\x0b\xcf\xd5\x6b\x01\xc5\x8d\x26\x38\x48\x41\xca\x52\x02\x55\x07\xa0\x3d\x09\x38\x1f\xa0\x66\x5f\x13\xdb\x25\x48\x53\xd7\x9e\x03\x58\x23\x41\xc0\x17\x50\x61\x2d\x20\x1e\x16\x04\xda\x43\x28\x8d\x64\x9b\x1c\x2a\xef\x02\x7b\x6b\xbb\x9e\x90\x21\x26\xa3\xad\xc3\x96\xce\xa3\x7d\x3e\xbf\xb0\x26\x26\x9d\x4e\x45\x87\x6b\x8b\xa9\x4d\xa4\x2b\xd4\xdf\x9d\xd7\x74\xf6\xc7\x6e\x0e\x37\xfc\x57\xa8\x5e\xd6\xbd\xd1\xe4\x82\x29\x96\xc6\xcd\xe0\xfa\xe3\x04\x50\x6b\x26\x91\x35\xa4\xef\xce\xc7\xdf\xbd\x1b\x9f\x9e\x8e\xf1\x6c\xfc\x0f\x35\x46\xfa\x16\x3c\xed\x2b\x34\xee\x65\x11\xfe\xf3\xe7\xcb\xcf\xdb\x04\x6d\x36\xf0\x1e\x9a\x85\xe7\xfb\x97\x4b\x54\x6b\x6d\x3f\x49\xe7\xc7\x10\x7f\xde\x3e\xe6\xfe\x65\xf2\xd4\x79\x7f\x7a\x8e\xa6\xe7\xe3\xf3\x62\x7c\xf1\xfe\x18\x56\xaf\xd4\xdb\xf1\xfb\xb3\xf1\x87\x0f\x8f\x21\x7d\xb1\x94\x75\x60\xf7\xd2\x75\xbe\x99\xae\x8e\xb6\x6f\x66\x50\x59\x95\x8b\x33\x75\x4d\x61\x10\x56\x85\xf5\xe3\xa8\xae\xb1\x86\x82\x7d\xd5\x2b\x44\x97\xba\xe0\xd7\xdd\xbe\xab\x63\x13\xef\x0a\x33\x83\x95\xcb\x64\xb4\xc0\xc6\x86\xce\xe1\x5f\x7f\xb7\xa2\xa3\xd2\xc1\x86\x31\x3a\xdb\x44\x7c\x7f\x21\x1d\x8f\x1b\x43\x73\x77\x3c\xac\x2b\xfa\xf2\xf3\x6d\x82\x05\x8b\xd2\xa8\x12\x98\xc4\xdb\x79\x0b\x12\xb7\x7a\x33\x4a\xa9\x53\x94\xc1\x6f\x89\x5b\x49\x02\x7b\xdf\x4c\xa9\x45\xf2\x5a\x60\x61\xac\x05\xe5\xab\xaa\x71\x46\x61\x20\x58\x98\x50\x26\x05\xdb\x1d\x82\xdd\x58\xde\x64\xfe\xe8\xe0\xb1\x81\xb0\x95\x0f\x91\x32\xbf\xa7\xe5\xff\x50\x22\xb7\xb7\x3f\x42\xdd\x4c\xad\x51\x10\x0d\xa4\x71\xd2\x08\x31\xbc\x8e\x03\xe0\xf5\x4e\xde\x51\x84\x42\xae\x0d\x0f\xf2\x77\x83\x31\xb0\xc8\x90\x36\x4c\x2a\x78\x5e\xc2\xa2\x24\x26\x98\x91\x23\xc6\x40\x1a\x92\x05\x01\x29\x7d\x63\x35\x4c\x09\x6a\x8b\x8a\x74\x9c\x45\x29\xe5\x02\x42\x8a\x29\xc8\x13\x23\x77\x14\x62\x55\xe7\x55\x68\x86\x73\xfa\xf9\x13\x18\x17\x88\x0b\x54\x04\xd7\x77\x5f\xf7\xcd\xba\xa6\x9a\x12\xef\x95\xd4\xd9\xbb\x8b\xd3\x61\x5f\xa6\xce\xb1\x09\x5e\x53\x20\x15\xfd\xe4\x15\x85\xd2\xeb\x41\xff\xd7\xe9\x5f\x89\x95\xd5\x15\x08\x25\x41\xe9\x25\xc0\xa7\x9b\xf9\xbb\x5e\x2b\x1e\x8d\x77\x17\xd8\x41\x61\x58\xc2\x9b\xc2\x37\x4e\xef\xe4\xa7\xf6\x3a\x57\x46\x0f\xa7\x67\xf2\xe9\xf2\x97\xd6\x23\xa3\x9b\xa5\x8d\x00\x45\xcc\xcc\xc1\xbf\x9a\x29\xb1\xa3\x40\x02\xb5\xd7\xcf\x40\x72\x76\x9a\x9d\x67\xa7\xd9\xe9\xc9\xd9\xfb\x1d\x24\x42\x3c\x37\x8a\x1e\x45\xf3\xfd\xf7\x57\x5f\x2e\x47\x4f\x82\xd4\x99\x92\x6c\x74\x57\x12\x9c\x25\xda\xda\xae\x9a\x52\xec\x4c\xe2\x39\xe9\x54\xb8\xb1\xef\x72\xac\x4d\x7a\xc5\xc7\x89\xe7\xb3\xd3\x50\x3e\x7a\x21\xd6\xb8\x76\x92\x8d\x22\x98\xd1\x46\xd8\x03\x21\xb7\xe1\xbe\xdd\x0c\xf7\x15\xf8\x14\xcf\xf6\xd2\xdc\x2f\xe7\x9d\xdc\x48\x53\x14\xe6\x61\x30\x23\x3f\x37\xc4\x86\xda\xa6\xeb\x44\xbe\x57\x07\x82\xf6\xde\x0a\x37\x3a\x59\x24\x31\x9f\x2e\x57\xb0\xe1\xb2\xc3\x66\x64\x25\x1e\xd6\x2b\xb4\x9d\xa0\x14\xde\x67\x1d\xfc\x4c\xe6\x2a\xdb\x3a\x73\x04\x4f\xcf\xf3\xd6\xc5\x9d\x4c\x6b\xbf\x70\xd6\xa3\xce\x6b\xf6\xc1\x2b\xff\xdf\x36\xf2\x2d\xc3\x71\xef\xef\xe4\x7c\x5b\x4a\x3a\x5b\x60\xe2\xd2\xda\xa9\x45\x23\xa9\x42\x7a\x87\x89\xa5\xfb\x58\x25\xb6\x5b\x6b\x4d\x60\xbd\x22\x25\x89\x75\xb2\x7f\xbc\x52\xf1\x3f\x1b\xc3\x24\xad\x51\xe5\xab\xda\x58\xd2\x2d\xe3\x8a\x97\x75\xf0\xfd\xde\x99\xc1\x57\xd7\x08\x69\x30\x05\x28\x54\x25\xe9\xbc\x5f\x9a\x8d\x40\xe0\x86\xb2\xdd\x89\xb8\x75\x6a\x88\x82\xa9\xf7\x76\x8f\x80\x02\xad\xd0\x7e\xf8\xbf\x95\x14\x4a\xe2\x14\x61\xdc\x88\x31\xc4\xc5\xa2\x5d\x97\x7b\x36\x62\x0c\x53\xef\xc3\xd6\x4a\xdf\xcd\xd5\xee\x9b\xeb\xa4\x53\xdb\x04\x2e\x83\xcf\x3e\x10\x84\x12\x5b\x01\x42\x5d\x19\x07\x55\x23\x01\x4a\x9c\xd3\x8a\x56\x6a\x89\x5d\x7f\x95\x44\xfd\xf4\x6b\xa3\xad\xcd\xdd\xf8\x3b\x00\xb9\x36\x72\xff\x9c\x02\x38\xd1\x34\x3f\x11\x8d\x03\x35\x70\x69\xe4\x1e\x34\xc5\xde\x8f\xa9\x6c\x73\x18\xa1\xf5\xc1\xd6\xec\x0b\x63\x69\x35\x4d\xfa\xf7\x83\xac\xb5\x1d\xd1\xbb\x1b\x5a\x90\xd3\xc2\x91\xdb\xb8\x70\xe4\x3e\x7e\x96\x3c\x3d\x8a\x21\xf4\x57\x37\xbf\x5c\x4d\x3e\xde\x5d\x5d\x8e\xe1\xb6\x26\x65\x8a\x25\xa0\x83\x2f\x57\xd7\x60\x2a\x9c\x11\x98\x34\x15\x62\x4d\xa3\xc0\x14\x85\x92\x0c\x6c\xc4\x97\x76\x98\x0e\x37\x56\xe6\x18\xe6\xd5\x02\x99\x72\xc6\xc5\x31\x3c\x90\x3b\x02\xcf\x60\x29\xe6\x6e\x6a\xd1\xdd\xaf\xee\xf7\xe0\x92\x9f\x9d\x40\xdb\x7e\xc9\x91\x67\x32\x28\x49\x1f\xb5\x36\xad\xa4\xad\x5a\x8b\x67\x4d\x45\xae\xed\xa7\x9a\xfd\xdc\x68\x02\x0c\xab\xfa\xcb\xf6\x65\x64\x6f\xe5\xd8\x24\xeb\xf7\x3f\xb6\x11\x91\x8b\xbf\x39\x53\x6c\x3c\xe3\x66\xdf\xec\x9d\x2d\xac\x57\xe9\x26\x34\x12\xe9\x8c\x9f\xc1\x0e\xed\x32\x18\x25\xb0\x32\x96\x28\xae\x25\x30\x61\x25\x70\x38\x41\x6b\x94\x3f\xda\xdf\x1f\xdb\x3e\x1c\xc2\x85\xb3\x19\xd3\x2c\xe5\x62\x90\xb0\x0e\x44\xe4\x7d\x63\x66\x7d\x5c\xdf\x82\x9f\x70\x49\x0c\x87\x7a\x43\x96\xa2\x82\x0c\x2c\x38\x83\x12\x11\xcf\xb6\xc3\x66\x42\x1c\x4c\x91\x96\x48\xd9\x2a\x5e\xe2\x20\xf9\x1c\xad\xd1\x26\x2c\xf3\x9a\xd8\x78\x9d\x97\xbe\xe1\xe1\x1c\xff\xda\x9d\x8c\x9b\x76\xdf\x2f\x6a\xc3\x36\x18\x07\xed\xed\xa7\xee\x4a\x17\x1f\xde\xc7\x5d\xe9\x3f\x01\x00\x00\xff\xff\x37\x0f\x0f\x91\xa1\x12\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\xdf\x6f\xdc\x46\x0e\x7e\xdf\xbf\x82\x70\x1e\x62\x03\xb6\xbc\x76\xd2\xc4\xb7\x68\x1f\x82\xb5\x0f\x0d\xae\x4e\xdc\xda\x69\x0f\x28\x0a\x81\x3b\x43\xad\x06\x1e\xcd\xa8\xe4\x68\xd7\x8b\xa2\xff\xfb\x61\x46\xda\xdf\x72\xce\x0e\x5c\xbf\x18\x5a\xcd\x90\x1f\x3f\x92\x1f\xa9\x19\xb2\xc1\x89\x25\x38\x50\xb6\x91\x40\x9c\x3b\xac\xe8\x00\xfe\x1a\x00\x84\x45\x4d\xd0\xfd\xfd\x00\x12\xd8\xb8\xe9\x00\x40\x93\x28\x36\x75\x30\xde\xc1\x0f\x70\xf0\xc5\x99\x3f\x1b\x82\xee\x3a\xa4\xeb\x83\xbf\x07\x83\x57\x30\x41\xa6\x93\x8a\x02\xda\xc1\x60\xed\xa7\xc2\xa0\xca\x89\x7f\xc8\xcb\x10\xea\x9c\x9c\xae\xbd\x71\xe1\x39\x1e\xaf\x3b\x0b\xf0\xe3\xdd\xdd\x0d\x30\xa1\x3e\xf1\xce\x2e\x60\x69\x0b\x0e\x29\x9b\x66\x10\xed\x8f\x4e\x4f\x97\xfe\x32\x7a\xc0\xaa\xb6\x94\x29\x5f\x8d\x2e\x86\x17\xc3\xa3\x04\x73\x0d\xcc\x4b\xae\x4a\x74\x8e\xec\x73\xc0\x8c\xdb\x2b\x50\x78\x06\x84\xb1\x67\xfa\x7c\x0b\x63\xef\x02\x1a\x47\x0c\x3f\x19\xd7\x3c\x80\x26\x36\x33\x0c\x66\x46\x70\xa8\x3c\x93\x97\x13\x09\xd1\xeb\x31\x74\x8f\x13\x0a\xb8\x7a\x40\x5b\x97\x78\x0c\x85\xc5\xa0\x90\x57\x47\x97\xcf\xed\xd9\xe5\x53\x3a\xdc\x13\xcb\x8c\x58\x8c\x77\xcf\x89\xe5\xd7\xf6\xca\x93\x63\x09\x1e\x6e\xfe\x7b\x05\xe8\x34\x18\x27\x01\xad\xfd\x47\xc3\x7b\x05\x15\xaa\xd2\x38\x92\xc1\x2b\xb8\x23\x66\x2c\x3c\x57\xaf\x05\x14\x37\x9a\xe0\x20\x05\x29\x0b\x09\x54\x1d\x80\xf6\x24\xe0\x7c\x80\x9a\x7d\x4d\x6c\x17\x20\x4d\x5d\x7b\x0e\x60\x8d\x04\x01\x5f\x40\x85\xb5\x80\x78\x98\x13\x68\x0f\xa1\x34\x92\x6d\x72\xa8\xbc\x0b\xec\xad\xed\x7a\x42\xfa\x98\x8c\xb6\x0e\x5b\x3a\x8f\xf6\xf9\xfc\xcc\x9a\x98\x74\x3a\x15\x1d\xae\x2d\xa6\x36\x91\xae\x50\x7f\x77\x5e\xd3\xd9\x1f\xbb\x39\xdc\xf0\x5f\xa1\x7a\x59\xf7\x46\x93\x0b\xa6\x58\x18\x37\x85\xeb\x0f\x63\x40\xad\x99\x44\xd6\x90\xbe\x3b\x1f\x7d\xf7\x76\x34\x1c\x8e\xf0\x6c\xf4\x2f\x35\x42\xfa\x1a\x3c\xed\x2b\x34\xee\x65\x11\xfe\xfb\xe7\xcb\x4f\xdb\x04\x6d\x36\xf0\x1e\x9a\xb9\xe7\xfb\x97\x4b\x54\x6b\x6d\x3f\x49\xe7\xc7\x10\xff\xbd\x79\xcc\xfd\xcb\xe4\xa9\xf3\xfe\xf4\x1c\x4d\xce\x47\xe7\xc5\xe8\xe2\xdd\x31\xac\x7e\x52\x6f\x46\xef\xce\x46\xef\xdf\x3f\x86\xf4\xc5\x52\xd6\x81\xdd\x4b\xd7\xf9\x66\xba\x3a\xda\xbe\x9a\x41\x65\x55\x2e\xce\xd4\x35\x85\x5e\x58\x15\xd6\x8f\xa3\xba\xc6\x1a\x0a\xf6\xd5\x52\x21\xba\xd4\x05\xbf\xee\xf6\x5d\x1d\x1b\x7b\x57\x98\x29\xac\x5c\x26\xa3\x05\x36\x36\x74\x0e\xff\xfa\xbb\x15\x1d\x95\x0e\x36\x8c\xd1\xd9\x26\xe2\xfb\x0b\xe9\x78\xdc\x18\x9a\xbb\xe3\x61\x5d\xd1\x97\x9f\x6e\x13\x2c\x98\x97\x46\x95\xc0\x24\xde\xce\x5a\x90\xb8\xd5\x9b\x51\x4a\x9d\xa2\x0c\x7e\x4b\xdc\x4a\x12\xd8\xfb\x66\x42\x2d\x92\xd7\x02\x73\x63\x2d\x28\x5f\x55\x8d\x33\x0a\x03\xc1\xdc\x84\x32\x29\xd8\xee\x10\xec\xc6\xf2\x26\xf3\x47\x07\x8f\x0d\x84\xad\x7c\x88\x94\xf9\x3d\x2d\xbe\xa1\x44\x6e\x6f\x7f\x84\xba\x99\x58\xa3\x20\x1a\x48\xe3\xa4\x11\x62\x78\x1d\x07\xc0\xeb\x9d\xbc\xa3\x08\x85\x5c\x1b\xee\xe5\xef\x06\x63\x60\x91\x21\x6d\x98\x54\xf0\xbc\x80\x79\x49\x4c\x30\x25\x47\x8c\x81\x34\x24\x0b\x02\x52\xfa\xc6\x6a\x98\x10\xd4\x16\x15\xe9\x38\x8b\x52\xca\x05\x84\x14\x53\x90\x27\x46\xee\x28\xc4\xaa\xce\xab\xd0\xf4\xe7\xf4\xd3\x47\x30\x2e\x10\x17\xa8\x08\xae\xef\xbe\xec\x9b\x75\x4d\x35\x21\xde\x2b\xa9\xb3\xb7\x17\xc3\x7e\x5f\xa6\xce\xb1\x09\x5e\x53\x20\x15\xfd\xe4\x15\x85\xd2\xeb\x5e\xff\xd7\xe9\x55\x62\x65\x75\x05\x42\x49\x50\x7a\x09\xf0\xf1\x66\xf6\x76\xa9\x15\x8f\xc6\xbb\x0b\xec\xa0\x30\x2c\xe1\xa4\xf0\x8d\xd3\x3b\xf9\xa9\xbd\xce\x95\xd1\xfd\xe9\x19\x7f\xbc\xfc\xa5\xf5\xc8\xe8\xa6\x69\x23\x40\x11\x33\x75\xf0\x9f\x66\x42\xec\x28\x90\x40\xed\xf5\x33\x90\x9c\x0d\xb3\xf3\x6c\x98\x0d\x4f\xcf\xde\xed\x20\x11\xe2\x99\x51\xf4\x28\x9a\xef\xbf\xbf\xfa\x7c\x39\x78\x12\xa4\xce\x94\x64\x83\xbb\x92\xe0\x2c\xd1\xd6\x76\xd5\x84\x62\x67\x12\xcf\x48\xa7\xc2\x8d\x7d\x97\x63\x6d\xd2\x4f\x7c\x9c\x78\x3e\x1b\x86\xf2\xd1\x0b\xb1\xc6\xb5\x93\x6c\x10\xc1\x0c\x36\xc2\xee\x09\xb9\x0d\xf7\xcd\x66\xb8\xaf\xc0\xa7\x78\xb6\x97\xe6\xe5\x72\xde\xc9\x8d\x34\x45\x61\x1e\x7a\x33\xf2\x73\x43\x6c\xa8\x6d\xba\x4e\xe4\x97\xea\x40\xd0\xde\x5b\xe1\x46\x27\xf3\x24\xe6\x93\xc5\x0a\x36\x5c\x76\xd8\x8c\xac\xc4\xc3\x7a\x85\xb6\x13\x94\xc2\xfb\xac\x83\x9f\xc9\x4c\x65\x5b\x67\x8e\xe0\xe9\x79\xde\xba\xb8\x93\x69\xed\xe7\xce\x7a\xd4\x79\xcd\x3e\x78\xe5\xff\xdf\x46\xbe\x65\x38\xee\xfd\x9d\x9c\x6f\x4b\x49\x67\x0b\x4c\x5c\x5a\x3b\xb5\x68\x24\x55\xc8\xd2\x61\x62\xe9\x3e\x56\x89\xed\xd6\x5a\x13\x58\xaf\x48\x49\x62\x9d\xec\x1f\xaf\x54\xfc\xcf\xc6\x30\x49\x6b\x54\xf9\xaa\x36\x96\x74\xcb\xb8\xe2\x45\x1d\xfc\x72\xef\xcc\xe0\x8b\x6b\x84\x34\x98\x02\x14\xaa\x92\x74\xbe\x5c\x9a\x8d\x40\xe0\x86\xb2\xdd\x89\xb8\x75\xaa\x8f\x82\x89\xf7\x76\x8f\x80\x02\xad\xd0\x7e\xf8\xbf\x95\x14\x4a\xe2\x14\x61\xdc\x88\x31\xc4\xc5\xa2\x5d\x97\x97\x6c\xc4\x18\x26\xde\x87\xad\x95\xbe\x9b\xab\xdd\x37\xd7\x69\xa7\xb6\x09\x5c\x06\x9f\x7c\x20\x08\x25\xb6\x02\x84\xba\x32\x0e\xaa\x46\x02\x94\x38\xa3\x15\xad\xd4\x12\xbb\xfe\x2a\x89\xfa\xe9\xd7\x46\x5b\x9b\xbb\xf1\x77\x00\x72\x6d\xe4\xfe\x39\x05\x70\xaa\x69\x76\x2a\x1a\x7b\x6a\xe0\xd2\xc8\x3d\x68\x8a\xbd\x1f\x53\xd9\xe6\x30\x42\x5b\x06\x5b\xb3\x2f\x8c\xa5\xd5\x34\x59\xfe\xde\xcb\x5a\xdb\x11\x4b\x77\x7d\x0b\x72\x5a\x38\x72\x1b\x17\x8e\xdc\xc7\xcf\x92\xa7\x47\xd1\x87\xfe\xea\xe6\x97\xab\xf1\x87\xbb\xab\xcb\x11\xdc\xd6\xa4\x4c\xb1\x00\x74\xf0\xf9\xea\x1a\x4c\x85\x53\x02\x93\xa6\x42\xac\x69\x14\x98\xa0\x50\x92\x81\x8d\xf8\xd2\x0e\xd3\xe1\xc6\xca\x1c\xc3\xac\x9a\x23\x53\xce\x38\x3f\x86\x07\x72\x47\xe0\x19\x2c\xc5\xdc\x4d\x2c\xba\xfb\xd5\xfd\x25\xb8\xe4\x67\x27\xd0\xb6\x5f\x72\xe4\xa9\xf4\x4a\xd2\x07\xad\x4d\x2b\x69\xab\xd6\xe2\x69\x53\x91\x6b\xfb\xa9\x66\x3f\x33\x9a\x00\xc3\xaa\xfe\xb2\x7d\x19\xd9\x5b\x39\x36\xc9\xfa\xfd\x8f\x6d\x44\xe4\xe2\xff\x9c\x29\x36\x9e\x71\xd3\xaf\xf6\xce\x16\xd6\xab\x74\x13\x1a\x89\x74\xc6\xcf\x60\x87\x76\x11\x8c\x12\x58\x19\x4b\x14\xd7\x12\x98\xb0\x12\x38\x1c\xa3\x35\xca\x1f\xed\xef\x8f\x6d\x1f\xf6\xe1\xc2\xe9\x94\x69\x9a\x72\xd1\x4b\x58\x07\x22\xf2\xbe\x31\xb3\x3e\xac\x6f\xc1\x4f\xb8\x20\x86\x43\xbd\x21\x4b\x51\x41\x7a\x16\x9c\x5e\x89\x88\x67\xdb\x61\x33\x26\x0e\xa6\x48\x4b\xa4\x6c\x15\x2f\x71\x90\x7c\x86\xd6\x68\x13\x16\x79\x4d\x6c\xbc\xce\x4b\xdf\x70\x7f\x8e\x7f\xed\x4e\xc6\x4d\x7b\xd9\x2f\x6a\xc3\x36\x18\x07\xed\xed\xa7\xee\x4a\x17\xef\xdf\xed\xec\x4a\xdb\xa3\x38\xa7\x87\xc0\x98\x17\x16\x1f\x29\xbb\xab\xf8\x1e\xd2\x7b\xa8\xa3\xc2\xa4\xe6\x10\xb2\xc5\x49\x5c\x94\xa8\xdd\xa9\x4f\x56\x06\xbf\xa9\xe8\xfe\x17\x00\x00\xff\xff\x67\x34\xf0\xc9\x40\x13\x00\x00"), }, "/lokomotive-kubernetes/bootkube": &vfsgen۰DirInfo{ name: "bootkube", @@ -3340,9 +3340,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/bootkube/assets.tf": &vfsgen۰CompressedFileInfo{ name: "assets.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 7933, + uncompressedSize: 7995, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5b\x8f\xdb\xb8\x15\x7e\xf7\xaf\x38\xd0\x24\x18\xbb\xb0\xe5\x34\x0d\x5a\x74\x00\x23\x28\x5a\xa0\x08\x12\x20\x41\x36\xfb\x14\x04\x0a\x45\x1d\x5b\xdc\xa1\x49\x2d\x49\x8d\xc7\x08\xfc\xdf\x17\x24\x25\x9b\xba\xd8\xd6\xd8\x13\xec\xcb\xce\xd3\x58\x3a\xe7\xe3\xb9\x7c\x3c\x17\xfb\x06\x7e\x41\xbe\x9c\xe5\x52\x1b\xcc\xe0\x7d\x99\xa2\x12\x68\x50\x43\x2a\xa5\xd1\x46\x91\x62\xb6\x26\x82\x2d\x51\x1b\x3d\x52\xa8\x65\xa9\x28\x42\x64\x70\x5d\x70\x62\x30\xc9\x98\x8a\x20\xea\x11\x8e\xe0\xc7\x08\xc0\xcb\x5b\x29\x70\x7f\x0b\x88\x5e\xfc\x50\x58\x70\x42\x71\x5c\x10\x93\xc7\x6b\x99\x95\x1c\xa7\xe0\x3e\xd0\x4d\x36\x85\x28\x8e\x26\xbb\x79\x7d\x96\x9e\xf7\x81\x8f\x00\x32\xd4\x86\x09\x62\x98\x14\x0e\xdf\x41\x3f\x10\x15\x13\xad\xd1\xd8\x47\xbb\x7e\xd5\x11\xc0\x03\x51\x1a\x16\xce\x42\x80\x7c\x5b\xa0\xba\x2f\x53\x4c\xd8\x9a\xac\xd0\x59\x69\x71\xa8\x14\x86\x30\x81\xca\x3f\xd7\x5f\xa3\xbd\x64\xf4\xcd\x69\xa2\xa1\x59\xa2\x51\x3d\xa0\xd2\xb5\x7f\xbf\x49\x26\xc6\xd1\x34\x9a\xc2\x52\xaa\x35\x31\x9c\x69\x33\x8e\x72\x63\x0a\x7d\x37\x9f\xbf\xd4\x77\xaf\xff\xf1\xaf\x7f\x47\x53\x77\x42\xa8\x3f\x99\x38\x48\xca\x65\x99\x25\x85\x92\x0f\x2c\x43\x05\x07\x63\x1a\xcf\x9d\x68\x21\xb3\x84\xb2\xac\x8a\xec\x41\xb4\x7e\xee\x84\x2c\x3a\xa3\x18\x08\x7a\xa1\xf0\xb9\x13\x34\xaa\xb4\x14\x48\x28\x2a\xa3\xab\x80\x5a\xc1\xce\xf3\x11\xc0\x6e\xb4\x1b\x05\x64\xe0\x92\x12\x9e\x2c\x19\xc7\x08\x22\x1b\x9e\x19\x29\x98\x77\xcb\xb3\xc0\xbe\x12\x64\x8d\xbd\x39\xa2\x39\x51\x46\xcf\x9d\x9e\xde\x6a\x83\xeb\x79\x13\x23\xde\x92\x35\xb7\x19\xb7\x09\x41\x61\x60\x01\x35\xfd\x2c\xf0\x38\x7a\xf1\x23\x60\x52\xc8\x9c\x10\xba\x05\x37\x3d\x9a\xfc\x46\x2c\xcf\x73\xc0\x45\x3b\x47\x7a\x5f\x48\x26\x4c\x2d\x78\x02\xa0\xad\x70\x94\x4b\xf0\xd3\x28\xd5\x74\xb1\xcb\xac\x2e\x69\xe0\x89\xdc\x69\xc8\xf7\x51\x08\x80\x12\xf7\x00\x3a\x7f\x0b\x48\x89\xc6\x7f\xbe\x41\x41\x65\x86\x63\xc3\x75\xa2\x91\x2f\x13\xcd\x56\xa2\x42\x89\x5d\x4a\x29\x89\xed\x87\xa4\xc0\xb5\xf7\x74\x9f\xe3\xe4\x1e\xb7\x67\x20\x0b\xc5\x1e\x6c\x01\xbb\xc7\x6d\x7c\xe0\x46\xf0\xb4\x0f\xb6\x65\x70\x0f\xac\xbb\x0b\x7c\xdb\x30\xf6\x00\xdf\x34\xb7\x8a\x23\xa1\x54\x96\xc2\x24\x45\x99\x0e\x33\xb7\xd2\x9b\x55\x8a\x71\x51\xa6\x9c\xd1\xa6\xcd\x8e\x07\x7d\x21\x1e\x12\x5d\xab\xdc\x8d\xae\x87\xe4\x0c\x85\x69\xc2\x0e\x0c\x83\x57\x3d\x01\xda\x48\xda\x99\x18\x54\x60\xbd\xf9\x42\x41\x52\x8e\x09\x59\xad\x14\xae\x5c\x83\x68\xd0\xb1\xfb\xda\x67\xf9\xf0\xb9\x19\xb8\x63\x5a\xb0\x58\x58\xe6\x23\xbc\x6d\x9a\xea\xaf\x2b\x44\x53\xe8\x0d\x6e\x80\x60\x63\xfc\xb7\x43\x40\x26\x70\x07\x51\xd4\x35\x26\x0c\xf9\x75\xc6\xf4\xb2\x33\xb4\xc7\x47\x75\xb0\x4d\x3e\x63\xd7\xd9\xd4\xb8\x88\x7d\xb6\xb4\x73\x1c\x98\x64\x27\x09\x46\x89\xee\xa9\x21\x1c\xc5\xca\xe4\xe3\x4e\x4d\xf4\x0c\x79\x2c\xa4\xc6\x44\x8a\x84\x70\x9e\xb8\x32\xbc\x24\x14\x75\xed\xca\x91\xd7\xb6\xf5\x4d\x9a\xbd\xaf\x35\x08\xf5\x75\xbf\xe7\x98\x81\x7a\x3b\xd9\xd0\x29\xe8\x6c\x87\x8d\x4e\xf4\xf3\x42\x66\xb3\x46\xbb\xba\xa8\xa3\xb7\x51\xae\xee\xe9\xfd\x80\x75\x57\x3f\xd2\x94\x9f\xd4\x92\xcf\x64\xba\x3f\x2e\xcf\x98\xeb\xce\x01\x97\x67\xbb\x0b\xb5\x1b\x8d\x6e\xe0\x93\x2c\x4a\xeb\x11\xdc\x1f\xc6\x7e\xa7\x0d\x0f\x84\x97\xa8\x5d\x96\xc1\xa6\x39\x0b\x44\x5c\xa4\xe3\x53\xe3\x9f\x97\xf3\x01\xa9\xf3\x0b\x0b\xc8\x88\x21\xf1\x3e\x8a\x56\x3e\x0e\x50\x15\x8a\x0c\x15\x66\x17\x8e\x8b\x81\x6d\xa7\xbc\x93\xc2\x28\xc9\xa1\xe0\x44\xa0\xf7\x35\x1e\xdd\xc0\x97\x8f\xff\xfb\x78\x07\xff\x2d\x95\x42\x61\xf8\x76\x0a\x26\x47\x85\xc0\x34\x08\x09\x1b\xb2\x05\x26\xe0\x0b\x2a\x45\xec\xfc\x05\x46\x02\x95\xc5\x16\x9c\xdf\x90\x31\x85\xd4\x48\xb5\x9d\x82\x96\xb0\x41\x28\x35\xc2\xf7\x90\x2c\xdf\xed\xd8\x06\xcc\x9f\x94\x23\x64\x72\x23\x34\xcb\x2c\xbe\x3d\x89\x18\x20\x62\x1b\xe2\x7b\x5d\x26\x56\xa0\xb7\xc2\x90\x47\xd0\x46\x2a\xcc\xac\x15\x26\x67\xfa\x70\x24\x6c\x18\xe7\x90\x22\xa0\x4d\x18\x31\x98\x4d\x61\x93\x33\x9a\xc3\x9a\x6c\x21\x55\x16\xa2\x14\xf8\x58\x20\xb5\xdb\x9d\x42\x5d\x72\xa3\xe3\xd3\xe5\x2b\xcc\xde\x33\x97\xae\x0a\xfa\xba\xb2\x55\x83\xb8\x24\x7f\x76\xac\x69\xb3\xd3\x05\xbc\x4d\xea\x78\x64\x09\x18\xb8\x7c\x84\xb1\xf5\x7b\x6f\xd3\xf0\x0d\x23\x64\xe0\x64\x37\x64\xcd\x0c\x87\xf0\xb3\x7b\x06\xb5\x14\x10\xba\xbb\xa6\x54\x81\xeb\x22\x54\x1a\xd1\xb7\x5d\x5b\x82\x28\x9a\xef\xa2\x0a\xd6\xdd\x88\xc4\xdd\x88\x64\xdf\x4f\x17\xb0\x26\x8f\xe3\xd7\xd3\xa3\x6d\xf4\xe4\x6a\xf1\x84\x95\x35\x90\x3f\xb3\xb7\x06\x92\x9d\x05\x84\x72\xbb\x61\xa8\x24\x93\x6b\xc2\x44\xa2\xcb\xe5\x92\x3d\x1e\xec\xe8\x79\xd9\x54\x13\x3a\xa9\x31\x59\x01\x0b\xb0\xc0\xb9\xd4\x66\xdc\x3e\x6d\x0a\x7f\x7f\x35\x39\xb5\xf3\x5c\xb0\xf1\x5c\xbe\xef\x50\xd2\x5e\x74\x86\x8c\xce\x35\x56\xef\xec\xec\xf3\xdb\x03\xe9\x57\xcf\xc6\xda\xf9\x52\x57\x4b\x27\x29\x58\x4d\x8c\xaf\xaf\xbe\x55\x8b\xe8\xa3\x41\x25\x08\x4f\x0e\xdb\x53\x21\x95\xe9\xdd\x7c\x6a\x27\x9e\xba\xf7\x74\x1d\xd8\x75\xca\x02\x47\xd3\xac\x09\x1c\x8d\x2f\x08\x27\xea\x01\x47\x73\x5d\x31\xa8\x4f\xfd\x29\x95\xe0\x0a\xd6\x5e\x74\x51\x76\x3d\x0d\x75\x1f\xc5\x23\xb3\x42\x1d\x80\x93\x83\xc2\x3e\xcc\xe7\xa7\x04\x8b\x77\xe5\x88\xb0\xcf\xc9\x29\x77\xfe\x1a\x07\x5a\xe3\xc0\x3e\x47\xcf\x3c\x0b\x58\xdc\xeb\x06\x01\x87\xe0\x52\xf9\x7f\x14\xa8\xac\xbf\x2e\x97\x54\x8a\x25\x5b\xb9\x28\xbf\xf7\x62\xfa\x14\x09\xbd\xf8\xec\x89\x7c\x6c\x6a\x0d\xa6\x26\x29\x4d\x3e\xef\x39\xb5\xed\x07\xc9\xd6\x4c\x84\xde\x8c\x53\x29\x8d\xfd\x0c\x0a\x7f\x2f\x99\x42\x0d\xcc\xd8\x5c\x5b\xbe\x34\x41\x27\xa3\x1b\xa8\xab\xf4\x8a\x99\xbc\x4c\x63\x2a\xc3\xd9\x69\xc6\x04\x2d\x53\x62\xa4\x9a\xd7\xa8\xf3\x94\xcb\x74\xbe\x26\xf6\xfe\xcf\x8b\xfb\x55\xf0\xa2\xfa\x27\x5e\xc9\x9b\x0f\x6f\x5e\x0f\x88\xa4\xb3\xfd\x89\x71\x74\x3a\x97\x46\xf1\x7c\xf4\x98\x00\x12\x56\x28\xb2\x34\xa8\xec\xb5\xae\x0b\xe2\x50\xb7\x66\x4e\xff\xe7\x3b\x57\x4d\x6c\x55\x41\xb6\xb2\xbb\x59\xe0\xec\xf1\xce\xd5\xc7\xe6\xa0\x89\x9d\xe9\x60\x3d\x08\x93\x4e\xfb\x6a\x7d\x39\x76\xe9\xf0\x52\x1d\xe0\xb1\x06\x7e\x85\x58\x5f\xb7\x7e\x24\x37\x46\x0c\x18\x7e\x2c\xc2\xf9\xe1\xe7\x59\x47\x9e\xaa\x85\xbe\x5b\xb6\x95\x93\x5a\x09\x98\x16\xb7\x06\x34\x9a\xa9\xeb\x19\x2d\x39\xdf\x2d\x98\xb6\x5d\xc8\x56\x36\x5d\x16\x16\xdb\x75\x05\x2c\x88\xe5\x3d\xfc\xe7\xd3\xbb\xda\x85\x5f\x3f\x7f\xf0\x72\x7b\x78\xff\x75\x9a\xf6\x57\x21\x25\xf4\x7e\x43\x54\x36\xa3\x72\x5d\x10\xc3\x52\x8e\xb6\xb1\xd5\x2d\xc9\x9e\x2f\x97\xa0\x0b\xce\xcc\x78\x02\x44\x64\xfe\x37\x88\x09\xd4\x8d\x30\x45\x4a\xac\xd4\xbe\x4d\xdd\xba\xe5\x3a\x63\xb6\x90\x13\x0e\xb2\xb0\x57\x51\x2a\x18\xdf\xbe\xbd\x9d\x00\x25\x42\x48\x5b\xae\x46\x37\x16\x3c\x83\x0d\x33\x39\x70\xa6\x6d\xfb\x71\x89\xd6\x8e\x5c\xbd\x81\x59\x54\x86\xb8\x5f\x40\x0e\xbf\x85\x1c\x0b\xe4\x04\x16\x0b\x88\x22\x78\x7b\x5c\x76\x02\x77\x43\x80\x26\x83\xae\x5a\x50\xee\x2e\xba\x68\x5e\xbf\x7b\xcd\x5c\x81\x68\x6f\x54\x87\x7a\xf0\x67\x5f\x45\x5f\xd4\x2e\xbf\x88\x5e\xff\x9a\x6b\xe8\xac\xea\xcd\xdc\xd0\x1b\xf9\x47\x00\x00\x00\xff\xff\xb1\x02\x68\x46\xfd\x1e\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5b\x8f\xdb\xb8\x15\x7e\xf7\xaf\x38\xd0\x24\x18\xbb\xb0\xe5\x34\x0d\x5a\x74\x00\x23\x28\x5a\xa0\x08\x12\x20\x41\x36\xfb\x14\x04\x0a\x45\x1d\x5b\xdc\xa1\x49\x2d\x49\x8d\xc7\x08\xfc\xdf\x17\x24\x25\x9b\xba\xd8\xd6\xd8\x13\xec\xcb\xce\xd3\x58\x3a\xe7\xe3\xb9\x7c\x3c\x17\xfb\x06\x7e\x41\xbe\x9c\xe5\x52\x1b\xcc\xe0\x7d\x99\xa2\x12\x68\x50\x43\x2a\xa5\xd1\x46\x91\x62\xb6\x26\x82\x2d\x51\x1b\x3d\x52\xa8\x65\xa9\x28\x42\x64\x70\x5d\x70\x62\x30\xc9\x98\x8a\x20\xea\x11\x8e\xe0\xc7\x08\xc0\xcb\x5b\x29\x70\x7f\x0b\x88\x5e\xfc\x50\x58\x70\x42\x71\x5c\x10\x93\xc7\x6b\x99\x95\x1c\xa7\xe0\x3e\xd0\x4d\x36\x85\x28\x8e\x26\xbb\x79\x7d\x96\x9e\xf7\x81\x8f\x00\x32\xd4\x86\x09\x62\x98\x14\x0e\xdf\x41\x3f\x10\x15\x13\xad\xd1\xd8\x47\xbb\x7e\xd5\x11\xc0\x03\x51\x1a\x16\xce\x42\x80\x7c\x5b\xa0\xba\x2f\x53\x4c\xd8\x9a\xac\xd0\x59\x69\x71\xa8\x14\x86\x30\x81\xca\x3f\xd7\x5f\xa3\xbd\x64\xf4\xcd\x69\xa2\xa1\x59\xa2\x51\x3d\xa0\xd2\xb5\x7f\xbf\x49\x26\xc6\xd1\x34\x9a\xc2\x52\xaa\x35\x31\x9c\x69\x33\x8e\x72\x63\x0a\x7d\x37\x9f\xbf\xd4\x77\xaf\xff\xf1\xaf\x7f\x47\x53\x77\x42\xa8\x3f\x99\x38\x48\xca\x65\x99\x25\x85\x92\x0f\x2c\x43\x05\x07\x63\x1a\xcf\x9d\x68\x21\xb3\x84\xb2\xac\x8a\xec\x41\xb4\x7e\xee\x84\x2c\x3a\xa3\x18\x08\x7a\xa1\xf0\xb9\x13\x34\xaa\xb4\x14\x48\x28\x2a\xa3\xab\x80\x5a\xc1\xce\xf3\x11\xc0\x6e\xb4\x1b\x05\x64\xe0\x92\x12\x9e\x2c\x19\xc7\x08\x22\x1b\x9e\x19\x29\x98\x77\xcb\xb3\xc0\xbe\x12\x64\x8d\xbd\x39\xa2\x39\x51\x46\xcf\x9d\x9e\xde\x6a\x83\xeb\x79\x13\x23\xde\x92\x35\xb7\x19\xb7\x09\x41\x61\x60\x01\x35\xfd\x2c\xf0\x38\x7a\xf1\x23\x60\x52\xc8\x9c\x10\xba\x05\x37\x3d\x9a\xfc\x46\x2c\xcf\x73\xc0\x45\x3b\x47\x7a\x5f\x48\x26\x4c\x2d\x78\x02\xa0\xad\x70\x94\x4b\xf0\xd3\x28\xd5\x74\xb1\xcb\xac\x2e\x69\xe0\x89\xdc\x69\xc8\xf7\x51\x08\x80\x12\xf7\x00\x3a\x7f\x0b\x48\x89\xc6\x7f\xbe\x41\x41\x65\x86\x63\xc3\x75\xa2\x91\x2f\x13\xcd\x56\xa2\x42\x89\x5d\x4a\x29\x89\xed\x87\xa4\xc0\xb5\xf7\x74\x9f\xe3\xe4\x1e\xb7\x67\x20\x0b\xc5\x1e\x6c\x01\xbb\xc7\x6d\x7c\xe0\x46\xf0\xb4\x0f\xb6\x65\x70\x0f\xac\xbb\x0b\x7c\xdb\x30\xf6\x00\xdf\x34\xb7\x8a\x23\xa1\x54\x96\xc2\x24\x45\x99\x0e\x33\xb7\xd2\x9b\x55\x8a\x71\x51\xa6\x9c\xd1\xa6\xcd\x8e\x07\x7d\x21\x1e\x12\x5d\xab\xdc\x8d\xae\x87\xe4\x0c\x85\x69\xc2\x0e\x0c\x83\x57\x3d\x01\xda\x48\xda\x99\x18\x54\x60\xbd\xf9\x42\x41\x52\x8e\x09\x59\xad\x14\xae\x5c\x83\x68\xd0\xb1\xfb\xda\x67\xf9\xf0\xb9\x19\xb8\x63\x5a\xb0\x58\x58\xe6\x23\xbc\x6d\x9a\xea\xaf\x2b\x44\x53\xe8\x0d\x6e\x80\x60\x63\xfc\xb7\x43\x40\x26\x70\x07\x51\xd4\x35\x26\x0c\xf9\x75\xc6\xf4\xb2\x33\xb4\xc7\x47\x75\xb0\x4d\x3e\x63\xd7\xd9\xd4\xb8\x88\x7d\xb6\xb4\x73\x1c\x98\x64\x27\x09\x46\x89\xee\xa9\x21\x1c\xc5\xca\xe4\xe3\x4e\x4d\xf4\x0c\x79\x2c\xa4\xc6\x44\x8a\x84\x70\x9e\xb8\x32\xbc\x24\x14\x75\xed\xca\x91\xd7\x95\xae\x51\x24\x59\x72\xb2\xd2\xed\x33\xad\xae\xeb\x25\x87\x8a\x11\x48\xdb\xc6\x39\x69\x76\xce\xd6\x18\xd5\xd7\x3b\x9f\x63\x82\xea\xed\x83\x43\x67\xa8\xb3\xfd\x39\x3a\x31\x0d\x14\x32\x9b\x35\x9a\xdd\x45\xf3\x40\x1b\xe5\xea\x89\xa0\x1f\xb0\x9e\x09\x8e\xb4\xf4\x27\x35\xf4\x33\x99\xee\x8f\xcb\x33\xe6\xba\x73\xc0\xe5\xd9\xee\x42\xed\x46\xa3\x1b\xf8\x24\x8b\xd2\x7a\x04\xf7\x87\xa5\xc1\x69\xc3\x03\xe1\x25\x6a\x97\x65\xb0\x69\xce\x02\x11\x17\xe9\xf8\xd4\xf0\xe8\xe5\x7c\x40\xea\xfc\xc2\x02\x32\x62\x48\xbc\x8f\xa2\x95\x8f\x03\x54\x85\x22\x43\x85\xd9\x85\xc3\x66\x60\xdb\x29\xef\xa4\x30\x4a\x72\x28\x38\x11\xe8\x7d\x8d\x47\x37\xf0\xe5\xe3\xff\x3e\xde\xc1\x7f\x4b\xa5\x50\x18\xbe\x9d\x82\xc9\x51\x21\x30\x0d\x42\xc2\x86\x6c\x81\x09\xf8\x82\x4a\x11\x3b\xbd\x81\x91\x40\x65\xb1\x05\xe7\x37\x64\x4c\x21\x35\x52\x6d\xa7\xa0\x25\x6c\x10\x4a\x8d\xf0\x3d\x24\xcb\x77\x3b\xf4\x01\xf3\x27\xe5\x08\x99\xdc\x08\xcd\x32\x8b\x6f\x4f\x22\x06\x88\xd8\x86\xf8\x5e\x97\x89\x15\xe8\xad\x30\xe4\x11\xb4\x91\x0a\x33\x6b\x85\xc9\x99\x3e\x1c\x09\x1b\xc6\x39\xa4\x08\x68\x13\x46\x0c\x66\x53\xd8\xe4\x8c\xe6\xb0\x26\x5b\x48\x95\x85\x28\x05\x3e\x16\x48\xed\x6e\xa8\x50\x97\xdc\xe8\xf8\x74\xf9\x0a\xb3\xf7\xcc\xa5\xab\x82\xbe\xae\x6c\xd5\x20\x2e\xc9\x9f\x1d\x6b\xda\xec\x74\x01\x6f\x93\x3a\x1e\x59\x02\x06\x2e\x1f\x61\x6c\xfd\xde\xdb\x34\x7c\x3f\x09\x19\x38\xd9\x0d\x59\x52\x83\x9e\x73\x7e\x4b\xa1\x96\x02\x42\x77\x97\x9c\x2a\x70\x5d\x84\x4a\x23\xfa\xb6\x6b\x4b\x10\x45\xf3\x5d\x54\xc1\xba\x1b\x91\xb8\x1b\x91\xec\xbb\xf1\x02\xd6\xe4\x71\xfc\x7a\x7a\xb4\x09\x9f\x5c\x4c\x9e\xb0\xf0\x06\xf2\x67\xb6\xde\x40\xb2\xb3\xbe\x50\x6e\xf7\x13\x95\x64\x72\x4d\x98\x48\x74\xb9\x5c\xb2\xc7\x83\x1d\x3d\x2f\x9b\x6a\x42\x27\x35\x26\x2b\x60\x01\x16\x38\x97\xda\x8c\xdb\xa7\x4d\xe1\xef\xaf\x26\xa7\x36\xa6\x0b\xf6\xa5\xcb\xb7\x25\x4a\xda\x6b\xd2\x90\xc1\xbb\xc6\xea\x9d\xbc\x7d\x7e\x7b\x20\xfd\xe2\xda\x58\x5a\x5f\xea\x6a\x65\x25\x05\xab\x89\xf1\xf5\xd5\xb7\x6a\x8d\x7d\x34\xa8\x04\xe1\xc1\x24\x55\x48\x65\x7a\xf7\xa6\xda\x89\xa7\x6e\x4d\x5d\x07\x76\x9d\xb2\xc0\xd1\x34\x6b\x02\x47\xe3\x0b\xc2\x89\x7a\xc0\xd1\x5c\x57\x0c\xea\x53\x7f\x4a\x25\xb8\x82\xb5\x17\x5d\x94\x5d\x4f\x43\xdd\x47\xf1\xc8\xac\x50\x07\xe0\xe4\xa0\xb0\x0f\xf3\xf9\x29\xc1\xe2\x5d\x39\x22\xec\x73\x72\xca\x9d\xbf\xc6\x81\xd6\x38\xb0\xcf\xd1\x33\xcf\x02\x16\xf7\xba\x41\xc0\x21\xb8\x54\xfe\x1f\x05\x2a\xeb\xaf\xcb\x25\x95\x62\xc9\x56\x2e\xca\xef\xbd\x98\x3e\x45\x42\x2f\x3e\x7b\x22\x1f\x9b\x5a\x83\xa9\x49\x4a\x93\xcf\x7b\x4e\x6d\xfb\x41\xb2\x35\x13\xa1\x37\xe3\x54\x4a\x63\x3f\x83\xc2\xdf\x4b\xa6\x50\x03\x33\x36\xd7\x96\x2f\x4d\xd0\xc9\xe8\x06\xea\x2a\xbd\x62\x26\x2f\xd3\x98\xca\x70\x76\x9a\x31\x41\xcb\x94\x18\xa9\xe6\x35\xea\x3c\xe5\x32\x9d\xaf\x89\xbd\xff\xf3\xe2\x7e\x15\xbc\xa8\xfe\x89\x57\xf2\xe6\xc3\x9b\xd7\x03\x22\xe9\x6c\x7f\x62\x1c\x9d\xce\xa5\x51\x3c\x1f\x3d\x26\x80\x84\x15\x8a\x2c\x0d\x2a\x7b\xad\xeb\x82\x38\xd4\xad\x99\xd3\xff\xf9\xce\x55\x13\x5b\x55\x90\xad\xec\x6e\x16\x38\x7b\xbc\x73\xf5\xb1\x39\x68\x62\x67\x3a\x58\x0f\xc2\xa4\xd3\xbe\x5a\x5f\xad\x5d\x3a\xbc\x54\x07\x78\xac\x81\x5f\x40\xd6\xd7\xad\x1f\xc9\x8d\x11\x03\x86\x1f\x8b\x70\x7e\xf8\x79\xd6\x91\xa7\x6a\xa1\xef\x96\x6d\xe5\xa4\x56\x02\xa6\xc5\xad\x01\x8d\x66\xea\x7a\x46\x4b\xce\x77\x0b\xa6\x6d\x17\xb2\x95\x4d\x97\x85\xc5\x76\x5d\x01\x0b\x62\x79\x0f\xff\xf9\xf4\xae\x76\xe1\xd7\xcf\x1f\xbc\xdc\x1e\xde\x7f\x19\xa7\xfd\x55\x48\x09\xbd\xdf\x10\x95\xcd\xa8\x5c\x17\xc4\xb0\x94\xa3\x6d\x6c\x75\x4b\xb2\xe7\xcb\x25\xe8\x82\x33\x33\x9e\x00\x11\x99\xff\x05\x63\x02\x75\x23\x4c\x91\x12\x2b\xb5\x6f\x53\xb7\x6e\xb9\xce\x98\x2d\xe4\x84\x83\x2c\xec\x55\x94\x0a\xc6\xb7\x6f\x6f\x27\x40\x89\x10\xd2\x96\xab\xd1\x8d\x05\xcf\x60\xc3\x4c\x0e\x9c\x69\xdb\x7e\x5c\xa2\xb5\x23\x57\x6f\x60\x16\x95\x21\xee\xf7\x93\xc3\x2f\x29\xc7\x02\x39\x81\xc5\x02\xa2\x08\xde\x1e\x97\x9d\xc0\xdd\x10\xa0\xc9\xa0\xab\x16\x94\xbb\x8b\x2e\x9a\xd7\xef\x5e\x33\x57\x20\xda\x1b\xd5\xa1\x1e\xfc\xd9\x57\xd1\x17\xb5\xcb\x2f\xa2\xd7\xbf\xe6\x1a\x3a\xab\x7a\x33\x37\xf4\x46\xfe\x11\x00\x00\xff\xff\xad\x42\xfe\x1c\x3b\x1f\x00\x00"), }, "/lokomotive-kubernetes/bootkube/conditional.tf": &vfsgen۰CompressedFileInfo{ name: "conditional.tf", @@ -3620,23 +3620,23 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/templates/kube-apiserver.yaml": &vfsgen۰CompressedFileInfo{ name: "kube-apiserver.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 10345, + uncompressedSize: 10527, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5a\x6d\x6f\x1b\x37\xf2\x7f\xaf\x4f\x31\xb0\xf3\x47\x62\xfc\xb5\x52\x9c\xc7\x56\xad\x0f\x70\x6d\xf7\x6a\x20\xb1\x75\x52\xd2\x1e\x70\x77\x28\x28\xee\xac\x96\x15\x97\xdc\x92\xb3\xb6\x15\x9d\xbf\xfb\x81\xdc\x5d\x89\xbb\x5a\x29\x8e\xd3\xe2\x80\xb3\xdf\x48\xe4\xcc\x8f\xf3\x3c\x7c\xd0\x21\x5c\x2b\xc8\x25\xa3\x44\x9b\xcc\x82\x14\x0b\x84\xd3\x5f\xa6\x7d\x10\xf4\xd4\x02\x2a\x5d\xcc\x53\x48\xb4\x81\x45\x31\xc3\x88\xe5\xc2\xa2\xb9\x41\x03\xa4\x41\x0a\x4b\xa8\x40\x2b\xb8\xd2\x31\xc2\xa5\x22\x34\x8a\xc9\xcb\xf1\xc0\x61\x6a\x4a\xd1\xf4\x0e\x4b\xc4\x31\xe3\x0b\xa4\x3e\xdc\x22\x28\xc4\xb8\xc9\xcd\xa4\x04\xe1\x98\x13\xc6\xd1\xba\xb9\x19\x02\x9b\x49\x74\x1f\xf1\x2e\xd7\x16\x3b\x56\xa7\x14\x7b\x87\x25\x9f\x42\x1a\xc0\xa9\x75\xe8\x9c\x29\xa5\x29\x00\xb7\x39\x72\x91\x08\x0e\x97\x63\x60\x71\x6c\xd0\x5a\x60\x2a\x76\x53\xcf\x07\xfe\xdf\x7d\xa4\x14\xc1\xb2\x0c\x21\xd7\x86\xe0\x36\x45\x05\x85\x15\x6a\xde\x3b\x84\xe9\xf5\xaf\x93\x8b\x8f\xd3\x8b\xf1\xf5\xe4\x43\xbf\x2d\x47\x6e\x34\x77\x88\x59\x61\xc3\x45\x63\x91\x24\x68\x50\x51\x89\x47\x29\x53\xf0\xd3\xe9\xd8\xe8\xbb\x25\xc4\x1a\xed\x00\xa6\x1a\x44\x02\xb7\x4e\x85\xda\x20\xdd\x9a\x6e\xd9\x67\x4b\x86\x5b\x21\xa5\xb3\x58\xb9\xbc\x50\x73\xc7\x63\x98\x8a\x75\xd6\x3b\x84\xe3\x17\x6f\x4b\x35\x87\xdf\x84\x26\xd0\xaa\x14\xed\xed\xab\x57\x2f\xfb\x30\x2b\xa8\x84\x61\xf1\x0d\x1a\x12\x16\xdb\x2e\x85\x5b\x41\xe9\x86\xc5\x9b\xb0\xd2\xa8\x77\xd8\x2d\xc2\x4c\x53\xba\x05\x13\xae\xdb\xf2\xc3\xe8\x8d\x1b\x73\xa1\xe6\x39\x45\xc5\xe4\xa8\x7a\x87\x80\x77\xd5\x57\x32\x2c\x49\x04\x1f\x38\xd7\x20\x02\xd7\x59\x26\x08\xbe\x7d\xcd\x92\x37\xfc\xdb\x37\x9e\x3f\x46\x62\x42\xda\x41\x6f\xb5\x82\x18\x13\xa1\x10\x0e\xdc\xaa\x07\x70\x7f\xdf\x5b\xad\x22\x67\x7a\xb7\xf6\xe0\x67\x26\x0b\xb4\x83\xb5\x2d\x07\xa5\x0f\xae\xd5\xa9\x94\x97\x9b\x88\x7c\x86\xbf\xc3\x33\xa1\xa8\x83\xc1\x60\x2e\x05\x67\xf6\x08\x8e\x8f\x20\xba\xbf\xef\x39\xc5\xfc\x1a\x28\x2d\xfa\x91\x37\xeb\x11\x15\xfb\x81\xd5\xca\x7f\xbc\xbf\xef\xb1\x5c\xfc\x8c\xc6\x0a\xad\x46\xc0\xf2\xdc\x0e\x6f\x8e\x7b\x87\x70\x99\xb8\x78\x34\x08\xc2\xc2\x6f\x2e\xb0\xb4\x72\x7a\x2a\x32\x5a\x4a\x34\xa0\x74\x8c\x3e\x95\x6e\x99\x22\x17\x39\x85\x45\x38\xc7\x5c\xea\x65\x86\xe5\x48\x90\x40\xa6\x50\xf0\xa2\x15\x33\xbd\x43\xc8\x75\xec\xa3\x80\x81\x8b\x73\x89\x1e\x15\x18\x01\x03\x12\x19\xf6\x1d\x6b\x6e\xf4\x8d\x88\x11\xe6\x86\x71\x4c\x0a\x09\x45\x3e\x37\x2c\x46\xfb\x40\xe3\x7b\x43\x3f\xc8\x76\xce\x18\x0b\xa1\xe2\x51\xa0\xc7\xc6\x8a\x9b\x49\x86\x99\x56\x53\xa4\xb5\x3d\xef\xef\x7b\x19\x12\x8b\x19\xb1\x51\x0f\x40\xb1\x0c\x47\x6d\x65\xcb\x61\x9b\x33\x5e\xcf\xd9\xa5\x25\xcc\x7a\x00\x92\xcd\x50\x5a\xc7\x09\x40\x02\xcd\xa8\xb6\x73\x94\x4b\xa6\xd0\x8f\x2f\xbe\xb1\x11\xcb\xf3\x2d\x58\x57\x59\x1c\xe7\x97\xea\x09\x50\x0f\x8c\xe0\xb8\xe2\xaf\x54\x01\xb0\x28\x91\x93\x36\xa5\x48\x19\x23\x9e\xbe\x0b\x64\xdc\x2d\xe5\x6e\x39\x1f\x23\xa1\x25\xc3\x08\xe7\xcb\x5a\xbf\xda\x0d\x00\x45\x1e\x33\xc2\x69\x7b\xbe\x96\x1f\x80\x96\x39\x8e\x60\xa2\xa5\x14\x6a\xfe\xd1\x53\xfb\x71\x13\x8e\xd4\xda\x7c\xb9\x64\xa5\x59\xee\x3e\x2a\x76\xc3\x84\x74\x41\x3e\x82\xe7\x01\xda\x46\xd2\x2e\xca\xe3\x90\xb2\x96\x99\x30\x73\x0d\xb0\x12\x2a\x0c\x27\xf7\x27\x1b\xe6\xdf\xe7\x80\x7d\x2e\x70\x7f\xbe\x35\x31\x12\x5a\x05\x70\x3c\x45\xbe\xc8\xb5\xaf\x76\x03\x26\xf3\x94\x0d\xb8\x36\xa8\xed\x80\xeb\x6c\xb8\x99\x1d\xc1\x01\x99\x02\x0f\xd6\x8c\x16\x39\xd7\x59\x3e\xb0\xc8\x0b\x23\x68\x59\x31\xbb\x95\x5d\x43\x44\x3b\x10\x7a\x98\xeb\x78\x04\x4f\x63\xcd\x17\x68\x86\x31\x26\xac\x90\xf4\xd4\x43\xd4\xd1\xeb\xfe\x52\x6d\xe9\x0a\xe9\x56\x9b\xc5\x08\xdc\x2a\xd5\xb8\x2b\x09\xd3\x46\x40\xd6\xa3\xad\x65\x32\x66\xc9\x59\xe5\xa0\x16\x2f\x37\x42\x3b\xa1\xce\x24\xb3\xf6\xca\x27\x65\x99\x73\x11\x97\x85\xa3\x8d\xb8\x11\x24\x38\x93\xbd\x5a\x1b\x73\x23\x38\x9e\x72\xae\x0b\x45\x57\xdd\x69\xec\xcd\xaf\x25\x9a\xa6\x11\x23\x58\xe0\x72\xe4\xe5\x8a\x8c\x96\xdd\xc2\xad\xc5\xd7\xb9\xe3\xd7\x66\x04\x17\x77\xc2\x92\x5d\x4f\x60\x92\x20\xa7\x11\x5c\xe9\x29\x4f\x31\x2e\x64\x6d\x06\xe7\x6b\x26\x14\x9a\x60\xc5\x1d\x85\xa6\xfc\x13\x19\x9b\xe3\x08\x56\xab\x8e\x80\xf6\x73\x9b\x00\x05\x5f\x43\x99\x8a\x37\xf6\x7d\x5c\x4e\x38\xa1\x86\x33\xa1\x86\x36\x0d\x46\x22\x1e\x7c\xf9\xf7\xfa\xb3\xb3\x37\x41\x74\x87\xc1\x08\xde\x21\x87\x61\xba\xcc\xd1\x38\xb5\xe0\x9f\xc1\x5c\x6b\xc7\x11\x4e\x45\xd1\x7a\xcf\x10\x55\x9b\x8b\x93\x27\xcf\xc6\xd7\xe7\xbf\x5e\x8e\x8f\xda\x94\x52\xea\xdb\x28\x37\xe2\x46\x48\x9c\x63\x7c\xe2\x62\xad\x4d\xa3\xb4\x5a\x66\xba\xb0\x11\x2b\x28\x3d\x49\x98\xcb\xe7\x16\x49\x41\xa9\x36\xe2\x93\x8f\x82\x28\xd3\x31\x9e\x4c\x7e\x38\x3d\x6b\x51\xcd\x84\x8a\x03\x89\x38\x23\x18\x9a\x42\x0d\x9b\xba\x0c\x2b\x8a\xb6\xa8\x5c\x0a\x54\x14\x71\x16\x25\x42\xe2\xc9\x10\x89\x0f\x37\x61\x35\xb4\xc8\x0d\x92\x1d\x72\x36\xe0\x86\xb6\x78\x75\x11\x47\x55\xf3\x34\x27\x9d\x61\xe0\x69\xc6\x15\x09\xdc\xdf\xb7\x20\x50\xb9\x7a\x15\xb1\x38\x13\xd6\x6d\x0f\xa2\x5c\x16\x73\xa1\xec\xc9\x55\xdd\xc9\xde\x89\x04\xf9\x92\x4b\xec\xbf\x13\x99\xa0\x09\x53\x73\x34\xfd\x69\x23\x8d\xfa\xe7\x65\xc6\x7f\x58\xe7\xcc\x14\xb9\x56\xb1\xad\x27\xa6\xa4\x0d\x9b\xa3\xcf\xd2\xfe\xfb\xc2\x15\x27\x35\x3f\xad\x17\xfd\x05\x67\xa9\xd6\x8b\xfe\xcf\x4c\x8a\xb8\x7b\x6a\x82\x56\x17\x86\xe3\xdf\x0a\x4d\xac\x3f\xae\xb2\xbe\x3f\xd6\xf1\xb4\x2a\x4b\x63\x2d\x05\x5f\xb6\xd5\x23\x1e\x47\x9c\xed\x35\x6d\x49\x53\xbb\xa1\xc3\xcc\x25\x01\x1a\x7a\x28\xcc\x2e\x8c\x05\x2e\x1f\x0c\xb1\xc0\x4e\x5d\x4a\xaf\xda\x6e\x5f\x3b\x8a\x69\x49\xb0\xe5\x68\xa1\x7c\xfd\xc6\xc8\xed\x4f\x4f\x9e\xb7\x66\x9d\x30\x12\x69\x6d\x06\x97\x67\x89\xe0\x8c\x76\x0b\x1b\x84\xd8\x96\xb6\x2d\xb8\x05\x2e\x1f\x00\xb3\xad\x71\x0d\x93\x1b\x4c\xd0\x18\x5c\xa7\x59\xe4\x7a\xbf\x3d\xd9\x6c\xf7\xfb\x17\x77\xeb\x8f\x3f\x69\x4b\xae\x6a\xb6\xc0\x42\xf5\x57\xab\x75\x2f\xae\x37\xec\x83\xed\xdc\xa8\x5a\x45\xc4\xca\x20\x77\x6a\xec\x4f\xd2\x16\xc3\x20\x2f\x66\x3b\x20\xeb\xe6\x24\xf2\xc8\xb8\x84\xea\xf6\x67\x45\x7d\x76\x79\x3e\xd9\x96\x8e\xa4\xf5\x7e\xda\x2f\xd2\x3e\x2f\x39\x04\x57\x23\x19\xe1\xe7\x75\xdb\xed\xa7\xd5\xca\x75\x91\x8e\x68\xf4\xa5\xe5\x74\x3e\x37\x38\xf7\x35\xc1\x9f\x49\x42\x01\x72\x77\xaa\x0b\x63\xee\x33\x22\x6c\xa0\x76\x27\x5a\x03\xf3\xf3\x5a\x6d\x43\x6e\x87\xa1\xc1\xdf\x0b\xb4\x94\x22\x8b\xdd\x7e\xe2\x61\x05\xbb\x81\xdc\x55\x55\x9a\xa8\x78\x47\x86\x45\xe5\x17\xeb\x03\x5e\xdc\x9d\xfc\x3d\x9a\x60\xa6\x09\xa3\x0b\x3f\xbb\x17\x60\x6e\x74\x91\xd7\x00\x1b\xce\xbf\xba\xe1\xbd\x8c\x85\x75\x89\x93\xe1\x36\xef\x47\xdb\x6a\xc1\xd5\x79\xb2\xed\x46\x5b\x16\xf7\x68\xc6\xf8\x02\x55\x7c\xe2\xca\xd0\xcb\xc6\x2e\xa3\xb9\x57\xf6\x3b\x88\x75\xff\x0f\x06\x77\xec\x72\xa2\xfd\xbd\xbf\x49\xd7\xd5\xf9\x9b\x14\x1d\x7d\xbf\x49\xd0\xdd\xf5\x1b\x34\x8d\x9e\x5f\x5d\x2b\x34\x08\xbe\xa8\xad\xb7\x38\xbf\xbc\xa9\x37\x00\xfe\xd7\x5a\x7a\x53\xb9\x47\x35\xf4\x0e\x88\x2f\x6c\xe7\xdb\x08\x5f\xd8\xcc\xb7\x01\x1e\xde\xca\x1b\xbc\xad\x46\xde\x98\xfb\xda\x36\xbe\x0f\xec\xc1\x4d\xbc\x13\xe4\x71\x2d\xbc\x01\x15\xaa\xed\xaf\xba\x9a\x93\x5f\xdf\xab\x3b\x01\x1f\xd3\xa9\x9b\x40\x7b\xab\x63\xf4\xb8\x4e\xbe\xc5\xff\xb8\x3e\xde\x3e\x0a\x3e\xa4\x89\xb7\xd4\xfb\x43\x7a\xf8\x6e\xc4\x47\x76\xf0\x06\xe0\x1f\xd4\xbf\xf7\x60\x3e\xa4\x7b\xef\x61\xdf\xd7\xbb\xf7\xb0\xed\xef\xdc\xcd\x06\xbc\xb9\x36\x73\x7f\x06\x59\x2c\x14\x5a\x3b\x36\x7a\x86\xa3\xa0\x9b\x13\xcf\xa7\x9a\x2f\x90\xc2\x41\xf0\x57\xe9\x23\x68\x64\x5d\x07\x2c\xaa\x9b\x51\x20\x6f\x79\x75\x51\x76\xe9\x00\xed\xc6\xc5\xd8\x8f\x46\x67\xcd\x25\x12\x81\x32\x9e\x60\xd2\x1c\xad\xc6\xc7\x8c\xd2\x11\x58\x62\x54\xd8\x41\xae\xe3\x00\xf0\x46\xcb\x22\xc3\xf7\x2e\x89\xed\xf6\xea\x95\x3b\x03\xcc\xcc\x51\x96\x78\x3b\x7c\x1f\x10\x3b\x43\x5d\x2b\xb9\x6c\xdc\x56\x05\xe8\x56\xfa\x98\xb7\x51\xaa\x2d\xed\x59\xc4\x5a\x39\xf4\x84\x9f\xc3\x7e\xfc\x9d\x4c\x29\x51\xcc\x88\xed\x90\x63\xfb\x4e\xa2\x75\xc9\x94\x32\x9f\x7a\xed\xdb\xa5\x6a\x78\xf4\x62\x70\x3c\x78\x19\x31\x99\x8b\xe0\x22\x72\xbf\xf5\x1f\x23\x4d\xc7\x45\xd5\x57\x5f\x38\xf9\x97\xa0\xd3\xf3\xf3\xc9\xc5\x74\xfa\x80\x2b\x9a\x80\xf7\x10\xde\xb3\x05\x82\x2d\x0c\x82\x50\x82\xce\xea\x2b\x3a\x98\xa3\x72\x1b\x23\x8c\xdb\x97\x56\x15\xca\x20\x40\x11\x09\xfc\x03\xa2\x4f\xf0\xa4\x92\x01\xfe\xf5\x1d\x50\x8a\xaa\x11\xea\xc8\x53\x0d\x07\x35\x85\xd2\x04\x89\x2e\x54\x7c\xd0\x24\xba\x13\xb4\xbe\x5c\x06\x9f\x1e\xbd\x36\xc4\x99\x56\x0a\xb9\xdb\x73\x01\xe9\xf5\x9a\xa3\x1d\x87\xde\x83\x86\xb6\xbf\xa0\x7f\xe4\xf9\x70\x36\xde\x14\x09\xc8\x5d\x95\x08\x5f\xe2\xfc\xdb\xa2\x17\xd1\xe0\x6f\xc8\x09\x78\xb5\xa4\x56\xd6\x29\xab\x34\x54\xed\x0e\x84\x85\xf5\xb5\x78\xbf\xb1\x94\xd5\xe5\xd3\x92\x20\x28\x14\x09\xd9\xb6\x63\xc8\x09\x29\x1a\xec\x3b\x96\x8d\x54\x3a\xa9\x43\x73\x73\x71\x0a\x06\x73\x83\x16\x55\x23\xd3\x0e\x9b\x5c\xcd\x75\xfa\xc0\x6c\x7b\xe9\xea\x71\x37\x65\x37\xb8\x65\x06\x8b\xe4\x59\x44\xfd\x0e\xdb\x5c\x69\xfd\x24\x1a\x3c\x82\x86\xa1\x50\xaa\xaa\x38\x44\x9f\x6e\x36\xf1\xb0\xc3\x37\xdf\x41\xac\xc1\x4a\xc4\x1c\x8e\xdd\x67\x85\xbb\x9c\x8d\x71\xd3\x8f\xae\xbe\x42\x4a\x94\xdb\xd1\x70\x38\x17\x94\x16\x33\x7f\xcf\x5f\xde\xd0\x47\x52\xcc\x0c\x33\xcb\x61\x65\xc0\xe1\x4c\xea\x59\x75\x7f\x3d\x3c\xf7\x24\xae\x39\x46\x31\xce\x04\x53\x83\x5a\xb4\xc3\x77\x6f\x9f\xb7\x2f\x72\x6b\x17\x44\x49\x67\x4a\x55\xd3\x03\x9e\xcc\x7b\x1b\xe9\x26\x2d\x9b\xfa\x47\x48\x42\x4b\x16\x28\x65\x04\x8c\x40\x22\xb3\xe4\x9f\xcb\x83\x07\x68\x66\xa1\xc8\x37\xb3\x5a\x71\x84\x67\x33\xe4\xcc\xc5\x6c\x1d\x9b\x2e\xa2\x84\x0a\x97\x4b\xb4\x81\xc6\x93\xbe\x25\x66\xe8\xa8\x0f\x2c\x21\x37\xe0\x96\x14\xd5\xc3\x74\x86\x4c\x95\x8f\xa1\x7e\xb8\x06\x15\x6e\xe5\x01\xfc\x50\xb8\x71\x61\xdd\x77\x85\x18\x63\xec\xc1\x53\x94\x59\xb0\x1e\x69\xc8\xd1\x24\xda\x64\xc0\x48\x67\x82\xaf\xdf\x33\xfb\x9e\xd4\xc5\xd7\x53\x72\xbe\x6d\x4d\x7b\x30\xae\xb3\x5c\x2b\x17\xc2\xfe\x2d\x5c\x17\xd4\xea\xd7\x83\xaf\xed\xe3\x3b\xa2\xad\xa2\x6c\x94\xb9\xad\x97\x08\xae\x55\x22\xe6\x51\x55\xfd\xf4\xd6\x5b\xc4\xde\x6e\xf1\x27\x57\xf6\x83\xe3\x17\x6f\x07\x4f\x9e\x3d\x9b\x9c\x5e\x9d\x5f\xbf\xff\xbf\x17\xaf\x5f\x1f\x1d\x75\x7d\xdf\x0c\xbc\x3a\xfa\xff\xe3\xa3\xa3\x83\x76\x56\xad\xf3\xf2\x2f\xfb\xfa\x44\xc0\xe5\x3a\xca\xf7\xdf\x5f\x5c\xff\xb8\x83\xa3\x2b\x0d\x00\xaa\x77\x32\xdb\x70\xd1\x21\x9c\x6b\xf8\xf0\x6e\x0a\x39\xb3\x96\x52\xa3\x8b\x79\xda\x20\xc8\x74\x8c\xce\xbf\x2d\xae\x09\xfe\x5e\x08\x83\x71\xb9\xbf\xb2\x9b\xdf\x37\x24\x46\x2b\x72\xa5\xd8\x15\xf0\xaa\x2c\x37\x78\x49\x64\xe8\xa2\xac\x2a\xe2\xf0\xda\x76\x4f\xfb\x8d\x33\xbc\x7c\xbe\x6f\x3a\x4a\x84\xda\x49\x52\x25\xe0\xae\x69\x2a\x94\x42\x09\x2f\x8e\xe3\x5e\xd8\xe0\x6a\xf1\x9b\x26\x8d\xea\x9f\x6d\x34\xa0\x66\x42\xc5\xf0\xa4\xdc\x72\xee\x6a\x78\x0d\x86\xca\x05\xbf\xd6\xed\xaa\xb5\x25\x69\x5c\x7e\xed\x3a\x22\x75\xfe\x94\xa3\xb1\xce\x2e\x1d\xea\xdf\x9a\x6c\xeb\x10\xfe\x54\xe5\xd1\x02\xb7\xf7\xe7\x00\x3b\xb8\xc2\x05\x2a\x27\x1d\x7f\x76\xe3\x50\xbe\x28\x07\xbc\x17\xd7\x3f\xb6\x52\xe2\xa1\xa9\xf0\x67\xec\x22\xff\x0b\x87\x91\xad\x23\x51\xfd\x64\xee\xca\x29\xde\x05\xb5\xd8\x14\xea\xd4\x5e\x69\x35\xd1\x9a\x5a\x67\x0b\x3f\xe5\x0e\x70\x23\x78\xf3\xfa\xf5\xcb\x57\xbd\xd0\x44\x5b\xe5\xb8\x7d\x64\x29\xbf\x8f\x1a\x55\xd3\x8d\xec\x79\xe8\xfe\xcc\x61\xc6\x7d\xf1\x1a\x07\x98\xb9\xb7\x40\xe7\x4d\x08\x99\xc2\x12\xc6\x67\x0e\xe8\x5c\x04\x97\x93\x8f\x3b\xd9\x74\xc6\x00\x66\x39\x2d\xcf\x85\x19\xc1\xea\x7e\xdb\xf4\xff\x09\x00\x00\xff\xff\x7a\x55\x93\x05\x69\x28\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5a\x6d\x6f\x1b\x37\xf2\x7f\xaf\x4f\x31\xb0\xf3\x47\x62\xfc\xb5\x52\x9c\xc7\x76\x5b\x1f\xe0\xda\xce\xd5\x40\x62\xeb\xa4\xa4\x3d\xe0\xee\x50\x50\xdc\x59\x2d\x2b\x2e\xb9\x25\x67\x6d\xab\x3e\x7f\xf7\x03\xb9\xbb\xd2\x3e\x49\x71\x94\x16\x07\x9c\xfd\x46\x22\x67\x7e\xf3\xc0\x99\xe1\x90\xd4\x21\x5c\x2b\xc8\x24\xa3\x58\x9b\xd4\x82\x14\x4b\x84\xd3\x9f\x67\x43\x10\xf4\xd4\x02\x2a\x9d\x2f\x12\x88\xb5\x81\x65\x3e\xc7\x80\x65\xc2\xa2\xb9\x41\x03\xa4\x41\x0a\x4b\xa8\x40\x2b\xb8\xd2\x11\xc2\xa5\x22\x34\x8a\xc9\xcb\xc9\xc8\x61\x6a\x4a\xd0\x0c\x0e\x0b\xc4\x09\xe3\x4b\xa4\x21\xdc\x22\x28\xc4\xa8\xc9\xcd\xa4\x04\xe1\x98\x63\xc6\xd1\xba\xb9\x39\x02\x9b\x4b\x74\x1f\xf1\x2e\xd3\x16\x7b\xa4\x53\x82\x83\xc3\x82\x4f\x21\x8d\xe0\xd4\x3a\x74\xce\x94\xd2\x54\x03\xb7\x19\x72\x11\x0b\x0e\x97\x13\x60\x51\x64\xd0\x5a\x60\x2a\x72\x53\xcf\x47\xfe\xdf\x7d\xa4\x04\xc1\xb2\x14\x21\xd3\x86\xe0\x36\x41\x05\xb9\x15\x6a\x31\x38\x84\xd9\xf5\x2f\xd3\x8b\x4f\xb3\x8b\xc9\xf5\xf4\xe3\xb0\xad\x47\x66\x34\x77\x88\x69\x6e\xeb\x42\x23\x11\xc7\x68\x50\x51\x81\x47\x09\x53\xf0\xe3\xe9\xc4\xe8\xbb\x15\x44\x1a\xed\x08\x66\x1a\x44\x0c\xb7\xce\x84\xca\x21\xfd\x96\x76\xfc\xd3\xd1\xe1\x56\x48\xe9\x3c\x56\x88\x17\x6a\xe1\x78\x0c\x53\x91\x4e\x07\x87\x70\xfc\xe2\x6d\x61\xe6\xf8\x9b\xba\x0b\xb4\x2a\x54\x7b\xfb\xea\xd5\xcb\x21\xcc\x73\x2a\x60\x58\x74\x83\x86\x84\xc5\xf6\x92\xc2\xad\xa0\x64\xc3\xe2\x5d\x58\x5a\x34\x38\xec\x57\x61\xae\x29\xe9\xc0\xd4\xe5\xb6\xd6\x21\x7c\xe3\xc6\x5c\xa8\x79\x4e\x51\x32\x39\xaa\xc1\x21\xe0\x5d\xf9\x95\x0c\x8b\x63\xc1\x47\x6e\x69\x10\x81\xeb\x34\x15\x04\xdf\xbe\x66\xf1\x1b\xfe\xed\x1b\xcf\x1f\x21\x31\x21\xed\x68\x70\x7f\x0f\x11\xc6\x42\x21\x1c\x38\xa9\x07\xf0\xf0\x30\xb8\xbf\x0f\x9c\xeb\x9d\xec\xd1\x4f\x4c\xe6\x68\x47\x6b\x5f\x8e\x8a\x35\xb8\x56\xa7\x52\x5e\x6e\x22\xf2\x19\xfe\x06\xcf\x84\xa2\x1e\x06\x83\x99\x14\x9c\xd9\x23\x38\x3e\x82\xe0\xe1\x61\xe0\x0c\xf3\x32\x50\x5a\xf4\x23\x6f\xd6\x23\x2a\xf2\x03\xf7\xf7\xfe\xe3\xc3\xc3\x80\x65\xe2\x27\x34\x56\x68\x15\x02\xcb\x32\x3b\xbe\x39\x1e\x1c\xc2\x65\xec\xe2\xd1\x20\x08\x0b\xbf\xba\xc0\xd2\xca\xd9\xa9\xc8\x68\x29\xd1\x80\xd2\x11\xfa\x54\xba\x65\x8a\x5c\xe4\xe4\x16\xe1\x1c\x33\xa9\x57\x29\x16\x23\xb5\x04\x32\xb9\x82\x17\xad\x98\x19\x1c\x42\xa6\x23\x1f\x05\x0c\x5c\x9c\x4b\xf4\xa8\xc0\x08\x18\x90\x48\x71\xe8\x58\x33\xa3\x6f\x44\x84\xb0\x30\x8c\x63\x9c\x4b\xc8\xb3\x85\x61\x11\xda\x47\x3a\xdf\x3b\xfa\x51\xbe\x73\xce\x58\x0a\x15\x85\x35\x3b\x36\x5e\xdc\x4c\x32\x4c\xb5\x9a\x21\xad\xfd\xf9\xf0\x30\x48\x91\x58\xc4\x88\x85\x03\x00\xc5\x52\x0c\xdb\xc6\x16\xc3\x36\x63\xbc\x9a\xb3\x2b\x4b\x98\x0e\x00\x24\x9b\xa3\xb4\x8e\x13\x80\x04\x9a\xb0\xf2\x73\x90\x49\xa6\xd0\x8f\x2f\xbf\xb1\x01\xcb\xb2\x0e\xac\xab\x2c\x8e\xf3\x4b\xed\x04\xa8\x06\x42\x38\x2e\xf9\x4b\x53\x00\x2c\x4a\xe4\xa4\x4d\xa1\x52\xca\x88\x27\xef\x6b\x3a\x6e\xd7\x72\xbb\x9e\xfb\x68\x68\xc9\x30\xc2\xc5\xaa\xb2\xaf\x5a\x06\x80\x3c\x8b\x18\xe1\xac\x3d\x5f\xe9\x0f\x40\xab\x0c\x43\x98\x6a\x29\x85\x5a\x7c\xf2\xd4\x7e\xdc\xd4\x47\x2a\x6b\xbe\x5c\xb3\xc2\x2d\x77\x9f\x14\xbb\x61\x42\xba\x20\x0f\xe1\x79\x0d\x6d\xa3\x69\x1f\xe5\x71\x9d\xb2\xd2\x99\x30\x75\x1b\x60\xa9\x54\x3d\x9c\xdc\x9f\x6c\xb8\x7f\xd7\x02\xec\x5a\x02\xf7\xe7\xb7\x26\x46\x42\xab\x1a\x1c\x4f\x90\x2f\x33\xed\xab\xdd\x88\xc9\x2c\x61\x23\xae\x0d\x6a\x3b\xe2\x3a\x1d\x6f\x66\x43\x38\x20\x93\xe3\xc1\x9a\xd1\x22\xe7\x3a\xcd\x46\x16\x79\x6e\x04\xad\x4a\x66\x27\xd9\x6d\x88\x68\x47\x42\x8f\x33\x1d\x85\xf0\x34\xd2\x7c\x89\x66\x1c\x61\xcc\x72\x49\x4f\x3d\x44\x15\xbd\xee\x2f\xd1\x96\xae\x90\x6e\xb5\x59\x86\xe0\xa4\x94\xe3\xae\x24\xcc\x1a\x01\x59\x8d\xb6\xc4\xa4\xcc\x92\xf3\xca\x41\xa5\x5e\x66\x84\x76\x4a\x9d\x49\x66\xed\x95\x4f\xca\x22\xe7\x02\x2e\x73\x47\x1b\x70\x23\x48\x70\x26\x07\x95\x35\xe6\x46\x70\x3c\xe5\x5c\xe7\x8a\xae\xfa\xd3\xd8\xbb\x5f\x4b\x34\x4d\x27\x06\xb0\xc4\x55\xe8\xf5\x0a\x8c\x96\xfd\xca\xad\xd5\xd7\x99\xe3\xd7\x26\x84\x8b\x3b\x61\xc9\xae\x27\x30\x8e\x91\x53\x08\x57\x7a\xc6\x13\x8c\x72\x59\xb9\xc1\xad\x35\x13\x0a\x4d\x4d\xe2\x96\x42\x53\xfc\x89\x94\x2d\x30\x84\xfb\xfb\x9e\x80\xf6\x73\x9b\x00\x05\x5f\x43\x99\x8a\x36\xfe\xdd\x2f\x27\x9c\x52\xe3\xb9\x50\x63\x9b\xd4\x46\x02\x5e\xfb\xf2\xef\xf5\x67\xe7\x6f\x82\xe0\x0e\x6b\x23\x78\x87\x1c\xc6\xc9\x2a\x43\xe3\xcc\x82\x7f\xd6\xe6\x5a\x1d\x47\x7d\x2a\x08\xd6\x3d\x43\x50\x36\x17\x27\x4f\x9e\x4d\xae\xcf\x7f\xb9\x9c\x1c\xb5\x29\xa5\xd4\xb7\x41\x66\xc4\x8d\x90\xb8\xc0\xe8\xc4\xc5\x5a\x9b\x46\x69\xb5\x4a\x75\x6e\x03\x96\x53\x72\x12\x33\x97\xcf\x2d\x92\x9c\x12\x6d\xc4\xef\x3e\x0a\x82\x54\x47\x78\x32\xfd\xe1\xf4\xac\x45\x35\x17\x2a\xaa\x69\xc4\x19\xc1\xd8\xe4\x6a\xdc\xb4\x65\x5c\x52\xb4\x55\xe5\x52\xa0\xa2\x80\xb3\x20\x16\x12\x4f\xc6\x48\x7c\xbc\x09\xab\xb1\x45\x6e\x90\xec\x98\xb3\x11\x37\xd4\xe1\xd5\x79\x14\x94\x9b\xa7\x39\xe9\x0d\x03\x4f\x33\x29\x49\xe0\xe1\xa1\x05\x81\xca\xd5\xab\x80\x45\xa9\xb0\xae\x3d\x08\x32\x99\x2f\x84\xb2\x27\x57\xd5\x4e\xf6\x5e\xc4\xc8\x57\x5c\xe2\xf0\xbd\x48\x05\x4d\x99\x5a\xa0\x19\xce\x1a\x69\x34\x3c\x2f\x32\xfe\xe3\x3a\x67\x66\xc8\xb5\x8a\x6c\x35\x31\x23\x6d\xd8\x02\x7d\x96\x0e\x3f\xe4\xae\x38\xa9\xc5\x69\x25\xf4\x67\x9c\x27\x5a\x2f\x87\x3f\x31\x29\xa2\xfe\xa9\x29\x5a\x9d\x1b\x8e\x7f\xcb\x35\xb1\xe1\xa4\xcc\xfa\xe1\x44\x47\xb3\xb2\x2c\x4d\xb4\x14\x7c\xd5\x36\x8f\x78\x14\x70\xb6\xd3\xb5\x05\x4d\xb5\x0c\x3d\x6e\x2e\x08\xd0\xd0\x63\x61\xb6\x61\x2c\x71\xf5\x68\x88\x25\xf6\xda\x52\xac\xaa\xed\x5f\x6b\x47\x31\x2b\x08\x3a\x0b\x2d\x94\xaf\xdf\x18\xb8\xfe\xf4\xe4\x79\x6b\xd6\x29\x23\x91\xd6\x6e\x70\x79\x16\x0b\xce\x68\xbb\xb2\xb5\x10\xeb\x58\xdb\x82\x5b\xe2\xea\x11\x30\x5d\x8b\x2b\x98\xcc\x60\x8c\xc6\xe0\x3a\xcd\x02\xb7\xf7\xdb\x93\x4d\xbb\x3f\xbc\xb8\x5b\x7f\xfc\x51\x5b\x72\x55\xb3\x05\x56\x37\xff\xfe\x7e\xbd\x17\x57\x0d\xfb\xa8\x9b\x1b\xe5\x56\x11\xb0\x22\xc8\x9d\x19\xbb\x93\xb4\xc5\x30\xca\xf2\xf9\x16\xc8\x6a\x73\x12\x59\x60\x5c\x42\xf5\xaf\x67\x49\x7d\x76\x79\x3e\xed\x6a\x47\xd2\xfa\x75\xda\xad\xd2\xae\x55\x72\x08\xae\x46\x32\xc2\xcf\xdb\xb6\x7d\x9d\xee\xef\xdd\x2e\xd2\x13\x8d\xbe\xb4\x9c\x2e\x16\x06\x17\xbe\x26\xf8\x33\x49\x5d\x81\xcc\x9d\xea\xea\x31\xf7\x19\x15\x36\x50\xdb\x13\xad\x81\xf9\x79\xab\xba\x90\xdd\x30\x34\xf8\x5b\x8e\x96\x12\x64\x91\xeb\x27\x1e\x57\xb0\x1b\xc8\x7d\x55\xa5\x89\x8a\x77\x64\x58\x50\x7c\xb1\x3e\xe0\xc5\xdd\xc9\xdf\x83\x29\xa6\x9a\x30\xb8\xf0\xb3\x3b\x01\x16\x46\xe7\x59\x05\xb0\xe1\xfc\xab\x1b\xde\xc9\x98\x5b\x97\x38\x29\x76\x79\x3f\xd9\xd6\x16\x5c\x9e\x27\x9b\xcb\xe8\xba\x08\x1f\xc3\xbd\xa7\x5c\x32\xec\x9d\x64\x0b\xdb\x61\xea\x26\x5c\xab\xbd\x5f\xa7\x4c\xb1\x75\x04\x73\xc6\x97\xa8\xa2\x13\x57\xe4\x5e\x36\x7a\x98\x66\x27\xee\xfb\x93\x75\x77\x51\x1b\xdc\xd2\x43\x05\xbb\x3b\x8b\x26\x5d\x5f\x5f\xd1\xa4\xe8\xe9\x2a\x9a\x04\xfd\x3d\x45\x83\xa6\xd1\x51\x94\x97\x16\x0d\x82\x2f\x6a\x1a\x5a\x9c\x5f\xde\x32\x34\x00\xfe\xd7\x1a\x86\xa6\x71\x7b\xb5\x0b\x3d\x10\x5f\xd8\x2c\x74\x11\xbe\xb0\x55\xe8\x02\x3c\xbe\x51\x68\xf0\xb6\xda\x84\xc6\xdc\xd7\x36\x09\xbb\xc0\x1e\xdd\x22\xf4\x82\xec\xd7\x20\x34\xa0\xea\x66\xfb\x8b\xb4\xe6\xe4\xd7\x77\x02\xbd\x80\xfb\xf4\x01\x4d\xa0\x9d\xd5\x31\xd8\xaf\x4f\xe8\xf0\xef\xd7\x25\xb4\x0f\x9a\x8f\x69\x11\x5a\xe6\xfd\x21\x1d\xc2\x76\xc4\x3d\xfb\x83\x06\xe0\x1f\xd4\x1d\xec\xc0\x7c\x4c\x6f\xb0\x83\x7d\x57\x67\xb0\x83\x6d\x77\x5f\xd0\xdc\x80\x9b\xbb\xf6\x1e\x1d\x41\x50\x75\x04\xbb\x70\x0d\xb2\x48\x28\xb4\x76\x62\xf4\x1c\xc3\x5a\x97\x40\x3c\x9b\x69\xbe\x44\xaa\x0f\x82\x7f\x00\x08\xa1\x91\xcd\x3d\xb0\xa8\x6e\xc2\x9a\x22\xc5\x85\x4b\xb1\xfb\xd7\xd0\x6e\x9c\x25\xef\x8c\x4e\x9b\x22\x62\x81\x32\x9a\x62\xdc\x1c\x2d\xc7\x27\x8c\x92\x10\x2c\x31\xca\xed\x28\xd3\x51\x0d\xf0\x46\xcb\x3c\xc5\x0f\xae\x38\xd8\xae\xf4\x32\x4c\x6a\x98\xa9\xa3\x2c\xf0\xb6\xc4\x54\x8d\xd8\x39\xea\x5a\xc9\x55\xe3\x8e\xad\x86\x6e\xa5\xcf\x25\x1b\x24\xda\xd2\x0e\x21\xd6\xca\xb1\x27\xfc\x1c\xf6\xfe\x37\x49\x85\x46\x11\x23\xb6\x45\x8f\xee\x4d\x4a\xeb\x6a\x2c\x61\x3e\xa5\xdb\x77\x62\xe5\x70\xf8\x62\x74\x3c\x7a\x19\x30\x99\x89\xda\xf5\xe9\x6e\xef\xef\xa3\x4d\xcf\xf5\xda\x57\x5f\x93\xf9\xf7\xab\xd3\xf3\xf3\xe9\xc5\x6c\xf6\x88\x8b\xa5\x1a\xef\x21\x7c\x60\x4b\x04\x9b\x1b\x04\xa1\x04\x9d\x55\x17\x8b\xb0\x40\xe5\x1a\x2e\x8c\xda\x57\x6d\x25\xca\xa8\x86\x22\x62\xf8\x07\x04\xbf\xc3\x93\x52\x07\xf8\xd7\x77\x40\x09\xaa\x46\xa8\x23\x4f\x34\x1c\x54\x14\x4a\x13\xc4\x3a\x57\xd1\x41\x93\xe8\x4e\xd0\xfa\x4a\x1c\x7c\x7a\x0c\xda\x10\x67\x5a\x29\xe4\xae\x97\x03\xd2\x6b\x99\xe1\x96\xa3\xfa\x41\xc3\xda\x9f\xd1\x3f\x4d\x7d\x3c\x9b\x6c\x8a\x04\x64\xae\x4a\xd4\xdf\x0f\xfd\x8b\xa8\x57\xd1\xe0\xaf\xc8\x09\x78\x29\x52\x2b\xeb\x8c\x55\x1a\xca\x6d\x14\x84\x85\xf5\x65\xfe\xb0\x21\xca\xea\xe2\x41\x4c\x10\xe4\x8a\x84\x6c\xfb\xb1\xce\x09\x09\x1a\x1c\x3a\x96\x8d\x56\x3a\xae\x42\x73\x73\xdd\x0b\x06\x33\x83\x16\x55\x23\xd3\x0e\x9b\x5c\x4d\x39\x43\x60\xb6\x2d\xba\x7c\x92\x4e\xd8\x0d\x76\xdc\x60\x91\x3c\x8b\xa8\x5e\x8f\x9b\x92\xd6\x0f\xb9\xb5\xa7\xdb\x7a\x28\x14\xa6\x2a\x0e\xc1\xef\x37\x9b\x78\xd8\xb2\x36\xdf\x41\xa4\xc1\x4a\xc4\x0c\x8e\xdd\x67\x85\xdb\x16\x1b\xa3\xe6\x3a\xba\xfa\x0a\x09\x51\x66\xc3\xf1\x78\x21\x28\xc9\xe7\xfe\x75\xa2\x78\x57\x08\xa4\x98\x1b\x66\x56\xe3\xd2\x81\xe3\xb9\xd4\xf3\xf2\xd6\x7d\x7c\xee\x49\xdc\xa6\x1b\x44\x38\x17\x4c\x8d\x2a\xd5\x0e\xdf\xbf\x7d\xde\xbe\x7e\xae\x96\x20\x88\x7b\x53\xaa\x9c\x1e\xf1\x78\x31\xd8\x68\x37\x6d\xf9\xd4\x3f\x9d\x12\x5a\xb2\x40\x09\x23\x60\x04\x12\x99\x25\xff\xc8\x5f\x7b\x36\x67\x16\xf2\x6c\x33\xab\x15\x47\x78\x36\x47\xce\x5c\xcc\x56\xb1\xe9\x22\x4a\xa8\xba\xb8\x58\x1b\x68\xfc\x10\xc1\x12\x33\x74\x34\x04\x16\x93\x1b\x70\x22\x45\xf9\x9c\x9e\x22\x53\xc5\x13\xae\x1f\xae\x40\x85\x93\x3c\x82\x1f\x72\x37\x2e\xac\xfb\xae\x10\x23\x8c\x3c\x78\x82\x32\xad\xc9\x23\x0d\x19\x9a\x58\x9b\x14\x18\xe9\x54\xf0\xf5\x2b\xec\xd0\x93\xba\xf8\x7a\x4a\x6e\x6d\x5b\xd3\x1e\x8c\xeb\x34\xd3\xca\x85\xb0\x7f\xc1\xd7\x39\xb5\xf6\xeb\xd1\xd7\xee\xe3\x5b\xa2\xad\xa4\x6c\x94\xb9\xce\xfb\x09\xd7\x2a\x16\x8b\xa0\xac\x7e\xba\xf3\x82\xb2\x73\xb7\xf8\x93\x2b\xfb\xc1\xf1\x8b\xb7\xa3\x27\xcf\x9e\x4d\x4f\xaf\xce\xaf\x3f\xfc\xdf\x8b\xd7\xaf\x8f\x8e\xfa\xbe\x6f\x06\x5e\x1d\xfd\xff\xf1\xd1\xd1\x41\x3b\xab\xd6\x79\xf9\x97\x5d\xfb\x44\x8d\xcb\xed\x28\xdf\x7f\x7f\x71\xfd\x6e\x0b\x47\x5f\x1a\x00\x94\xaf\x7b\xb6\xb1\x44\x87\x70\xae\xe1\xe3\xfb\x19\x64\xcc\x5a\x4a\x8c\xce\x17\x49\x83\x20\xd5\x11\xba\xf5\x6d\x71\x4d\xf1\xb7\x5c\x18\x8c\x8a\xfe\xca\x6e\x7e\x95\x11\x1b\xad\xc8\x95\x62\x57\xc0\xcb\xb2\xdc\xe0\x25\x91\xa2\x8b\xb2\xb2\x88\xc3\x6b\xdb\x3f\xed\x1b\x72\x78\xf9\x7c\xd7\x74\x10\x0b\xb5\x95\xa4\x4c\xc0\x6d\xd3\x94\x2b\x85\x12\x5e\x1c\x47\x83\xfa\x06\x57\xa9\xdf\x74\x69\x50\xfd\xd8\xa4\x01\x35\x17\x2a\x82\x27\x45\xcb\xb9\x6d\xc3\x6b\x30\x94\x4b\xf0\x4b\xb5\x5d\xb5\x5a\x92\xd6\xa5\x5a\xff\xd1\xab\xf7\x07\x28\x0d\x39\xdb\x6c\xa8\x7e\x21\xd3\xb5\xa1\xfe\x03\x9b\xbd\x15\xee\x5e\x02\x6e\xe1\xaa\x0b\x28\x17\xe9\xf8\xb3\x8d\x43\xf1\x0e\x5e\xe3\xbd\xb8\x7e\xd7\x4a\x89\xc7\xa6\xc2\x9f\xd1\x45\xfe\x17\x0e\x23\x9d\x23\x51\xf5\xd0\xef\xca\x29\xde\xd5\x6a\xb1\xc9\xd5\xa9\xbd\xd2\x6a\xaa\x35\xb5\xce\x16\x7e\xca\x1d\x0c\x43\x78\xf3\xfa\xf5\xcb\x57\x83\xba\x8b\x3a\xe5\xb8\x7d\x64\x29\xbe\x87\x8d\xaa\xe9\x46\x76\x3c\xcf\x7f\xe6\x30\xe3\xbe\x78\x8b\x6b\x98\x99\xf7\x40\xef\x0d\x0b\x99\xdc\x12\x46\x67\x0e\xe8\x5c\xd4\x2e\x3d\xf7\x3b\xd9\xf4\xc6\x00\xa6\x19\xad\xce\x85\x09\xe1\xfe\xa1\xeb\xfa\xff\x04\x00\x00\xff\xff\x39\x64\x39\xb4\x1f\x29\x00\x00"), }, "/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver/values.yaml": &vfsgen۰CompressedFileInfo{ name: "values.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 633, + uncompressedSize: 650, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x8e\x9b\x40\x0c\x86\xef\x3c\x85\xa5\x5e\x5a\x69\x77\x28\x5d\xd4\xad\xb8\xad\x58\x55\x45\x3d\x34\x6a\x9f\x60\x32\x18\xb0\x32\x9d\x41\xb6\xa1\xcd\xdb\x57\x43\x02\x4d\x36\x11\x17\xfc\x1b\x7f\xfe\x8c\x1d\x49\x90\x67\xe4\x2a\x03\xd8\x8a\xef\x78\xbc\xaa\x6b\x64\x4d\x41\xaa\xc8\xe1\x8b\x73\x71\x0a\xba\x9b\xf6\x29\x74\x76\x6d\xa3\xba\xb6\xf6\x84\x41\xeb\x7b\xd9\x4d\xb2\xae\xe9\x7b\xc6\xde\x2a\xc5\xf0\x7f\xee\x32\xbc\x1a\xbf\x69\x9c\x29\xf4\xdb\xf6\x58\xc1\xe1\x8b\x98\xde\xb1\xa1\x98\x0f\xc7\x11\xf9\x30\xed\xb1\x9a\x0b\x53\x3c\x9b\x32\xc9\xfa\x38\xb5\x3b\x8e\x33\xb5\xa7\x9b\x93\xcd\xaf\xe5\x48\x79\x43\xff\xea\x6d\x2f\x17\x57\xd7\xcd\xeb\xcf\x0a\x8a\x8f\x66\x79\xf2\x4f\x09\xa7\x3c\x89\x62\x9b\xdc\xe4\x95\xb8\x82\x7c\x12\xce\x65\xb0\x8c\xb9\xb3\x8f\x0e\x59\xa9\x23\x67\x15\x25\x03\x60\x1c\x3d\x39\x2b\x15\x14\x19\xc0\x3b\x68\x3a\xd0\x81\x04\x48\x12\x08\x1f\x20\xc9\x3e\x6e\x7f\x1d\xfe\x90\xf7\xb0\x47\xc0\xbf\x63\x14\x6c\x21\x06\xf8\x16\x45\x9b\x5d\x7a\x1b\x23\x2b\x3c\x97\xe5\x13\x68\x04\x1d\x10\x9c\x4f\x2e\xbc\x90\xcf\xca\xf0\x3e\x11\x39\xa0\xa2\x98\x16\x3b\x3b\x79\x35\x32\xbb\x0f\x60\xc3\x82\xb3\xde\x03\x05\x45\xee\xac\x43\xd9\xb0\x9f\xcb\xf2\xc9\xac\x8a\x9d\xf5\x82\x0f\x40\x7a\xc7\xc7\x1f\xef\x48\xad\xd3\xa7\xcf\x7e\x84\x17\xef\x9b\x6d\x47\x75\xe2\x65\xff\x02\x00\x00\xff\xff\xce\x24\xb0\x02\x79\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x8e\x94\x40\x10\x86\xef\x3c\x45\x25\x5e\x34\xd9\x6d\xc4\x25\xae\xe1\xb6\x61\x63\x24\x1e\x9c\xe8\xd1\x78\xe8\x69\x0a\xa8\x6c\xdb\x4d\xaa\x0a\x74\xde\xde\x34\x2c\xb8\xb3\x33\xe1\x42\xfd\xd5\xf5\xf5\x57\x6d\x47\x12\xe4\x19\xb9\xca\x00\xf6\xe2\x2b\x9e\xce\xea\x1a\x59\x53\x90\x2a\x72\xf8\xe0\x5c\x9c\x82\x1e\xa6\x63\x0a\x9d\xdd\xda\xa8\xae\xad\x3d\x61\xd0\xfa\x5a\x76\x91\x6c\xd7\xf4\x3d\x63\x6f\x95\x62\xf8\x3f\xf7\x32\x3c\x1b\xbf\x68\x3c\x53\xe8\xb7\xed\xb1\x82\xa7\x4f\x62\x7a\xc7\x86\x62\x3e\x9c\x46\xe4\xa7\xe9\x88\xd5\x5c\x98\xe2\xde\x94\x49\xd6\xc7\xa9\x3d\x70\x9c\xa9\x5d\x77\x4e\x36\x3f\x96\x25\xe5\x15\xfd\xb3\xb7\xbd\xbc\xd8\xba\x6e\x1e\xbf\x57\x50\xbc\x37\xcb\x97\x7f\x48\x38\xe5\x49\x14\xdb\xe4\x26\x8f\xc4\x15\xe4\x93\x70\x2e\x83\x65\xcc\x9d\xbd\x75\xc8\x4a\x1d\x39\xab\x28\x19\x00\xe3\xe8\xc9\x59\xa9\xa0\xc8\x00\xde\x40\xd3\x81\x0e\x24\x40\x92\x40\x78\x03\x49\xf6\x76\x7f\x75\xf8\x43\xde\xc3\x11\x01\xff\x8e\x51\xb0\x85\x18\xe0\x4b\x14\x6d\x0e\xe9\x6f\x8c\xac\x70\x5f\x96\x77\xa0\x11\x74\x40\x70\x3e\xb9\xf0\x42\x7e\x56\x86\xb7\x89\xc8\x01\x15\xc5\xb4\xd8\xd9\xc9\xab\x91\xd9\xbd\x03\x1b\x16\x9c\xf5\x1e\x28\x28\x72\x67\x1d\xca\x8e\xfd\x58\x96\x77\x66\x53\xec\xac\x17\xbc\x01\xd2\x2b\x3e\xfe\x74\x45\x6a\x9b\x5e\x8f\x7d\x0b\x0f\xde\x37\xfb\x1d\xd5\xca\x5b\xda\xca\x76\x7d\x64\xf8\xf9\x2b\xfb\x17\x00\x00\xff\xff\x2e\xf6\xab\x4f\x8a\x02\x00\x00"), }, "/lokomotive-kubernetes/bootkube/resources/charts/kube-apiserver.yaml": &vfsgen۰CompressedFileInfo{ name: "kube-apiserver.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 684, + uncompressedSize: 804, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x31\x6e\xf3\x30\x0c\x85\xf7\x9c\xc2\xc3\x7f\x8a\x6c\x86\xb3\x04\xff\xd0\xa0\x3d\x00\x21\x4b\xac\x4b\x44\x95\x04\x4a\x0a\x6a\x14\xb9\x7b\x21\xda\x56\x64\x24\x9b\xf5\xf8\xd1\x7c\x8f\x54\x81\x22\xf2\x0d\xf9\x78\xe8\xba\xfa\xf8\x8f\xf3\xb1\xfb\xf7\x5b\xdf\x70\xc5\xf9\xde\x02\x03\x72\xda\x13\x1a\x39\x15\xa4\x3c\x49\x63\xaf\xb5\xcf\x2e\x5d\xf2\x58\xb0\x55\x54\x8b\x08\x21\x8f\x05\xd5\x6a\xfb\x8d\x56\xb5\x1f\x93\x36\x83\x25\x74\x69\xa8\xe5\xa2\xc1\x6b\x66\x47\x88\xf4\x82\x5a\xe3\xb4\xd0\x16\x68\x9a\x18\x27\x95\xc8\xbb\xc7\xb8\x46\x6c\xa7\xb6\xec\x6e\xf8\x8e\xdf\x7b\x78\xea\xd9\x36\xfb\xdc\xb2\x3a\xa2\x6f\x35\x61\x41\xbe\xe6\x80\x7c\xcd\x23\x82\x48\xb2\x30\xeb\xb3\xb9\xb0\xbf\x91\x41\x96\xbd\x15\x01\xc2\xaa\x6c\xa1\x3f\xe4\x22\xb1\x46\x5e\x2e\x14\xa5\xec\xd4\x68\xb1\x7f\x4c\x17\x48\x44\x68\x3c\x35\x87\x1c\xce\xa7\xf7\xe6\x84\xa0\xc9\xc8\xa0\xc4\x39\x26\x34\x65\x07\xf1\x44\xe2\x66\x95\x24\x7c\x04\x43\xc2\x31\x06\x4b\x5a\x89\x9b\xed\x5b\x9c\xfc\x04\x1f\xf1\xcd\xf5\xd6\x9e\x5d\x42\xfe\x54\x1a\x17\xcb\x52\x00\xef\x40\x59\x0b\x54\x6b\xf7\xc3\x5f\x00\x00\x00\xff\xff\xb5\x50\x9b\x6f\xac\x02\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x6a\x2b\x31\x0c\x85\xf7\xf7\x29\xbc\xc8\x85\x76\x51\xe8\x3a\x8b\x42\x98\x50\x08\x5d\x34\xb4\x0f\x60\x3c\xb6\x3c\x11\x71\xed\x41\xf6\x84\x84\xd0\x79\xf6\x62\xcd\x4f\x3c\x24\x3b\xeb\xe8\x93\x75\x24\xa9\x16\x23\xd0\x09\x68\xfd\x4f\x88\x39\xf8\x80\xcb\x5a\xac\xae\x73\x2c\x8f\x70\xf9\x2d\x81\x0a\x28\x2d\x09\x0d\x94\x32\x92\x43\xd4\xb0\xd1\x3a\x74\x3e\xed\xbb\x3a\x63\xa3\xa8\x06\x51\xb6\x5d\x9d\x51\xad\xa6\x6f\xb4\x9a\xeb\x21\x69\x53\x39\x04\x9f\xaa\x39\x9d\x35\xf9\x98\x59\x10\x2c\x3d\xa0\xc6\x71\x4a\x68\x1a\xa8\x69\x08\x1a\x95\x30\xf8\x5b\xbb\x42\x2c\xbb\x96\xec\xa2\xf9\x82\x5f\x7a\xb8\xab\x99\x36\x7b\x5f\x32\x3a\xc2\x1f\xd5\x40\x46\x0e\x97\x16\xe8\xd8\xd5\x20\x59\xe2\x85\xb9\xd0\x99\x3d\x85\x13\x1a\x20\xde\x5b\x16\x64\x3b\x2a\xd3\xd0\xdf\x7c\x91\x38\x8f\x3c\x5c\x28\x72\xda\xab\xda\xc1\xe6\xd6\x9d\x21\x16\x65\xe1\xa9\x38\x64\xb5\xdb\x7e\x15\x27\x94\x1a\x0d\x37\x4a\xd4\xc5\x04\x26\xef\x20\x6e\x91\xdd\x8c\x12\x0f\x1f\xa5\x41\xe6\x08\x5a\x87\x5a\xb1\x9b\xe9\xcd\x4e\xce\x6d\x88\xf0\xe9\x37\xce\xed\x7c\x02\xb2\x4a\xc3\x60\x99\x13\x32\x78\xa9\x9c\x93\x38\xe7\x72\xd1\xff\x6b\x2f\xd0\x0a\x07\xbe\x49\x87\x27\x38\x27\x52\xd2\x3a\xd5\xc4\x67\xf1\x26\x5e\x45\x3f\x7c\x9c\x48\xbd\x67\x71\x3d\x56\xd8\x40\xc2\x0a\xf4\xa2\x28\x18\xd8\x17\xb1\xba\xda\xe9\x63\xf0\x26\x93\x7d\x11\xa3\xcd\xe1\x5f\x00\x00\x00\xff\xff\xb1\x4f\xe6\xb4\x24\x03\x00\x00"), }, "/lokomotive-kubernetes/bootkube/resources/charts/kubelet": &vfsgen۰DirInfo{ name: "kubelet", @@ -3999,9 +3999,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/bootkube/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3912, + uncompressedSize: 4071, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xdb\x6e\xdb\x38\x13\xbe\xf7\x53\x0c\xdc\x02\xbf\x0b\xc4\xf2\x31\x69\x1a\xb4\x17\x45\xda\x0b\xe3\x6f\xbb\xd9\xdd\xec\xee\xc5\x62\x21\x50\xe4\x48\x22\x42\x91\xc4\x90\x72\x62\x14\x7d\xf7\x05\x29\x59\x3e\x44\x6e\x13\x6c\x7d\x63\xd8\x9a\xc3\x37\x33\xdf\x1c\xb4\x66\x24\x59\xa6\x10\x86\x5c\xd5\xce\x23\xa5\x9a\x55\x38\x84\xaf\x03\x00\x81\x8e\x93\xb4\x5e\x1a\x0d\xef\x60\x78\xdd\x08\x40\x14\x18\x00\xf8\x8d\x45\x68\x3f\xef\xc0\x79\x92\xba\x18\x7c\x1b\x0c\x76\x26\x99\x95\xa9\x43\x5a\x23\xb9\x5e\x8b\x9f\xa4\xf3\x60\x72\x10\xa6\x62\x52\x47\xc3\x0e\x6a\x87\x02\xbc\x01\x42\xc6\x4b\xb8\xab\x33\x1c\x33\x2b\x1b\x33\x90\x93\xa9\xe0\x5e\xfa\x52\x6a\xf0\x25\x42\x0b\xfa\x31\x1c\x25\x9d\x1f\x35\x98\x5e\x05\x50\x2f\xe0\xaf\x12\x35\x68\xe3\xc1\xa1\x3f\x8b\xca\x6b\xa6\x6a\x0c\xfe\xd7\x8c\x92\x3d\xac\x70\x2f\x95\x82\x0c\x23\x94\xa4\x3f\x9e\x14\x1f\x3c\x92\x66\xea\x67\x06\xc6\x34\x6c\xcd\x82\x46\x7f\x6f\xe8\xee\x07\x91\x05\xcf\x39\xab\x95\x6f\x1f\xfe\xfd\xcf\xc9\x0a\xa4\xd2\x7e\xbf\x0a\x4c\x08\x19\xfe\x63\x0a\x56\x37\xeb\x65\xf8\x4d\xe8\x1c\xba\x00\x3a\x43\x90\x9a\xab\x5a\xa0\x80\x36\xf7\x47\x11\xdc\x7e\xfa\x1d\x38\x92\x97\xb9\xe4\xcc\xf7\x30\xe4\x59\xc0\xd1\x73\xf1\x5f\xb9\x13\x6c\x40\x6b\x23\xf9\x31\x45\xf6\xb2\xe6\x1c\xfa\x54\x48\xea\xf5\x7c\xc3\x7c\x19\x9c\x30\x10\x92\x90\x7b\x43\x1b\xb8\x2f\x91\x10\x0a\xd4\x48\xcc\xa3\x80\x68\xc1\x81\x2b\x4d\xad\x44\x48\x9e\x55\x8c\xa3\x80\x11\x37\xda\x33\xa9\x1d\x38\xe4\x84\xde\xbd\x7a\x5a\x27\x71\x65\x6a\x91\x5a\x32\x6b\x29\xb0\x1f\xd6\x6d\x89\xb0\x15\x80\xdc\x10\x44\x9d\x18\xbf\xe4\xe8\x60\x84\x95\xf5\x9b\xd6\x7a\x14\xd0\xa6\x53\x38\x0d\xe3\xb8\x50\xc3\xe1\x21\xb2\x96\xa7\x69\xe5\xeb\xfe\xa9\xf1\x65\x05\x52\x7b\xa4\x9c\x71\x84\xcf\xb7\x7f\x3c\xf6\xa4\xeb\x2a\x43\x7a\xe4\x69\x76\x3e\x9d\xf6\xfb\x42\xcd\x99\x75\xb5\x62\xc1\x49\xaf\xd7\x2f\x8d\x24\x1c\x48\x42\x65\x04\x02\x4a\x5f\x22\x81\xb4\xd2\x82\x21\x58\x3f\x28\xa6\x61\x64\xb4\xda\x00\xb3\x56\xc9\x86\xef\x9c\x29\xc9\xcd\x33\xd2\x12\xec\x9d\x48\x8d\xb4\x29\xab\xbd\x11\xe8\x91\x07\x1c\x69\x85\xbe\x34\xa2\x17\xf8\xe7\xf8\x28\xd2\xab\x53\x89\xdd\x56\x1a\xe7\x0f\xfa\xf2\x27\x60\xce\x25\x39\x3f\xce\x4d\xad\xc5\x11\x74\x6b\x44\xca\xa5\xe8\x67\xda\xf5\xea\xc3\x6f\xb0\xba\x01\x62\xba\xc0\x08\xd5\x39\x59\x68\xf8\x7f\x9d\x21\x69\xf4\xe8\xc0\x1a\xe1\x9e\x8e\x63\x36\x4d\xe6\xc9\x34\x99\x4e\x66\x17\x47\x38\x5a\xf6\x9e\xc4\xf2\xf6\xed\xc7\x5f\x3e\x0c\x9e\x00\x68\xdb\x06\xc9\x20\xf4\xc9\x2c\xe6\xb2\x9b\xf3\x84\x71\x4a\x88\xd8\x15\x61\xac\xa5\xdd\x58\x6b\x36\xc5\x6c\xea\xcb\xef\x2a\x8c\x85\x76\xc9\x20\x60\x19\xec\x45\xdd\x13\x71\x13\xed\x22\x46\x3b\x5f\x0e\x8f\xbb\xbc\x59\xc1\xcd\x4c\x4b\x5d\x9d\xe7\xf2\xa1\xb7\x04\xbf\xd6\x48\xa1\xea\xc1\x7f\x23\xed\xe2\x5a\x8c\x68\x1b\xbd\x0e\x2c\xd3\xee\x1e\x09\x05\x64\x9b\x0e\xeb\xd3\x6b\xd3\x62\x4a\x94\xe1\x4c\x1d\xe3\x6d\x86\x19\x52\xca\x88\x97\xbd\x40\xdf\x13\x2f\x65\x20\x71\x4d\x1d\xb0\x00\x3a\x2e\xef\xad\x3a\xc8\x8a\x15\xe1\x37\xa1\xd0\x6e\xd2\x7e\x5f\xb5\xdf\x63\x18\x61\x52\x24\x67\xc0\xa8\xba\x58\x3e\x83\xde\xac\x12\x17\x8f\x52\xdc\x41\x8e\x3e\xfb\x77\xcb\xf5\x21\xb0\xd8\x5c\xb5\x43\x18\x35\xa8\x23\x2a\x40\xed\xc3\xe0\x0f\x49\x2e\xd0\xc3\xf8\xe5\xcb\xaf\xe1\x8e\x38\xcc\xc9\xb7\xd0\x9f\xa8\x05\x8a\x1e\xdc\x15\xb3\xdd\xfe\x39\xa0\x48\x80\x04\x6d\x3b\xc3\xee\x13\xaa\x11\xff\x9b\x68\x23\xf0\x6a\xbd\x48\x66\xf3\x64\x3a\xdc\x13\x4e\xb9\x96\x8f\x84\xb9\x96\x87\xb2\xe5\xc6\x22\x05\x26\xec\x19\xbe\xbb\x74\x49\xc1\x29\x91\x66\xd2\x3d\xbe\x5a\xcf\x92\xd9\xeb\x64\xd9\x7a\x68\xe3\x3e\x80\x73\xa2\x62\x8d\x46\x1c\x22\x25\xf2\x3b\x6b\xe2\x06\x88\x7e\xa4\x5e\x1b\x75\x37\xb1\x46\x8c\xf7\x9f\x5d\x5d\x2e\x70\x7e\x8e\xe7\x6f\x2e\x2e\x17\x6f\x66\xd9\x1b\xcc\x16\xcb\xf9\x74\x39\xe7\xcb\xc5\xb9\x98\x65\x0b\x44\x21\xb2\x79\x86\xb3\x60\xfa\xdb\xd1\xad\xa0\xc3\x77\x4a\x68\x0d\x79\xa9\x8b\xa6\xa6\x87\xb9\xce\x8c\x51\x8f\x0b\xfd\x31\x6a\x42\xed\x02\xfd\x0c\x01\xd3\x4c\x6d\xbc\xe4\x0e\x3a\x63\xb1\xf6\xd6\x79\x42\x56\x01\x37\x95\x35\x1a\xb5\x07\x73\xaf\xc3\xa5\x38\xba\x95\x05\x12\xbb\x82\xeb\xdd\xec\x3d\x64\x61\xce\x94\xc3\x43\xbc\x9e\x42\x4b\x89\x34\x5c\x4b\xee\x87\x67\x46\xe0\xdc\xee\xd0\x30\x7a\x7b\xf3\x42\x20\x81\x6b\x2f\x8f\x68\xb2\x3b\xc1\x1c\x30\x42\xb8\x43\xeb\x9f\xde\x2c\x93\xda\xd1\xc4\x95\x8c\x70\xc2\xd9\x78\xef\x90\x73\xc7\x1d\x14\x51\xaf\x99\x92\x42\xfa\x4d\x6a\x91\xa4\x11\x69\x69\xea\x13\x87\xda\x9f\xad\x64\x3c\x31\x95\x6a\x3a\x7f\xcf\x7c\x38\x27\x1b\xed\xa7\x1e\x06\x97\xaf\x2f\xa6\xbd\x0c\x60\x45\x41\x58\x9c\xbe\x0a\xda\x72\x07\x04\x7b\xab\xe1\xfd\x4e\x0b\x3e\xb1\x0d\x12\x8c\x5a\x7f\xb1\xf1\x63\x01\xcf\x80\x90\x9b\xaa\x3a\xd5\xca\x1d\xbd\x7a\x4b\xff\x02\x6a\x6d\xf2\x5c\x72\xc9\xd4\x19\x78\xac\xac\x21\x46\x9b\x33\xa8\xd8\xa6\x59\x27\x95\x09\xdb\x24\x4c\x70\x53\xfb\xf0\x96\x22\x39\x1e\x04\xd8\xbe\x16\xec\x16\x53\x1a\xf8\xd9\x1f\xe5\xf6\x15\xe2\xe8\x40\x0f\x0a\xcd\x28\x85\x8b\xe5\x72\x11\x62\xab\x98\xe7\x65\x73\x9e\x9d\x50\xe8\x89\xf5\x44\x55\x82\xcd\xa3\xaa\x3c\x58\xe3\x30\x35\x3a\x65\x4a\xa5\xdd\x11\xd8\x4f\x93\x55\x1e\x48\x8c\x67\xc7\x20\xb6\x5b\xac\x31\x26\x42\x03\x04\x16\x85\x31\x4b\x46\xa9\xb6\x0f\x76\x27\xa6\x0b\x12\x31\xd4\x00\x28\x81\x55\xbe\xad\xa0\xf4\x3d\xc6\x54\x68\xa9\xe6\x5d\x46\xa1\xff\x9f\x6b\xac\xad\x6e\x7a\xde\x17\xbe\x5b\xe3\x7f\x03\x00\x00\xff\xff\xdc\x7d\xa3\x7a\x48\x0f\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x4d\x6f\x1b\x37\x13\xbe\xeb\x57\x0c\x9c\x00\xaf\x02\x58\x2b\xc9\x92\x1d\xc7\x48\x0e\x81\x93\x83\xf0\x26\xa9\xdb\xba\xed\xa1\x28\x16\x14\x39\xab\x25\xcc\x25\x89\x21\x57\xb6\x10\xe4\xbf\x17\xc3\x5d\x7d\x7a\x15\x3b\x68\x74\x11\x24\xce\xc7\x33\x9c\xaf\x87\x4b\x41\x5a\xcc\x0d\xc2\x89\x34\x75\x88\x48\xb9\x15\x15\x9e\xc0\xd7\x1e\x80\xc2\x20\x49\xfb\xa8\x9d\x85\x77\x70\x72\xdd\x08\x40\x12\xe8\x01\xc4\x95\x47\x68\x3f\xef\x20\x44\xd2\x76\xd1\xfb\xd6\xeb\x6d\x4d\x0a\xaf\xf3\x80\xb4\x44\x0a\x9d\x16\x3f\xe9\x10\xc1\x15\xa0\x5c\x25\xb4\x4d\x86\x03\xd4\x01\x15\x44\x07\x84\x42\x96\x70\x57\xcf\x71\x20\xbc\x6e\xcc\x40\x41\xae\x82\x7b\x1d\x4b\x6d\x21\x96\x08\x2d\xe8\xc7\x70\x8c\x0e\xb1\xdf\x60\x7a\xc5\xa0\x5e\xc0\x5f\x25\x5a\xb0\x2e\x42\xc0\x78\x9a\x94\x97\xc2\xd4\xc8\xfe\x97\x82\xb2\x1d\xac\x70\xaf\x8d\x81\x39\x26\x28\x59\x77\x3c\x39\x3e\x44\x24\x2b\xcc\xcf\x0c\x4c\x58\x58\x9b\x05\x8b\xf1\xde\xd1\xdd\x13\x91\xb1\xe7\x42\xd4\x26\xb6\x87\x7f\xff\x73\x34\x03\xb9\xf6\xdf\xcf\x82\x50\x4a\xf3\x7f\xc2\xc0\xec\x66\x39\xe5\xdf\x84\x21\x60\x60\xd0\x73\x04\x6d\xa5\xa9\x15\x2a\x68\xef\xfe\x20\x82\xdb\x4f\xbf\x83\x44\x8a\xba\xd0\x52\xc4\x8e\x0a\xf9\x21\xe0\x18\xa5\xfa\xaf\xb5\xc3\x36\xa0\xb5\x91\x3d\x5d\x22\x3b\xb7\x16\x02\xc6\x5c\x69\xea\xf4\x7c\x23\x62\xc9\x4e\x04\x28\x4d\x28\xa3\xa3\x15\xdc\x97\x48\x08\x0b\xb4\x48\x22\xa2\x82\x64\x21\x40\x28\x5d\x6d\x14\x5f\x9e\x37\x42\xa2\x82\xbe\x74\x36\x0a\x6d\x03\x04\x94\x84\x31\xbc\x7a\x5e\x27\x49\xe3\x6a\x95\x7b\x72\x4b\xad\xb0\x1b\xd6\x6d\x89\xb0\x16\x80\xc2\x11\x24\x9d\x14\xbf\x96\x18\xa0\x8f\x95\x8f\xab\xd6\x7a\x12\xb0\x6e\xa3\x70\x1c\xc6\x61\xa2\x4e\x4e\xf6\x91\xb5\x75\x9a\x57\xb1\xee\x9e\x1a\x5f\x66\xa0\x6d\x44\x2a\x84\x44\xf8\x7c\xfb\xc7\x63\x4f\xb6\xae\xe6\x48\x8f\x3c\x8d\xcf\x47\xa3\x6e\x5f\x68\xa5\xf0\xa1\x36\x82\x9d\x74\x7a\xfd\xd2\x48\xc2\x9e\x24\x54\x4e\x21\xa0\x8e\x25\x12\x68\xaf\x3d\x38\x82\xe5\x83\x11\x16\xfa\xce\x9a\x15\x08\xef\x8d\x6e\xea\x5d\x0a\xa3\xa5\xfb\x81\x6b\x61\x7b\x47\xae\x46\xfb\x5c\xd4\xd1\x29\x8c\x28\x19\x47\x5e\x61\x2c\x9d\xea\x04\xfe\x39\x1d\xa5\xf2\xda\xa8\xa4\x6e\x2b\x5d\x88\x7b\x7d\xf9\x13\x30\x17\x9a\x42\x1c\x14\xae\xb6\xea\x00\xba\x77\x2a\x97\x5a\x75\x57\xda\xf5\xec\xc3\x6f\x30\xbb\x01\x12\x76\x81\x09\x6a\x08\x7a\x61\xe1\xff\xf5\x1c\xc9\x62\xc4\x00\xde\xa9\xf0\x7c\x1c\xe3\x51\x76\x96\x8d\xb2\xd1\x70\x7c\x71\x80\xa3\xad\xde\xa3\x58\xde\xbe\xfd\xf8\xcb\x87\xde\x33\x00\xad\xdb\x20\xeb\x71\x9f\x8c\xd3\x5d\x6e\xe6\x3c\x61\x9a\x12\x2a\x75\x05\x8f\xb5\x7c\x33\xd6\x9a\x4d\x31\x1e\xc5\xf2\xbb\x0a\x03\x65\x43\xd6\x63\x2c\xbd\x9d\xa8\x3b\x22\x6e\xa2\x9d\xa4\x68\xcf\xa6\x27\x87\x5d\xde\xac\xe0\x66\xa6\xe5\xa1\x2e\x0a\xfd\xd0\x99\x82\x5f\x6b\x24\xce\x3a\xfb\x6f\xa4\x43\x5a\x8b\x09\x6d\xa3\xb7\x01\x2b\x6c\xb8\x47\x42\x05\xf3\xd5\x06\xeb\xf3\x73\xd3\x62\xca\x8c\x93\xc2\x1c\xe2\x6d\x86\x19\x52\x2e\x48\x96\x9d\x40\xdf\x93\x2c\x35\x17\x71\x4d\x1b\x60\x0c\x3a\x2d\xef\xb5\x3a\xe8\x4a\x2c\xf8\x37\xa1\xb2\x61\xd8\x7e\x5f\xb5\xdf\x03\xe8\x63\xb6\xc8\x4e\x41\x50\x75\x31\xfd\x81\xf2\x16\x95\xba\x78\x74\xc5\x1b\xc8\xc9\x67\xf7\x6e\xb9\xde\x07\x96\x9a\xab\x0e\x08\xfd\x06\x75\x42\x05\x68\x23\x0f\x7e\xbe\xe4\x05\x46\x18\xbc\x7c\xf9\x95\x79\xc4\xfe\x9d\x7c\xe3\xfe\x44\xab\x50\x75\xe0\xae\x84\xdf\xec\x9f\xbd\x12\x61\x48\xd0\xb6\x33\x6c\x3f\x9c\x8d\xf4\xdf\xd0\x3a\x85\x57\xcb\x49\x36\x3e\xcb\x46\x27\x3b\xc2\xb9\xb4\xfa\x91\xb0\xb4\x7a\x5f\xb6\x5c\x79\x24\xae\x84\x1d\xc3\x77\x97\x21\x5b\x48\xca\xb4\x1b\x6e\x8e\xaf\x96\xe3\x6c\xfc\x3a\x9b\xb6\x1e\xda\xb8\xf7\xe0\x1c\xc9\x58\xa3\x91\x86\x48\x89\xf2\xce\xbb\xb4\x01\x92\x1f\x6d\x97\xce\xdc\x0d\xbd\x53\x83\xdd\xb3\xab\xcb\x09\x9e\x9d\xe3\xf9\x9b\x8b\xcb\xc9\x9b\xf1\xfc\x0d\xce\x27\xd3\xb3\xd1\xf4\x4c\x4e\x27\xe7\x6a\x3c\x9f\x20\x2a\x35\x3f\x9b\xe3\x98\x4d\x7f\x3b\xe0\x0a\x96\xbf\x73\x42\xef\x28\x6a\xbb\x68\x72\xba\x7f\xd7\x73\xe7\xcc\xe3\x44\x7f\x4c\x9a\x50\x07\x2e\x3f\x47\x20\xac\x30\xab\xa8\x65\x80\x8d\xb1\x94\x7b\x1f\x22\xa1\xa8\x40\xba\xca\x3b\x8b\x36\x82\xbb\xb7\xcc\x14\xfb\xb7\x7a\x81\x24\xae\xe0\x7a\x3b\x7b\xf7\xab\xb0\x10\x26\xe0\x3e\xde\x48\xdc\x52\x2a\x67\xb6\x14\x9e\xa4\x19\x5c\x73\x5b\xa2\xe1\xec\x9a\xf3\x02\x17\x41\x68\x99\x47\x32\xb9\xa1\x60\x01\x04\x21\xdc\xa1\x8f\xcf\x6f\x96\x61\x1d\x68\x18\x4a\x41\x38\x94\x62\xb0\x43\xe4\xc2\x61\x07\x25\xd4\x4b\x61\xb4\xd2\x71\x95\x7b\x24\xed\x54\x5e\xba\xfa\x08\x51\xfb\xb3\x95\x4c\x14\xd3\x98\xa6\xf3\x77\xcc\x33\x9d\x6c\xb4\x9f\x4b\x0c\x2e\x5f\x5f\x8c\x3a\x2b\x40\x2c\x16\x84\x8b\xe3\xac\xa0\x4d\x37\x23\xd8\x59\x0d\xef\xb7\x5a\xf0\x49\xac\x90\xa0\xdf\xfa\x4b\x8d\x9f\x12\x78\x0a\x84\xd2\x55\xd5\xb1\x56\xde\x94\x57\x67\xea\x5f\x40\x6d\x5d\x51\x68\xa9\x85\x39\x85\x88\x95\x77\x24\x68\x75\x0a\x95\x58\x35\xeb\xa4\x72\xbc\x4d\x78\x82\xbb\x3a\xf2\x2b\x45\x4b\xdc\x0b\xb0\x7d\x16\x6c\x17\x53\xce\xf5\xd9\x1d\xe5\xfa\x09\x71\x40\xd0\x59\xa1\x19\xa5\x70\x31\x9d\x4e\x38\xb6\x4a\x44\x59\x36\xf4\xec\x88\x42\x47\xac\x47\xb2\xc2\x36\x0f\xb2\xf2\xe0\x5d\xc0\xdc\xd9\x5c\x18\x93\x6f\x48\x60\x77\x99\xcc\x0a\x2e\x62\x3c\x3d\x04\xb1\xde\x62\x8d\x31\xc5\x0d\xc0\x55\xc4\x63\x96\x9c\x31\x6d\x1f\x6c\x29\x66\x60\x89\x14\x2a\x03\xca\x60\x56\xac\x33\xa8\x63\x87\x31\xc3\x2d\xd5\xbc\x65\x0c\xc6\xff\x85\xc6\xda\xec\xa6\xe3\xbd\xf0\xfd\x1c\x6f\xc3\xde\x27\x10\xfc\x50\x24\x91\x17\x46\x2c\xba\x03\xff\xc8\xe7\x90\xce\xc1\xf3\xbb\x21\xb1\xbf\x80\xa6\x18\x30\xe7\x43\x75\x70\x23\x4f\xbd\x64\x3a\x5f\x56\xff\x06\x00\x00\xff\xff\x55\x92\xca\xb7\xe7\x0f\x00\x00"), }, "/lokomotive-kubernetes/bootkube/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -4291,9 +4291,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: 955, + uncompressedSize: 1018, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x8a\x1b\x31\x0c\x86\xef\xf3\x14\x3f\x69\x0f\x2d\xb4\x29\x7d\x80\x9c\xb2\x97\xbd\x2c\xa5\x7b\x2c\xc5\x38\xb6\x92\x11\xeb\x58\x53\x59\xce\x26\x2c\xfb\xee\xc5\x93\xcd\x74\x92\xa5\x26\x10\x46\xff\xa7\xdf\x92\xac\xbd\xc4\x9a\x08\x8b\x8d\x88\x3d\xd5\x0d\x2d\xf0\xd2\x01\x45\xaa\x06\xc2\xf9\xac\xb0\x58\x2e\xbf\x9d\x7f\x13\xd6\x01\x21\xd5\x62\xa4\x2e\xfb\x3d\x61\x85\x83\xd7\xe5\x3c\xd4\x75\xc0\x07\xac\x7d\xce\x62\xa8\x85\x10\x4e\x21\x71\x40\xa4\x81\x72\xa4\x1c\x98\x0a\x24\x23\x48\x36\x95\x94\x48\x0b\x44\x61\x3d\xb1\xe2\xee\xe1\x11\x4a\x41\x34\x96\x0e\xf0\x03\xbb\x42\x7a\x68\xc8\x74\x56\xf8\x95\x24\xf8\xb4\x6c\xea\xf6\x4f\xcc\xbf\xaf\x49\x47\x47\x23\xcd\x3e\x5d\x93\x97\xe8\x94\x42\x16\xe2\x3b\xf7\x15\xce\x19\xa3\xd8\xc8\xe6\x5d\x0a\x99\x8b\xac\xc0\xbc\x8a\xd6\xf7\x24\x75\x40\x26\x7b\x16\x7d\x72\x7b\xab\xb7\xd8\x4c\x3a\x4f\xe7\x91\x12\x05\xc3\xa0\x7c\xf0\x46\xf8\xe1\xc3\x13\x19\x1e\xee\xd7\xd8\x9c\x50\x0b\xe7\x5d\x9b\x07\x82\xcf\x5f\x95\x7c\xe8\xb1\xf6\x89\x83\xc0\x57\x93\x48\x46\xc1\x58\x32\x64\x18\xff\x9e\xd9\xfa\x11\xdf\xb2\x16\x1b\xfd\x7b\x29\x06\xce\x90\xaa\xd3\x25\xeb\xfb\xbb\x9f\xcb\x59\x9d\x3c\xb8\x2b\x3b\xb7\x27\xeb\x25\xb6\x67\x9f\xee\x5d\x7d\x7c\x09\x1c\xb5\xd9\x7d\x1a\x1b\x91\x48\xee\xcd\xd0\x35\xe5\x0b\xbe\x7f\x7e\x5d\xb4\xa6\x06\x89\x63\x04\x78\x3f\xa6\x8b\xd6\x36\x8c\xf4\xc0\x81\x6e\xd0\x33\x36\xd7\x66\x7b\x16\x65\xef\x39\xbb\x52\xb7\x5b\x3e\xde\x2c\xdc\x95\xd6\x1e\x35\xfb\x4d\x22\xa7\x34\x88\x5a\x1b\xe3\xcc\xfe\x56\xfb\x87\xfb\xdd\x4e\x69\xe7\xc7\x69\xde\xe2\x33\xad\xb5\x19\x48\xad\xb8\x83\x4f\x1c\xd9\x4e\x6e\x20\x65\x89\xae\x97\xaa\xe5\x52\xda\xff\x89\xd1\x40\xb2\x79\xce\xa4\xce\x6b\xe8\xdf\x72\xa4\x8c\x5f\x4d\xa7\xe3\x20\x85\x9c\x64\xe7\x53\x72\x9c\x8d\x74\xeb\x03\x35\x77\xd3\x4a\xdd\x6b\xf7\x37\x00\x00\xff\xff\x4a\x63\x43\x49\xbb\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\xdb\x61\x03\xb6\x0c\x7b\x80\x9c\xd2\x4b\x2f\xc5\xb0\x1e\x87\x41\x60\x24\x3a\x26\xa2\x88\x1e\x45\xa5\x09\x8a\xbe\xfb\x20\xbb\x71\x1d\x17\x15\x02\x04\xd6\xff\xf1\x17\x49\x51\x47\x09\x25\x12\xac\x76\x22\x76\x28\x3b\x5a\xc1\x73\x03\x90\xa5\xa8\x27\x18\xd7\x06\x56\xeb\xf5\x8f\xf1\x37\x61\x0d\x80\x8f\x25\x1b\xa9\x4b\x78\x24\xd8\xc0\x09\x75\x3d\xdf\x6a\x1a\x80\x4f\xb0\xc5\x94\xc4\xa0\x64\x02\x7f\xf1\x91\x3d\x04\xea\x29\x05\x4a\x9e\x29\x83\x24\xf0\x92\x4c\x25\x46\xd2\x0c\xa2\x60\x1d\xb1\xc2\xdd\xc3\x23\x28\x79\xd1\x90\x1b\x00\xec\xd9\x65\xd2\x53\x45\xa6\xb5\x81\x3f\x51\x3c\xc6\x75\x55\xdb\x7f\x21\xfd\xbd\x25\x1d\x9d\x8d\x34\x61\xbc\x25\xaf\xbb\x53\x08\x99\x0f\xef\xdc\x37\x30\x46\x0c\x62\x25\xab\x77\xce\x64\x2e\xb0\x02\xcc\xb3\xa8\x75\x4f\x52\x03\x90\xc8\x9e\x44\x0f\xee\x68\x65\x89\xcd\xa4\xb1\x3b\x8f\x14\xc9\x1b\xf4\xca\x27\x34\x82\x5f\xe8\x0f\x64\xf0\x70\xbf\x85\xdd\x05\x4a\xe6\xb4\xaf\xfd\x00\x8f\xe9\xbb\x12\xfa\x0e\xb6\x18\xd9\x0b\x60\x31\x09\x64\xe4\x8d\x25\x81\xf4\xc3\xdf\x13\x5b\x37\xe0\x2d\x6b\xb6\xc1\xbf\x93\x6c\xc0\x09\xa4\xe8\x74\xc8\xf6\xfe\xee\xf7\x7a\x96\x27\xf7\xee\xc6\xce\x1d\xc9\x3a\x09\xf5\xda\xa7\x73\x37\x9f\x9f\x3d\x07\xad\x76\x5f\x86\x42\x24\x90\x7b\x35\x74\x55\xf9\x06\x3f\xbf\xbe\xac\x6a\x51\xbd\x84\x61\x07\xe0\x7d\x9b\xae\x5a\x9d\x30\xd2\x13\x7b\x5a\xa0\x23\x36\xd7\x66\x73\x16\xe4\x88\x9c\x5c\x2e\x6d\xcb\xe7\xc5\xc0\xdd\x68\xf5\x52\x13\xee\x22\x39\xa5\x5e\xd4\x6a\x1b\x67\xf6\x4b\xed\x0d\xc7\xfd\x5e\x69\x8f\x43\x37\x97\xf8\x4c\xab\x65\x7a\x52\xcb\xee\x84\x91\x03\xdb\xc5\xf5\xa4\x2c\xc1\x75\x52\x34\x5f\x53\xfb\x98\x18\x0c\x24\x19\x72\x22\x75\xa8\xbe\x7b\x8d\x91\x3c\x7c\x55\x9d\xce\xbd\x64\x72\x92\x1c\xc6\xe8\x38\x19\x69\x8b\x9e\xaa\xbb\x69\x19\x5e\x57\x7d\x88\x0e\x7b\x1e\x87\xb7\x4e\xb6\xa2\x6b\x23\xee\xaf\x29\x7c\x0c\x34\x2f\xcd\xff\x00\x00\x00\xff\xff\xf6\x5c\x35\x28\xfa\x03\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/calico-host-protection": &vfsgen۰DirInfo{ name: "calico-host-protection", @@ -4418,9 +4418,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5068, + uncompressedSize: 5227, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\x6d\x6f\x1b\xb9\x11\xfe\xae\x5f\x31\xd8\x3b\xc0\x0e\x20\xad\x65\xd7\x97\xc4\x46\x5c\x20\x67\xe7\x10\xa3\x4e\xce\xad\x9d\xa2\x68\xaf\x58\x53\xe4\xac\x96\x35\x97\xb3\xe5\x70\x25\xeb\x82\xfc\xf7\x82\xe4\xae\xac\x37\xe7\xec\xe6\x4b\x12\x89\x7c\xe6\x99\xb7\x67\x86\xfa\x01\x2e\x3e\xdf\x80\x43\x49\x4e\xf1\x60\x30\x13\x4e\x8b\x89\x41\xc8\xa4\x69\xd9\xa3\x2b\xac\xa8\x31\x83\xaf\x03\x00\xbf\x68\x10\xba\x3f\x67\xc0\xde\x69\x3b\x1d\x00\x28\x64\xe9\x74\xe3\x35\x59\x38\x83\xec\x8b\xd5\xff\x6d\x11\xba\xeb\x10\xae\xc3\x7e\xe3\xb0\x41\xab\x50\x81\x27\x50\x96\x8b\xdf\xc9\xe2\xab\x6c\xf0\x6d\xd5\x62\xff\xf9\x4b\xac\x05\xf2\xff\x24\x8b\xb0\x8f\xf9\x34\x07\x7c\x10\x75\x63\x30\x97\x54\x6f\xa2\x37\x8e\xfe\x83\xd2\x17\x5a\x25\xfc\x0d\xa0\x6b\x21\xef\xd1\x43\x77\x0a\x2e\x2f\x3a\xc4\xe3\xf1\x4f\x58\xe2\x89\x1c\x49\x89\x27\xa3\x63\xf9\xe6\x70\xf4\xf6\x8d\x3c\x1c\x9d\x1c\x9f\xc8\xa3\x93\xf1\xe4\xe8\x8d\x92\xc9\xd4\x0f\xf0\x99\x14\xae\xc5\x90\xb8\x10\x4e\x56\x7f\xe0\x50\x29\x5a\xe3\xbb\x8f\x33\x51\xab\xd7\xc7\xd9\x36\xbf\x5f\x8c\xf0\x52\x38\x38\x27\xeb\x85\xb6\xe8\xe0\x4a\xdb\xf6\x01\x02\xbe\xf6\x28\x7d\xeb\x30\x04\x57\x5b\xf6\xc2\x18\xd8\x8f\x40\x43\x10\xae\x7e\x7d\xbc\x19\x0b\xe2\x42\x56\xc2\x5a\x34\x2f\xa1\xc6\x3e\xdc\x7e\x01\xb7\xce\xc6\x2a\xad\xd2\x51\x0d\xfb\x09\x69\x08\x13\xf4\x62\x08\xc2\x34\x95\x18\x02\xaa\xe9\x56\x49\x10\x17\x33\x74\xac\xc9\xbe\x84\xa8\x6c\x9d\x43\xeb\x5f\xc0\xb4\x33\xb2\x16\xc0\x92\x5c\x5f\x4f\xb0\x77\x74\x78\x72\x98\xff\x94\x8f\xf7\x60\x04\x8c\x08\x95\xf7\x0d\x9f\x1e\x1c\xcc\xe7\xf3\xbc\x4c\xa0\x23\x13\xa0\x72\x72\xd3\x03\x87\x06\x05\x23\x1f\xbc\x1a\x02\x59\xb3\x80\x80\xa5\xaf\xff\xf1\x61\xc3\x3d\x49\xd6\x3b\x32\x06\x5d\x21\xa9\xb5\x7e\x97\x93\xb6\xad\x27\xe8\xb6\x9c\x3c\xdc\x76\xee\x73\x3c\x09\x54\xc2\x23\x2e\xc3\xbe\xce\x31\x87\x5a\x84\x6e\xe4\xcd\xf8\xae\x10\x08\x56\x5f\x12\xe4\x89\x70\x58\xa3\x17\xa6\x18\xef\x08\x74\xd7\x4e\x31\x98\x56\x62\xc2\x0c\x51\x58\xa1\xb6\xc1\x45\x37\x0f\x58\x24\x90\xa2\x75\xab\x95\xb9\x24\x31\x00\x08\x5d\xe6\xf1\x34\x46\x73\x34\x21\xf2\xda\x4e\xa1\x4f\x2b\x59\xe8\x0c\xd3\x0c\x1d\x7c\xbc\xbd\xbd\xbe\x01\xcd\x50\x0a\x6d\xc2\x39\xd5\xc6\x1e\x11\x30\x69\xa7\xa0\x6d\x04\xc9\x23\xe8\x6d\xa5\x19\x1a\xe1\x65\x15\xce\x73\xdb\x34\xc4\x49\xad\x4a\xfd\x00\xbe\xd2\x7c\x1a\x73\x7e\x7a\x70\x30\xd5\x3e\x0f\x5c\x63\xa6\xe3\x3f\xa6\xda\x1f\x48\xaa\x6b\xed\x95\x2e\xcb\x83\xc9\xeb\xb2\xc4\xa3\xb7\xe2\x28\x22\x7f\xa4\x39\xce\xd0\x0d\xc1\x57\x08\x6d\xc3\xde\xa1\xa8\x23\xaa\x14\x16\xe6\xe4\xee\x53\x89\xcc\x2b\xb4\xf1\x4c\x62\xcd\xe8\x82\x0b\x8a\x90\xc1\x92\x07\x87\x66\x11\xfc\x43\x63\x42\x94\x65\xc4\x96\xad\x9b\x21\xe7\x70\x43\x30\x47\xe0\x8a\x5a\xa3\xa0\xe5\x1e\x63\x59\x7a\x09\x8c\x61\xae\x7d\x45\xad\x5f\x82\x74\x00\x43\x10\x56\x01\xf9\x0a\xdd\x5c\x33\x46\xe8\x1e\x25\x87\x5f\xc8\xf9\xd6\x0a\x8f\x66\x31\x04\xd6\x21\x9b\xa9\x7f\xf3\xae\xcc\x37\x1a\xc0\xa2\x7f\x26\x6d\xed\x7b\xce\xe1\xe8\x04\x41\x04\xfd\x9d\x18\xac\x43\x72\x7c\x25\x3c\xc8\x80\x1f\x2f\x5d\x7a\xa8\x04\xc3\x04\xd1\x42\x43\xcc\x3a\x14\x8d\x27\xb0\xc2\xeb\x59\xb0\xd2\x37\x6e\x5f\x0c\xba\x16\x53\x64\x10\x0c\x54\x96\x5a\x6a\x61\xe0\xd7\x1b\xa0\x54\xa2\xcb\x4a\x19\x46\xf0\x49\xeb\x1f\xa3\x15\x95\x33\x87\xdb\x0a\x1d\x86\x6a\xb0\x94\x54\x74\x1d\x19\xc4\x4c\x68\x13\x4b\x77\x09\x96\xaf\xb4\xc9\x19\x64\xd9\x60\xbb\x31\xae\x48\x0a\xdf\x49\x8d\x21\xa1\x62\xca\x9b\x07\x84\x50\xcb\x90\x8e\x46\x95\xdc\xe8\x8e\x52\x48\x6d\xb4\x5f\xbc\x64\x38\x76\xbd\xd0\x5f\x8d\xb3\x17\x1b\x43\x8b\x68\xb4\x9f\xd0\xda\x7e\x47\x95\x8c\x2c\xd8\xea\xa6\x41\xcf\xbb\x2c\x1b\xcd\x7e\x3f\x99\x7f\xb5\x6d\xff\x7c\x09\xb4\x25\xb8\xe7\x64\x4b\x3d\x85\x25\xf6\x96\xbe\xfc\xeb\xdf\x69\xa6\xa6\x83\xad\x8b\x41\x5b\x65\xc9\x5c\x15\xf7\xb8\xf8\x3f\x68\xdd\xdc\x7c\x84\xa6\x9d\x18\x2d\x21\x00\xc4\x9c\xb7\x8c\x0e\xf6\x24\x39\xdc\xdb\x88\x86\x60\x46\x5f\x28\xed\x9e\x58\x1b\x7c\x95\x24\x45\x69\x87\xd2\x93\x8b\x9d\xec\x10\xa6\x68\xd1\x09\x8f\x0a\x22\x02\xf7\xa5\x3e\x41\x68\x8c\x90\xa8\x60\x5f\xa6\xa0\x30\x30\x4a\x87\x3e\xa8\xf3\x13\xa9\x5d\x63\x64\xd1\x07\xd9\x28\x6a\xdf\xee\xe4\x74\xfe\xf9\x12\xb4\xf5\xe8\x4a\x21\x11\x3e\xdd\x7e\xd9\x86\x7d\x6a\xa8\x1c\xbf\x1d\xef\xb6\xa5\x9b\x42\xb4\x9e\x14\x86\x55\x43\x93\x2d\x6a\xf4\x15\xed\x5e\xa5\x3e\xc5\xaf\x62\x54\x96\x57\x62\xc5\x55\xc4\x1e\x2e\xaf\x67\xc7\x20\x94\x72\xc8\xfc\xa4\xbf\x5b\xd3\xa6\xd4\x8e\xfd\xa8\xa4\xd6\xaa\xcd\xbd\x8e\x54\x21\xb5\xda\x9d\x9e\xf3\xcb\x8b\xbf\x25\x8b\x4e\xd8\x69\x12\x7f\x66\x3d\xb5\xf0\x97\x76\x82\xce\xa2\x47\x86\x86\xd4\x0b\x98\x1c\x8e\xf3\xa3\x7c\x9c\x8f\x0f\x0e\x5f\x6f\x30\x09\x2a\xab\x25\x3e\xc9\xe6\xdd\xbb\x0f\xbf\x5e\x0c\x9e\x45\xa9\x83\xe2\x7c\x70\x5b\x21\x1c\xc6\xb0\xc1\x5c\x1b\x13\xca\xc7\x61\xd4\x73\x15\x0b\xf7\xbe\x9d\x60\x21\x1a\x9d\x24\x3e\x4d\x99\xc3\xb1\xaf\x9e\xbc\x10\x6a\x5c\x59\xce\x07\x81\xcc\x60\xc5\xed\x1d\x2e\x27\x77\xff\xb4\xdb\xdd\xfe\x81\xa0\xa8\x16\xda\x16\xdc\x96\xa5\x7e\xd8\x99\x85\xbf\xb6\xe8\x34\xa6\x46\x4b\xa7\xd3\x28\x8a\x64\xd3\xbd\x25\x57\x61\x79\x8e\x0e\x15\x4c\x16\x4b\xaa\x70\xd1\xf1\xd1\xdc\xab\x56\x6e\x48\x0a\xd3\xed\xe8\x25\x51\xde\x51\xce\x79\x26\xf3\xb5\x33\xaf\xe0\xf9\xb9\x5d\xbb\xb8\xe1\x2e\xda\xf0\x77\xe1\xb0\x21\x17\x96\x8e\x5d\xba\x33\x21\x32\xdb\xee\x7f\x88\x37\xa1\xe5\x30\x35\xc2\x7c\xb1\xc2\x2c\xbc\x96\x0c\x4b\xb0\x50\x05\xfd\x6e\xc0\xb0\x7f\x2e\x8c\x96\xf4\x6a\x5b\x15\x4b\x61\x18\xd7\x79\xd5\xc2\x8a\x29\xd6\x68\x7d\x2c\x3c\xde\x99\x81\x2b\xcd\x3e\x2c\x86\xb1\xee\x42\x05\x72\xe8\xcd\x8a\x9c\xfe\x3d\x6d\x39\x42\x4a\x64\x0e\xec\x12\xde\xea\x84\xd8\x8e\xdf\x9a\xbe\xae\xeb\x05\x29\x2c\x1a\xa7\x67\xc2\x3f\xdd\x08\xd9\x75\x3a\xf0\x48\x27\x70\x0b\x16\xc3\x75\x0e\x62\x9c\x48\x19\x43\xf3\x24\x65\xa3\xf0\x0d\x78\x27\xc2\x28\x7f\x9e\x4c\x76\x09\x13\xd3\xa9\xc3\x69\x1c\x1f\x3b\xb9\x74\xd9\x09\xd6\x57\x1a\xf0\xfd\xe3\x2d\xb8\x12\x0b\x74\xb0\xdf\x65\x82\x03\x33\xef\x5a\xdc\xa1\xd6\xcb\xfc\xaf\xe6\x2c\x9c\x5d\x67\x96\xfa\x31\x82\x17\x5a\xed\xce\xd8\x4d\x83\x52\x97\x8b\x7e\x9f\xad\x84\x53\x73\xe1\x42\xfd\xad\xde\x4d\x0f\x8b\x6e\xc9\xe6\x1c\xde\x43\x2d\x9a\x6e\x00\x05\x8f\xee\x31\xae\x34\xb5\x88\xbd\xb3\xf7\x38\xd9\x47\x3f\xfe\xf8\x55\x5b\x85\x0f\xdf\xf6\xe2\xf2\x17\x0e\xcf\x84\x69\xe3\xc2\x13\xfe\xb3\x62\x07\x2e\x2f\xf2\xf4\xb6\x8d\x7b\x5a\x13\xbe\xb2\x3e\xad\x68\x98\x0c\x86\xe6\x0d\x1b\xe3\x23\x0c\x95\x70\xb7\xe1\x67\xd1\xc5\xe5\x0e\xfa\x50\xe4\xf0\x21\x3d\xb0\x4e\x61\xe3\x2c\x9c\xc1\xd7\x95\xb7\xc2\x68\x0c\x67\xf0\x5b\xf6\x6e\xfd\xd4\x9f\x7f\xcb\xe0\xdb\x76\x16\x6a\xd1\xac\x0d\xff\xd5\x64\x7c\xfd\xf6\xdd\x54\xf4\x14\x9f\x96\xef\xeb\x7e\xf5\x8c\x6e\xf2\x29\x64\x59\x0c\x60\x66\xf1\xc1\x8f\x96\x3b\x61\x96\x0f\x06\x7d\x0a\xc5\x92\xc3\x7a\x50\x63\xf2\xec\x32\xae\xa1\xa9\x50\xf5\x61\xdd\x0c\xde\xdd\xa0\x16\x4d\x0e\xef\x2d\x60\xdd\xf8\x45\x57\xf1\x50\xa3\xb0\x0c\x59\x88\xbd\xa5\x65\x95\xac\x1a\xca\x72\xb8\x5b\xe7\x76\x17\xf3\x35\x90\x15\x11\x07\xc1\x5d\xac\xf1\x8a\x6b\x77\x1d\x5e\x42\x98\x2a\xa1\x21\x32\x7b\x0c\x0a\xc3\x44\x4a\xa1\x0e\x0e\xf7\x5b\xe5\x73\x07\x49\xf7\x1b\xc9\x39\x3a\xaf\x4b\x2d\x85\x5f\xff\xa9\x44\xa2\xf3\x5c\xcc\x84\xd1\x4a\xfb\x45\xd1\xa0\xd3\xa4\x8a\x8a\xda\x27\x14\xed\xef\xdd\xc9\x50\x68\x61\xeb\x8f\x7a\xb5\x82\x1d\xe2\x98\x6e\x3f\x77\xf9\x79\xfb\xe6\xf5\xc6\xf2\xe3\xc5\xf4\xfb\x72\x1a\x0e\xa4\x80\xf5\xe3\xab\x71\xd4\x88\x69\x5c\xfb\x3c\x75\xaf\xee\x94\xe3\x3f\x50\xd1\xad\xfd\x37\xfb\x14\x85\x58\xfd\xbc\x38\xbd\xa2\x7b\xaa\x29\x3c\x73\xb2\x21\x64\xe7\x0e\x03\xfe\xcf\x8b\xd3\x2f\x96\x63\x89\x69\x54\x59\x58\x97\xff\x17\x00\x00\xff\xff\x58\x61\x30\x9d\xcc\x13\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\x6f\x4f\x1c\x39\xf2\x7e\x3f\x9f\xa2\xd4\xbb\x12\x44\x9a\x69\x06\x7e\x6c\x12\x50\xf2\x93\xb2\x90\x55\xd0\x25\x59\xee\x20\xa7\xd3\xdd\xae\x1a\x8f\x5d\x3d\xed\xc3\x6d\xf7\xb9\xaa\x67\x98\x8d\xf2\xdd\x4f\xb6\xbb\x87\xf9\x9b\x85\xcb\x9b\x24\xb4\xfd\xd4\x53\xff\x9e\x2a\xf3\x03\x5c\x7e\xbe\x01\x8f\xd2\x79\x45\x83\xc1\x4c\x78\x2d\x26\x06\x21\x93\xa6\x25\x46\x5f\x58\x51\x63\x06\x5f\x07\x00\xbc\x68\x10\xba\x3f\x6f\x81\xd8\x6b\x3b\x1d\x00\x28\x24\xe9\x75\xc3\xda\x59\x78\x0b\xd9\x17\xab\xff\xd3\x22\x74\xd7\x21\x5c\x87\xc3\xc6\x63\x83\x56\xa1\x02\x76\xa0\x2c\x15\x7f\x38\x8b\x2f\xb2\xc1\xb7\x55\x8b\xfd\xcf\x9f\x63\x2d\x90\xff\xa7\xb3\x08\x87\x98\x4f\x73\xc0\x07\x51\x37\x06\x73\xe9\xea\x4d\xf4\xc6\xbb\x7f\xa3\xe4\x42\xab\x84\xbf\x01\x74\x2d\xe4\x3d\x32\x74\xa7\xe0\xea\xb2\x43\x3c\x1d\xff\x84\x25\x9e\xc9\x91\x94\x78\x36\x3a\x95\xaf\x8e\x47\xaf\x5f\xc9\xe3\xd1\xd9\xe9\x99\x3c\x39\x1b\x4f\x4e\x5e\x29\x99\x4c\xfd\x00\x9f\x9d\xc2\xb5\x18\x3a\x2a\x84\x97\xd5\x9f\x38\x54\x8a\xd6\x70\xf7\xe3\x4c\xd4\xea\xe5\x69\xb6\xcd\xef\x17\x23\x58\x0a\x0f\x17\xce\xb2\xd0\x16\x3d\x7c\xd4\xb6\x7d\x80\x80\xaf\x19\x25\xb7\x1e\x43\x70\xb5\x25\x16\xc6\xc0\x61\x04\x1a\x82\xf0\xf5\xcb\xd3\xcd\x58\x38\x2a\x64\x25\xac\x45\xf3\x1c\x6a\xc4\xe1\xf6\x33\xb8\x75\x36\x56\x69\x95\xde\xd5\x70\x98\x90\x86\x30\x41\x16\x43\x10\xa6\xa9\xc4\x10\x50\x4d\xb7\x4a\xc2\x51\x31\x43\x4f\xda\xd9\xe7\x10\x95\xad\xf7\x68\xf9\x19\x4c\x3b\x23\x6b\x01\x2c\x9d\xef\xeb\x09\x0e\x4e\x8e\xcf\x8e\xf3\x9f\xf2\xf1\x01\x8c\x80\x10\xa1\x62\x6e\xe8\xfc\xe8\x68\x3e\x9f\xe7\x65\x02\x1d\x99\x00\x95\x3b\x3f\x3d\xf2\x68\x50\x10\xd2\xd1\x8b\x21\x38\x6b\x16\x10\xb0\xf4\xf5\x3f\xde\x6f\xb8\x27\x9d\x65\xef\x8c\x41\x5f\x48\xd7\x5a\xde\xe5\xa4\x6d\xeb\x09\xfa\x2d\x27\x8f\xb7\x9d\xfb\x1c\x4f\x82\x2b\xe1\x11\x97\xe0\x50\xe7\x98\x43\x2d\x42\x37\xd2\x66\x7c\x57\x08\x04\xab\xcf\x09\xf2\x44\x78\xac\x91\x85\x29\xc6\x3b\x02\xdd\xb5\x53\x0c\xa6\x95\x98\x30\x43\x14\x56\xa8\x6d\x70\xd1\xcd\x03\x16\x09\xa4\x68\xfd\x6a\x65\x2e\x49\x0c\x00\x42\x97\x31\x9e\xc7\x68\x8e\x26\xce\xb1\xb6\x53\xe8\xd3\xea\x2c\x74\x86\xdd\x0c\x3d\x7c\xb8\xbd\xbd\xbe\x01\x4d\x50\x0a\x6d\xc2\x39\xd5\xc6\x1e\x11\x30\x69\xa7\xa0\x6d\x04\xc9\x23\xe8\x6d\xa5\x09\x1a\xc1\xb2\x0a\xe7\xa9\x6d\x1a\x47\x49\xad\x4a\xfd\x00\x5c\x69\x3a\x8f\x39\x3f\x3f\x3a\x9a\x6a\xce\x03\xd7\x98\xe9\xf8\x8f\xa9\xe6\x23\xe9\xea\x5a\xb3\xd2\x65\x79\x34\x79\x59\x96\x78\xf2\x5a\x9c\x44\xe4\x0f\x6e\x8e\x33\xf4\x43\xe0\x0a\xa1\x6d\x88\x3d\x8a\x3a\xa2\x4a\x61\x61\xee\xfc\x7d\x2a\x91\x79\x85\x36\x9e\x49\xac\x09\x7d\x70\x41\x39\x24\xb0\x8e\xc1\xa3\x59\x04\xff\xd0\x98\x10\x65\x19\xb1\x65\xeb\x67\x48\x39\xdc\x38\x98\x23\x50\xe5\x5a\xa3\xa0\xa5\x1e\x63\x59\x7a\x09\x8c\x60\xae\xb9\x72\x2d\x2f\x41\x3a\x80\x21\x08\xab\xc0\x71\x85\x7e\xae\x09\x23\x74\x8f\x92\xc3\x2f\xce\x73\x6b\x05\xa3\x59\x0c\x81\x74\xc8\x66\xea\xdf\xbc\x2b\xf3\x8d\x06\xb0\xc8\x4f\xa4\xad\xb9\xe7\x1c\x8e\x4e\x10\x44\xd0\xdf\x89\xc1\x3a\x24\x87\x2b\xc1\x20\x03\x7e\xbc\x74\xc5\x50\x09\x82\x09\xa2\x85\xc6\x11\xe9\x50\x34\xec\xc0\x0a\xd6\xb3\x60\xa5\x6f\xdc\xbe\x18\x74\x2d\xa6\x48\x20\x08\x5c\x59\x6a\xa9\x85\x81\x5f\x6f\xc0\xa5\x12\x5d\x56\xca\x30\x82\x4f\x5a\x7e\x8c\x56\x54\xce\x1c\x6e\x2b\xf4\x18\xaa\xc1\xba\xa4\xa2\xeb\xc8\x20\x66\x42\x9b\x58\xba\x4b\xb0\x7c\xa5\x4d\xde\x42\x96\x0d\xb6\x1b\xe3\xa3\x93\x82\x3b\xa9\x31\x4e\xa8\x98\xf2\xe6\x01\x21\xd4\x32\xa4\xa3\x51\x25\x37\xba\xa3\x14\x52\x1b\xcd\x8b\xe7\x0c\xc7\xae\x17\xfa\xab\x71\xf6\x62\x63\xdc\x22\x1a\xed\x27\xb4\xb6\xdf\x51\x25\x23\x0b\xb2\xba\x69\x90\x69\x97\x65\xa3\x89\x0f\x93\xf9\x17\xdb\xf6\x2f\x96\x40\x5b\x82\x7b\xe1\x6c\xa9\xa7\xb0\xc4\xde\xd2\x97\x7f\xfd\x9e\x66\x6a\x3a\xd8\xfa\x18\xb4\x55\x96\x44\x55\x71\x8f\x8b\xff\x81\xd6\xcd\xcd\x07\x68\xda\x89\xd1\x12\x02\x40\xcc\x79\x4b\xe8\xe1\x40\x3a\x8f\x07\x1b\xd1\x10\x44\xc8\x85\xd2\x7e\xcf\xda\xc0\x55\x92\x14\xa5\x3d\x4a\x76\x3e\x76\xb2\x47\x98\xa2\x45\x2f\x18\x15\x44\x04\xea\x4b\x7d\x82\xd0\x18\x21\x51\xc1\xa1\x4c\x41\x21\x20\x94\x1e\x39\xa8\xf3\x9e\xd4\xae\x31\xb2\xc8\x41\x36\x8a\x9a\xdb\x9d\x9c\x2e\x3e\x5f\x81\xb6\x8c\xbe\x14\x12\xe1\xd3\xed\x97\x6d\xd8\x7d\x43\xe5\xf4\xf5\x78\xb7\x2d\xdd\x14\xa2\x65\xa7\x30\xac\x1a\xda\xd9\xa2\x46\xae\xdc\xee\x55\xea\x53\xfc\x14\xa3\xb2\xbc\x12\x2b\xae\x72\xc4\x70\x75\x3d\x3b\x05\xa1\x94\x47\xa2\xbd\xfe\x6e\x4d\x9b\x52\x7b\xe2\x51\xe9\x5a\xab\x36\xf7\x3a\xa7\x0a\xa9\xd5\xee\xf4\x5c\x5c\x5d\xfe\x2d\x59\xf4\xc2\x4e\x93\xf8\x13\xe9\xa9\x85\xbf\xb4\x13\xf4\x16\x19\x09\x1a\xa7\x9e\xc1\xe4\x78\x9c\x9f\xe4\xe3\x7c\x7c\x74\xfc\x72\x83\x49\x50\x59\x2d\x71\x2f\x9b\x37\x6f\xde\xff\x7a\x39\x78\x12\xa5\x0e\x8a\xf2\xc1\x6d\x85\x70\x1c\xc3\x06\x73\x6d\x4c\x28\x1f\x8f\x51\xcf\x55\x2c\xdc\xfb\x76\x82\x85\x68\x74\x92\xf8\x34\x65\x8e\xc7\x5c\xed\xbd\x10\x6a\x5c\x59\xca\x07\x81\xcc\x60\xc5\xed\x1d\x2e\x27\x77\xff\x6f\xb7\xbb\xfd\x03\x41\xb9\x5a\x68\x5b\x50\x5b\x96\xfa\x61\x67\x16\xfe\xda\xa2\xd7\x98\x1a\x2d\x9d\x4e\xa3\x28\x92\x4d\xf7\x96\x5c\x85\xa5\x39\x7a\x54\x30\x59\x2c\xa9\xc2\x65\xc7\x47\x53\xaf\x5a\xb9\x71\x52\x98\x6e\x47\x2f\x9d\xcb\x3b\xca\x39\xcd\x64\xbe\x76\xe6\x05\x3c\x3d\xb7\x6b\x17\x37\xdc\x45\x1b\xfe\x2e\x3c\x36\xce\x87\xa5\x63\x97\xee\x4c\x9c\x33\xdb\xee\xbf\x8f\x37\xa1\xa5\x30\x35\xc2\x7c\xb1\xc2\x2c\x58\x4b\x82\x25\x58\xa8\x82\x7e\x37\x20\x38\xbc\x10\x46\x4b\xf7\x62\x5b\x15\x4b\x61\x08\xd7\x79\xd5\xc2\x8a\x29\xd6\x68\x39\x16\x1e\xed\xcc\xc0\x47\x4d\x1c\x16\xc3\x58\x77\xa1\x02\x29\xf4\x66\xe5\xbc\xfe\x23\x6d\x39\x42\x4a\x24\x0a\xec\x12\xde\xea\x84\xd8\x8e\xdf\x9a\xbe\xae\xeb\x85\x53\x58\x34\x5e\xcf\x04\xef\x6f\x84\xec\x3a\x1d\x78\xa4\x13\xb8\x05\x8b\xe1\x3a\x05\x31\x4e\xa4\x8c\x71\xf3\x24\x65\xa3\xf0\x05\xd8\x8b\x30\xca\x9f\x26\x93\x5d\xc2\xc4\x74\xea\x71\x1a\xc7\xc7\x4e\x2e\x5d\x76\x82\xf5\x95\x06\x7c\xf7\x78\x0b\x3e\x8a\x05\x7a\x38\xec\x32\x41\x81\x19\xfb\x16\x77\xa8\xf5\x32\xff\xab\x39\x0b\x67\xd7\x99\xa5\x7e\x8c\xe0\x85\x56\xbb\x33\x76\xd3\xa0\xd4\xe5\xa2\xdf\x67\x2b\xe1\xd5\x5c\xf8\x50\x7f\xab\x77\xd3\xc3\xa2\x5b\xb2\x29\x87\x77\x50\x8b\xa6\x1b\x40\xc1\xa3\x7b\x8c\x2b\x4d\x2d\x62\xef\x1c\x3c\x4e\xf6\xd1\x8f\x3f\x7e\xd5\x56\xe1\xc3\xb7\x83\xb8\xfc\x85\xc3\x33\x61\xda\xb8\xf0\x84\xff\xac\xd8\x81\xab\xcb\x3c\xbd\x6d\xe3\x9e\xd6\x84\x4f\x96\xd3\x8a\x86\xc9\x60\x68\xde\xb0\x31\x3e\xc2\xb8\x12\xee\x36\xfc\x2c\xba\xb8\xdc\x41\x1f\x8a\x1c\xde\xa7\x07\xd6\x39\x6c\x9c\x85\xb7\xf0\x75\xe5\xad\x30\x1a\xc3\x5b\xf8\x2d\x7b\xb3\x7e\xea\xff\x7f\xcb\xe0\xdb\x76\x16\x6a\xd1\xac\x0d\xff\xd5\x64\x7c\xfd\xf6\xdd\x54\xf4\x14\xf7\xcb\xf7\x75\xbf\x7a\x46\x37\xe9\x1c\xb2\x2c\x06\x30\xb3\xf8\xc0\xa3\xe5\x4e\x98\xe5\x83\x41\x9f\x42\xb1\xe4\xb0\x1e\xd4\x98\x3c\xbb\x8c\x6b\x68\x2a\x54\x7d\x58\x37\x83\x77\x37\xa8\x45\x93\xc3\x3b\x0b\x58\x37\xbc\xe8\x2a\x1e\x6a\x14\x96\x20\x0b\xb1\xb7\x6e\x59\x25\xab\x86\xb2\x1c\xee\xd6\xb9\xdd\xc5\x7c\x0d\x64\xe5\x1c\x05\xc1\x5d\xac\xf1\x8a\x6b\x77\x1d\x5e\x42\x98\x2a\xa1\x71\xce\x1c\x10\x28\x0c\x13\x29\x85\x3a\x38\xdc\x6f\x95\x4f\x1d\x24\xdd\xef\x48\x2e\xd0\xb3\x2e\xb5\x14\xbc\xfe\xab\x12\x89\x9e\xa9\x98\x09\xa3\x95\xe6\x45\xd1\xa0\xd7\x4e\x15\x95\x6b\xf7\x28\xda\xdf\xbb\x93\xa1\xd0\xc2\xd6\x1f\xf5\x6a\x05\x3b\xc4\x31\xdd\x7e\xea\xf2\xf3\xfa\xd5\xcb\x8d\xe5\x87\xc5\xf4\xfb\x72\x1a\x0e\xa4\x80\xf5\xe3\xab\xf1\xae\x11\xd3\xb8\xf6\xb1\xeb\x5e\xdd\x29\xc7\x7f\xa2\xa2\x5b\xfb\x6f\xf6\x29\x0a\xb1\xfa\x79\x71\xfe\xd1\xdd\xbb\xda\x85\x67\x4e\x36\x84\xec\xc2\x63\xc0\xff\x79\x71\xfe\xc5\x52\x2c\x31\x8d\x2a\xfb\x7d\x9d\xfa\xfa\x5a\x50\xe0\x03\x7b\x51\x94\x66\x9f\x43\xef\xc3\x77\x88\xdf\xa1\x09\xfb\x6a\xa4\x4f\x68\xca\x51\x58\xda\x50\xc5\x3d\x63\xb4\x04\xcc\x9f\xeb\x4d\xa0\xf7\xdf\x00\x00\x00\xff\xff\xa7\xcf\xc2\x70\x6b\x14\x00\x00"), }, "/lokomotive-kubernetes/packet/flatcar-linux/kubernetes/workers": &vfsgen۰DirInfo{ name: "workers", diff --git a/pkg/platform/aws/aws.go b/pkg/platform/aws/aws.go index d507c6fcd..9695ebc7c 100644 --- a/pkg/platform/aws/aws.go +++ b/pkg/platform/aws/aws.go @@ -74,6 +74,7 @@ type config struct { EnableReporting bool `hcl:"enable_reporting,optional"` CertsValidityPeriodHours int `hcl:"certs_validity_period_hours,optional"` WorkerPools []workerPool `hcl:"worker_pool,block"` + KubeAPIServerExtraFlags []string `hcl:"kube_apiserver_extra_flags,optional"` } // init registers aws as a platform @@ -158,6 +159,11 @@ func createTerraformConfigFile(cfg *config, terraformRootDir string) error { return errors.Wrapf(err, "failed to marshal CLC snippets") } + kubeAPIServerExtraFlags, err := json.Marshal(cfg.KubeAPIServerExtraFlags) + if err != nil { + return fmt.Errorf("failed to marshal kube-apiserver extra flags: %w", err) + } + util.AppendTags(&cfg.Tags) tags, err := json.Marshal(cfg.Tags) @@ -190,19 +196,21 @@ func createTerraformConfigFile(cfg *config, terraformRootDir string) error { } terraformCfg := struct { - Config config - Tags string - SSHPublicKeys string - ControllerCLCSnippets string - WorkerCLCSnippets string - WorkerTargetGroups string - WorkerpoolCfg []map[string]string + Config config + Tags string + SSHPublicKeys string + ControllerCLCSnippets string + WorkerCLCSnippets string + WorkerTargetGroups string + WorkerpoolCfg []map[string]string + KubeAPIServerExtraFlags string }{ - Config: *cfg, - Tags: string(tags), - SSHPublicKeys: string(keyListBytes), - ControllerCLCSnippets: string(controllerCLCSnippetsBytes), - WorkerpoolCfg: workerpoolCfgList, + Config: *cfg, + Tags: string(tags), + SSHPublicKeys: string(keyListBytes), + ControllerCLCSnippets: string(controllerCLCSnippetsBytes), + WorkerpoolCfg: workerpoolCfgList, + KubeAPIServerExtraFlags: string(kubeAPIServerExtraFlags), } if err := t.Execute(f, terraformCfg); err != nil { diff --git a/pkg/platform/aws/template.go b/pkg/platform/aws/template.go index 6050073b4..8ce89208c 100644 --- a/pkg/platform/aws/template.go +++ b/pkg/platform/aws/template.go @@ -91,6 +91,10 @@ module "aws-{{.Config.ClusterName}}" { {{- if .Config.CertsValidityPeriodHours }} certs_validity_period_hours = {{.Config.CertsValidityPeriodHours}} {{- end }} + + {{- if ne .KubeAPIServerExtraFlags "null" }} + kube_apiserver_extra_flags = {{ .KubeAPIServerExtraFlags }} + {{- end }} } {{ range $index, $pool := .Config.WorkerPools }} diff --git a/pkg/platform/baremetal/baremetal.go b/pkg/platform/baremetal/baremetal.go index a605aadf9..0ca62b510 100644 --- a/pkg/platform/baremetal/baremetal.go +++ b/pkg/platform/baremetal/baremetal.go @@ -16,6 +16,7 @@ package baremetal import ( "encoding/json" + "fmt" "os" "path/filepath" "text/template" @@ -30,24 +31,25 @@ import ( ) type config struct { - AssetDir string `hcl:"asset_dir"` - CachedInstall string `hcl:"cached_install,optional"` - ClusterName string `hcl:"cluster_name"` - ControllerDomains []string `hcl:"controller_domains"` - ControllerMacs []string `hcl:"controller_macs"` - ControllerNames []string `hcl:"controller_names"` - K8sDomainName string `hcl:"k8s_domain_name"` - MatchboxCAPath string `hcl:"matchbox_ca_path"` - MatchboxClientCertPath string `hcl:"matchbox_client_cert_path"` - MatchboxClientKeyPath string `hcl:"matchbox_client_key_path"` - MatchboxEndpoint string `hcl:"matchbox_endpoint"` - MatchboxHTTPEndpoint string `hcl:"matchbox_http_endpoint"` - OSChannel string `hcl:"os_channel,optional"` - OSVersion string `hcl:"os_version,optional"` - SSHPubKeys []string `hcl:"ssh_pubkeys"` - WorkerNames []string `hcl:"worker_names"` - WorkerMacs []string `hcl:"worker_macs"` - WorkerDomains []string `hcl:"worker_domains"` + AssetDir string `hcl:"asset_dir"` + CachedInstall string `hcl:"cached_install,optional"` + ClusterName string `hcl:"cluster_name"` + ControllerDomains []string `hcl:"controller_domains"` + ControllerMacs []string `hcl:"controller_macs"` + ControllerNames []string `hcl:"controller_names"` + K8sDomainName string `hcl:"k8s_domain_name"` + MatchboxCAPath string `hcl:"matchbox_ca_path"` + MatchboxClientCertPath string `hcl:"matchbox_client_cert_path"` + MatchboxClientKeyPath string `hcl:"matchbox_client_key_path"` + MatchboxEndpoint string `hcl:"matchbox_endpoint"` + MatchboxHTTPEndpoint string `hcl:"matchbox_http_endpoint"` + OSChannel string `hcl:"os_channel,optional"` + OSVersion string `hcl:"os_version,optional"` + SSHPubKeys []string `hcl:"ssh_pubkeys"` + WorkerNames []string `hcl:"worker_names"` + WorkerMacs []string `hcl:"worker_macs"` + WorkerDomains []string `hcl:"worker_domains"` + KubeAPIServerExtraFlags []string `hcl:"kube_apiserver_extra_flags,optional"` } // init registers bare-metal as a platform @@ -152,42 +154,49 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { return errors.Wrapf(err, "failed to parse %q", cfg.ControllerNames) } + kubeAPIServerExtraFlags, err := json.Marshal(cfg.KubeAPIServerExtraFlags) + if err != nil { + return fmt.Errorf("failed to marshal kube-apiserver extra flags: %w", err) + } + terraformCfg := struct { - CachedInstall string - ClusterName string - ControllerDomains string - ControllerMacs string - ControllerNames string - K8sDomainName string - MatchboxClientCert string - MatchboxClientKey string - MatchboxCA string - MatchboxEndpoint string - MatchboxHTTPEndpoint string - OSChannel string - OSVersion string - SSHPublicKeys string - WorkerNames string - WorkerMacs string - WorkerDomains string + CachedInstall string + ClusterName string + ControllerDomains string + ControllerMacs string + ControllerNames string + K8sDomainName string + MatchboxClientCert string + MatchboxClientKey string + MatchboxCA string + MatchboxEndpoint string + MatchboxHTTPEndpoint string + OSChannel string + OSVersion string + SSHPublicKeys string + WorkerNames string + WorkerMacs string + WorkerDomains string + KubeAPIServerExtraFlags string }{ - CachedInstall: cfg.CachedInstall, - ClusterName: cfg.ClusterName, - ControllerDomains: string(controllerDomains), - ControllerMacs: string(controllerMacs), - ControllerNames: string(controllerNames), - K8sDomainName: cfg.K8sDomainName, - MatchboxCA: cfg.MatchboxCAPath, - MatchboxClientCert: cfg.MatchboxClientCertPath, - MatchboxClientKey: cfg.MatchboxClientKeyPath, - MatchboxEndpoint: cfg.MatchboxEndpoint, - MatchboxHTTPEndpoint: cfg.MatchboxHTTPEndpoint, - OSChannel: cfg.OSChannel, - OSVersion: cfg.OSVersion, - SSHPublicKeys: string(keyListBytes), - WorkerNames: string(workerNames), - WorkerMacs: string(workerMacs), - WorkerDomains: string(workerDomains), + CachedInstall: cfg.CachedInstall, + ClusterName: cfg.ClusterName, + ControllerDomains: string(controllerDomains), + ControllerMacs: string(controllerMacs), + ControllerNames: string(controllerNames), + K8sDomainName: cfg.K8sDomainName, + MatchboxCA: cfg.MatchboxCAPath, + MatchboxClientCert: cfg.MatchboxClientCertPath, + MatchboxClientKey: cfg.MatchboxClientKeyPath, + MatchboxEndpoint: cfg.MatchboxEndpoint, + MatchboxHTTPEndpoint: cfg.MatchboxHTTPEndpoint, + OSChannel: cfg.OSChannel, + OSVersion: cfg.OSVersion, + SSHPublicKeys: string(keyListBytes), + WorkerNames: string(workerNames), + WorkerMacs: string(workerMacs), + WorkerDomains: string(workerDomains), + KubeAPIServerExtraFlags: string(kubeAPIServerExtraFlags), } if err := t.Execute(f, terraformCfg); err != nil { diff --git a/pkg/platform/baremetal/template.go b/pkg/platform/baremetal/template.go index 018b053d1..8fae19691 100644 --- a/pkg/platform/baremetal/template.go +++ b/pkg/platform/baremetal/template.go @@ -44,6 +44,10 @@ module "bare-metal-{{.ClusterName}}" { worker_names = {{.WorkerNames}} worker_macs = {{.WorkerMacs}} worker_domains = {{.WorkerDomains}} + + {{- if ne .KubeAPIServerExtraFlags "null" }} + kube_apiserver_extra_flags = {{ .KubeAPIServerExtraFlags }} + {{- end }} } provider "matchbox" { diff --git a/pkg/platform/packet/packet.go b/pkg/platform/packet/packet.go index a5ff0907c..f67ac0055 100644 --- a/pkg/platform/packet/packet.go +++ b/pkg/platform/packet/packet.go @@ -76,6 +76,7 @@ type config struct { ReservationIDs map[string]string `hcl:"reservation_ids,optional"` ReservationIDsDefault string `hcl:"reservation_ids_default,optional"` CertsValidityPeriodHours int `hcl:"certs_validity_period_hours,optional"` + KubeAPIServerExtraFlags []string `hcl:"kube_apiserver_extra_flags,optional"` WorkerPools []workerPool `hcl:"worker_pool,block"` } @@ -176,6 +177,11 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { return errors.Wrapf(err, "failed to marshal management CIDRs") } + kubeAPIServerExtraFlags, err := json.Marshal(cfg.KubeAPIServerExtraFlags) + if err != nil { + return fmt.Errorf("failed to marshal kube-apiserver extra flags: %w", err) + } + // Packet does not accept tags as a key-value map but as an array of // strings. util.AppendTags(&cfg.Tags) @@ -190,15 +196,17 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { } terraformCfg := struct { - Config config - Tags string - SSHPublicKeys string - ManagementCIDRs string + Config config + Tags string + SSHPublicKeys string + ManagementCIDRs string + KubeAPIServerExtraFlags string }{ - Config: *cfg, - Tags: string(tags), - SSHPublicKeys: string(keyListBytes), - ManagementCIDRs: string(managementCIDRs), + Config: *cfg, + Tags: string(tags), + SSHPublicKeys: string(keyListBytes), + ManagementCIDRs: string(managementCIDRs), + KubeAPIServerExtraFlags: string(kubeAPIServerExtraFlags), } if err := t.Execute(f, terraformCfg); err != nil { diff --git a/pkg/platform/packet/template.go b/pkg/platform/packet/template.go index e58360011..34933e733 100644 --- a/pkg/platform/packet/template.go +++ b/pkg/platform/packet/template.go @@ -90,6 +90,10 @@ module "packet-{{.Config.ClusterName}}" { {{- if .Config.CertsValidityPeriodHours }} certs_validity_period_hours = {{.Config.CertsValidityPeriodHours}} {{- end }} + + {{- if ne .KubeAPIServerExtraFlags "null" }} + kube_apiserver_extra_flags = {{ .KubeAPIServerExtraFlags }} + {{- end }} } {{ range $index, $pool := .Config.WorkerPools }}