From 0b2b305fdeaa3903d5ecf402cf0a506c8d46edff Mon Sep 17 00:00:00 2001 From: knrt10 Date: Tue, 3 Nov 2020 18:36:06 +0530 Subject: [PATCH] Add packet-ccm - Add helm chart for packet-ccm. - Add varibales auth_token and project_id to bootkube. - Run packet-ccm while bootstrapping. closes: #548 Signed-off-by: knrt10 --- .../control-plane/packet-ccm/.helmignore | 23 ++ .../control-plane/packet-ccm/Chart.yaml | 23 ++ .../packet-ccm/templates/deployment.yaml | 144 +++++++++ .../packet-ccm/templates/loadbalancer.yaml | 303 ++++++++++++++++++ .../packet-ccm/templates/secret.yaml | 11 + .../control-plane/packet-ccm/values.yaml | 2 + assets/terraform-modules/bootkube/assets.tf | 9 + assets/terraform-modules/bootkube/outputs.tf | 4 + .../bootkube/resources/charts/packet-ccm.yaml | 2 + .../terraform-modules/bootkube/variables.tf | 8 + .../flatcar-linux/kubernetes/bootkube.tf | 1 + .../flatcar-linux/kubernetes/outputs.tf | 4 + pkg/assets/generated_assets.go | 86 ++++- pkg/platform/packet/template.go | 5 + pkg/platform/platform.go | 4 + 15 files changed, 619 insertions(+), 10 deletions(-) create mode 100644 assets/charts/control-plane/packet-ccm/.helmignore create mode 100644 assets/charts/control-plane/packet-ccm/Chart.yaml create mode 100644 assets/charts/control-plane/packet-ccm/templates/deployment.yaml create mode 100644 assets/charts/control-plane/packet-ccm/templates/loadbalancer.yaml create mode 100644 assets/charts/control-plane/packet-ccm/templates/secret.yaml create mode 100644 assets/charts/control-plane/packet-ccm/values.yaml create mode 100644 assets/terraform-modules/bootkube/resources/charts/packet-ccm.yaml diff --git a/assets/charts/control-plane/packet-ccm/.helmignore b/assets/charts/control-plane/packet-ccm/.helmignore new file mode 100644 index 000000000..0e8a0eb36 --- /dev/null +++ b/assets/charts/control-plane/packet-ccm/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/assets/charts/control-plane/packet-ccm/Chart.yaml b/assets/charts/control-plane/packet-ccm/Chart.yaml new file mode 100644 index 000000000..6f3cbe09d --- /dev/null +++ b/assets/charts/control-plane/packet-ccm/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: packet-ccm +description: A Helm chart for deploying packet-ccm on Packet cluster + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: v1.1.0 diff --git a/assets/charts/control-plane/packet-ccm/templates/deployment.yaml b/assets/charts/control-plane/packet-ccm/templates/deployment.yaml new file mode 100644 index 000000000..b35806431 --- /dev/null +++ b/assets/charts/control-plane/packet-ccm/templates/deployment.yaml @@ -0,0 +1,144 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: packet-cloud-controller-manager + namespace: kube-system + labels: + app: packet-cloud-controller-manager +spec: + replicas: 1 + selector: + matchLabels: + app: packet-cloud-controller-manager + template: + metadata: + labels: + app: packet-cloud-controller-manager + annotations: + scheduler.alpha.kubernetes.io/critical-pod: '' + spec: + dnsPolicy: Default + hostNetwork: true + serviceAccountName: cloud-controller-manager + tolerations: + # this taint is set by all kubelets running `--cloud-provider=external` + # so we should tolerate it to schedule the packet ccm + - key: "node.cloudprovider.kubernetes.io/uninitialized" + value: "true" + effect: "NoSchedule" + - key: "CriticalAddonsOnly" + operator: "Exists" + # cloud controller manager should be able to run on masters + - key: "node-role.kubernetes.io/master" + effect: NoSchedule + containers: + - image: packethost/packet-ccm:{{.Chart.AppVersion}} + name: packet-cloud-controller-manager + command: + - "./packet-cloud-controller-manager" + - "--cloud-provider=packet" + - "--leader-elect=false" + - "--allow-untagged-cloud=true" + - "--authentication-skip-lookup=true" + - "--provider-config=/etc/cloud-sa/cloud-sa.json" + - "--v=2" + resources: + requests: + cpu: 100m + memory: 50Mi + volumeMounts: + - name: cloud-sa-volume + readOnly: true + mountPath: "/etc/cloud-sa" + volumes: + - name: cloud-sa-volume + secret: + secretName: packet-cloud-config + +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cloud-controller-manager + namespace: kube-system +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + annotations: + rbac.authorization.kubernetes.io/autoupdate: "true" + name: system:cloud-controller-manager +rules: +- apiGroups: + # reason: so ccm can monitor and update endpoints, used for control plane loadbalancer + - "" + resources: + - endpoints + verbs: + - create + - get + - list + - watch + - update +- apiGroups: + # reason: so ccm can read and update nodes and annotations + - "" + resources: + - nodes + verbs: + - '*' +- apiGroups: + # reason: so ccm can update the status of nodes + - "" + resources: + - nodes/status + verbs: + - patch +- apiGroups: + # reason: so ccm can manage services for loadbalancer + - "" + resources: + - services + verbs: + - get + - list + - patch + - update + - watch + - create +- apiGroups: + # reason: so ccm can update the status of services for loadbalancer + - "" + resources: + - services/status + verbs: + - list + - patch + - update + - watch +- apiGroups: + # reason: so ccm can read and update configmap/metallb-system:config + - "" + resources: + - configmaps + verbs: + - create + - get + - list + - watch + - update + - patch +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: system:cloud-controller-manager +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: system:cloud-controller-manager +subjects: +- kind: ServiceAccount + name: cloud-controller-manager + namespace: kube-system diff --git a/assets/charts/control-plane/packet-ccm/templates/loadbalancer.yaml b/assets/charts/control-plane/packet-ccm/templates/loadbalancer.yaml new file mode 100644 index 000000000..6641f4f5d --- /dev/null +++ b/assets/charts/control-plane/packet-ccm/templates/loadbalancer.yaml @@ -0,0 +1,303 @@ +apiVersion: v1 +kind: Namespace +metadata: + labels: + app: metallb + name: metallb-system +--- +apiVersion: policy/v1beta1 +kind: PodSecurityPolicy +metadata: + labels: + app: metallb + name: speaker + namespace: metallb-system +spec: + allowPrivilegeEscalation: false + allowedCapabilities: + - NET_ADMIN + - NET_RAW + - SYS_ADMIN + fsGroup: + rule: RunAsAny + hostNetwork: true + hostPorts: + - max: 7472 + min: 7472 + privileged: true + runAsUser: + rule: RunAsAny + seLinux: + rule: RunAsAny + supplementalGroups: + rule: RunAsAny + volumes: + - '*' +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + labels: + app: metallb + name: controller + namespace: metallb-system +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + labels: + app: metallb + name: speaker + namespace: metallb-system +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app: metallb + name: metallb-system:controller +rules: +- apiGroups: + - '' + resources: + - services + verbs: + - get + - list + - patch + - update + - watch +- apiGroups: + - '' + resources: + - services/status + verbs: + - update +- apiGroups: + - '' + resources: + - events + verbs: + - create + - patch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app: metallb + name: metallb-system:speaker +rules: +- apiGroups: + - '' + resources: + - services + - endpoints + - nodes + verbs: + - get + - list + - watch +- apiGroups: + - '' + resources: + - events + verbs: + - create + - patch +- apiGroups: + - extensions + resourceNames: + - speaker + resources: + - podsecuritypolicies + verbs: + - use +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + labels: + app: metallb + name: config-watcher + namespace: metallb-system +rules: +- apiGroups: + - '' + resources: + - configmaps + verbs: + - get + - list + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app: metallb + name: metallb-system:controller +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: metallb-system:controller +subjects: +- kind: ServiceAccount + name: controller + namespace: metallb-system +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app: metallb + name: metallb-system:speaker +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: metallb-system:speaker +subjects: +- kind: ServiceAccount + name: speaker + namespace: metallb-system +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + labels: + app: metallb + name: config-watcher + namespace: metallb-system +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: config-watcher +subjects: +- kind: ServiceAccount + name: controller +- kind: ServiceAccount + name: speaker +--- +apiVersion: apps/v1 +kind: DaemonSet +metadata: + labels: + app: metallb + component: speaker + name: speaker + namespace: metallb-system +spec: + selector: + matchLabels: + app: metallb + component: speaker + template: + metadata: + annotations: + prometheus.io/port: '7472' + prometheus.io/scrape: 'true' + labels: + app: metallb + component: speaker + spec: + containers: + - args: + - --port=7472 + - --config=config + env: + - name: METALLB_NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: METALLB_HOST + valueFrom: + fieldRef: + fieldPath: status.hostIP + image: metallb/speaker:v0.8.2 + imagePullPolicy: IfNotPresent + name: speaker + ports: + - containerPort: 7472 + name: monitoring + resources: + limits: + cpu: 100m + memory: 100Mi + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - NET_ADMIN + - NET_RAW + - SYS_ADMIN + drop: + - ALL + readOnlyRootFilesystem: true + hostNetwork: true + nodeSelector: + beta.kubernetes.io/os: linux + serviceAccountName: speaker + terminationGracePeriodSeconds: 0 + tolerations: + - effect: NoSchedule + key: node-role.kubernetes.io/master +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: metallb + component: controller + name: controller + namespace: metallb-system +spec: + revisionHistoryLimit: 3 + selector: + matchLabels: + app: metallb + component: controller + template: + metadata: + annotations: + prometheus.io/port: '7472' + prometheus.io/scrape: 'true' + labels: + app: metallb + component: controller + spec: + containers: + - args: + - --port=7472 + - --config=config + image: metallb/controller:v0.8.2 + imagePullPolicy: IfNotPresent + name: controller + ports: + - containerPort: 7472 + name: monitoring + resources: + limits: + cpu: 100m + memory: 100Mi + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: true + nodeSelector: + beta.kubernetes.io/os: linux + securityContext: + runAsNonRoot: true + runAsUser: 65534 + serviceAccountName: controller + terminationGracePeriodSeconds: 0 +--- +apiVersion: v1 +kind: ConfigMap +metadata: + namespace: metallb-system + name: config +data: + config: | + peers: [] diff --git a/assets/charts/control-plane/packet-ccm/templates/secret.yaml b/assets/charts/control-plane/packet-ccm/templates/secret.yaml new file mode 100644 index 000000000..de8cbdab3 --- /dev/null +++ b/assets/charts/control-plane/packet-ccm/templates/secret.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Secret +metadata: + name: packet-cloud-config + namespace: kube-system +stringData: + cloud-sa.json: | + { + "apiKey": "{{ .Values.apiKey }}", + "projectID": "{{ .Values.projectID }}" + } diff --git a/assets/charts/control-plane/packet-ccm/values.yaml b/assets/charts/control-plane/packet-ccm/values.yaml new file mode 100644 index 000000000..f0f4db98b --- /dev/null +++ b/assets/charts/control-plane/packet-ccm/values.yaml @@ -0,0 +1,2 @@ +apiKey: +projectID: diff --git a/assets/terraform-modules/bootkube/assets.tf b/assets/terraform-modules/bootkube/assets.tf index 06e387af2..b19bf2e87 100644 --- a/assets/terraform-modules/bootkube/assets.tf +++ b/assets/terraform-modules/bootkube/assets.tf @@ -166,3 +166,12 @@ resource "local_file" "kubeconfig-admin-named" { locals { api_servers_external = split(",", join(",", var.api_servers_external) == "" ? join(",", var.api_servers) : join(",", var.api_servers_external)) } + +# Populate chart values file named packet-ccm.yaml. +resource "local_file" "packet-ccm" { + filename = "${var.asset_dir}/charts/kube-system/packet-ccm.yaml" + content = templatefile("${path.module}/resources/charts/packet-ccm.yaml", { + api_key = var.auth_token + project_id = var.project_id + }) +} diff --git a/assets/terraform-modules/bootkube/outputs.tf b/assets/terraform-modules/bootkube/outputs.tf index 8dcb6d042..953029e1d 100644 --- a/assets/terraform-modules/bootkube/outputs.tf +++ b/assets/terraform-modules/bootkube/outputs.tf @@ -94,3 +94,7 @@ output "lokomotive_values" { output "bootstrap-secrets_values" { value = var.enable_tls_bootstrap ? local.bootstrap_secrets : "" } + +output "packet-ccm_values" { + value = join("", local_file.packet-ccm.*.content) +} diff --git a/assets/terraform-modules/bootkube/resources/charts/packet-ccm.yaml b/assets/terraform-modules/bootkube/resources/charts/packet-ccm.yaml new file mode 100644 index 000000000..dfcff310f --- /dev/null +++ b/assets/terraform-modules/bootkube/resources/charts/packet-ccm.yaml @@ -0,0 +1,2 @@ +apiKey: ${api_key} +projectID: ${project_id} diff --git a/assets/terraform-modules/bootkube/variables.tf b/assets/terraform-modules/bootkube/variables.tf index d04fdd322..287f756ec 100644 --- a/assets/terraform-modules/bootkube/variables.tf +++ b/assets/terraform-modules/bootkube/variables.tf @@ -185,3 +185,11 @@ variable "encrypt_pod_traffic" { type = bool default = false } + +variable "auth_token" { + description = "Packet Auth token (e.g. 4KUDZICtnKfNF4uJSGxxLi4GhWxhzKPj)" +} + +variable "project_id" { + description = "Packet project ID (e.g. 405efe9c-cce9-4c71-87c1-949c290b27dc)" +} diff --git a/assets/terraform-modules/packet/flatcar-linux/kubernetes/bootkube.tf b/assets/terraform-modules/packet/flatcar-linux/kubernetes/bootkube.tf index 7548a5274..88e723ec4 100644 --- a/assets/terraform-modules/packet/flatcar-linux/kubernetes/bootkube.tf +++ b/assets/terraform-modules/packet/flatcar-linux/kubernetes/bootkube.tf @@ -12,6 +12,7 @@ module "bootkube" { etcd_servers = [for i, d in packet_device.controllers : format("%s-etcd%d.%s", var.cluster_name, i, var.dns_zone)] asset_dir = var.asset_dir api_key = var.auth_token + project_id = var.project_id network_mtu = var.network_mtu etcd_endpoints = packet_device.controllers.*.access_private_ipv4 diff --git a/assets/terraform-modules/packet/flatcar-linux/kubernetes/outputs.tf b/assets/terraform-modules/packet/flatcar-linux/kubernetes/outputs.tf index c76271fd1..733a03dcc 100644 --- a/assets/terraform-modules/packet/flatcar-linux/kubernetes/outputs.tf +++ b/assets/terraform-modules/packet/flatcar-linux/kubernetes/outputs.tf @@ -56,3 +56,7 @@ output "controllers_public_ipv4" { output "controllers_private_ipv4" { value = packet_device.controllers.*.access_private_ipv4 } + +output "packet-ccm_values" { + value = module.bootkube.packet-ccm_values +} diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 90421d3a1..e64e82161 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -5180,6 +5180,54 @@ var vfsgenAssets = func() http.FileSystem { modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), content: []byte("\x77\x65\x62\x68\x6f\x6f\x6b\x3a\x0a\x20\x20\x73\x65\x72\x76\x69\x6e\x67\x4b\x65\x79\x3a\x0a\x20\x20\x73\x65\x72\x76\x69\x6e\x67\x43\x65\x72\x74\x3a\x0a"), }, + "/charts/control-plane/packet-ccm": &vfsgen۰DirInfo{ + name: "packet-ccm", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/charts/control-plane/packet-ccm/.helmignore": &vfsgen۰CompressedFileInfo{ + name: ".helmignore", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 349, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x41\x6e\xe3\x30\x0c\x45\xf7\x3c\xc5\x1f\x78\x33\x63\x0c\xe4\x43\x24\xb3\x98\x55\x0b\xa4\xc8\xb6\x90\x6d\x46\x62\x22\x8b\x82\x44\x27\x6d\x17\x3d\x7b\x91\x04\x41\xbb\x79\x20\x3f\xc8\x8f\xd7\xe1\xd9\x9b\x71\xcd\x0d\xa6\x90\x90\xb5\x32\x2e\x91\x33\xc6\x55\xd2\x2c\x39\xa0\xf8\xe9\xe4\x03\x37\x47\x1d\x5e\xa2\x34\xb4\xb5\x14\xad\xd6\xd0\x22\xa7\x84\x90\x74\xc4\xe2\x6d\x8a\x92\xc3\x5f\x54\x4e\xde\xe4\xcc\x28\xde\xe2\x8f\xdc\xe7\x99\x3a\x64\x0e\xde\x44\x33\x7e\x97\xca\x07\x79\xe3\x19\x17\xb1\x88\x5f\x7f\x1c\x9e\x72\x7a\x87\xe6\xdb\xe7\x55\x09\x85\x2b\x92\x64\x76\xe4\xb6\xbb\xd7\x9d\x69\x65\xea\xb0\xd1\x65\xd1\x8c\xfd\x66\x87\x59\x6a\x23\x17\xc4\x86\x1b\xef\xfa\xe4\xc6\x8f\x3a\xdc\xf8\x08\x62\x18\xae\x78\xac\xed\x9c\x87\xef\xa2\xd1\x4f\xa7\xb5\xe0\x20\x89\x1b\xf5\xae\x5d\x0a\xf5\x6e\xf4\x27\xea\x9d\x2d\xd7\x59\xab\x04\xea\x3f\xa9\xc3\xde\x57\xd1\xb5\xe1\xff\xf6\x5f\x23\x57\xaa\x1e\x79\x32\x72\x32\xb3\x1f\xee\xe7\x55\x8f\xe4\xce\x6d\xd2\x99\x07\xfa\x0a\x00\x00\xff\xff\x16\xec\x32\x27\x5d\x01\x00\x00"), + }, + "/charts/control-plane/packet-ccm/Chart.yaml": &vfsgen۰CompressedFileInfo{ + name: "Chart.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1129, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x31\x8f\xdb\x30\x0c\x85\x77\xfd\x0a\x02\x1e\xd2\x02\xad\xef\xae\x63\xb6\xdb\x3a\x74\x28\xd0\x43\x77\x46\x7a\x8e\xd9\x93\x25\x41\x92\xdd\xfa\xdf\x17\xb4\xe3\xc4\x97\x02\x87\x8e\x76\x48\xbe\xf7\x3d\x32\xe6\x24\x3f\x91\x8b\xc4\x70\xa4\xe9\x8b\x09\x3c\xe0\x48\x89\xed\x2b\xea\x67\x6b\x07\xe3\x50\x6c\x96\x54\x97\x82\x67\xfa\x0a\x3f\x90\xed\x39\x57\xea\x62\x26\x87\xe4\xe3\x2c\xe1\xbc\x6b\xa1\x18\xe8\xfb\xf2\x44\xd6\x8f\xa5\x22\x1b\xd3\xd0\xf3\xa5\xcb\x72\xa0\x13\x08\x52\x7b\x64\xe2\x40\x07\x4e\xc9\x8b\x65\x55\x38\x50\xcc\xc4\x74\xf0\x72\xca\x9c\xe7\xc3\xda\xd3\x9a\x46\x07\xdc\xca\xd6\xd7\x85\x38\x83\x98\x6c\xf4\x1e\x76\x79\x1f\x3b\xaa\x18\x92\xe7\x8a\x42\xb5\xe7\xab\x9c\xba\xe3\x33\x1c\x49\xa8\x91\xa6\x15\x18\x8e\x38\xdb\x5e\x26\x14\xd3\x50\x8d\x5a\xb8\x02\xc1\xad\x9a\xdf\x56\x1f\x9b\x5e\xca\x71\x12\x07\x1a\x0b\xba\xd1\xd3\x58\xc5\x4b\x15\x14\x75\xdd\x8d\x61\xf1\x50\x96\x5c\x6a\x8f\x0b\xaf\xc3\x04\x1f\x13\x72\x4b\x2f\x3d\xe6\x43\x06\x49\xb0\x7e\x74\xaa\xae\xba\xac\x9a\x08\x0e\xc1\xce\x0a\xc0\xff\x72\xd6\x48\x12\x7e\xc1\x56\xaa\x7d\x2c\xd8\x09\x73\x70\x3b\xe5\x05\x4e\xa5\xb3\xce\xcb\x12\xce\xa6\xa1\x24\x09\x5e\x02\xda\x7b\x1a\x17\x29\x44\x35\xd8\x49\x00\x71\x98\x77\xd9\xe9\x5c\x5d\x10\xba\x98\xa1\x21\x6a\xe5\x9b\x78\xea\x9c\x70\xdc\x9b\xd5\x25\xbf\xf4\x52\x48\xca\x0e\xff\x12\x75\xbb\xfe\x74\x79\xa2\x30\x0e\x27\x64\x2a\x7d\x1c\xbd\xd3\xb9\x12\x6c\xc6\x80\x50\xe1\x08\x6c\x7b\xaa\x32\x80\xe6\x38\xd2\xc0\xaf\xcb\xac\x70\xde\xb6\x74\x1b\xae\x2e\x45\xf3\xd9\x7c\x7f\xba\x64\xab\x07\xa9\x65\x9c\xd2\xd5\x81\x69\xe8\x72\xe8\xeb\xe1\xe0\x4f\x82\x55\xbd\x1a\xa9\x8b\xde\xc7\xdf\xf4\x03\x03\x87\x2a\x76\x2b\xd4\x31\x1f\xfa\x5a\x53\x39\x3e\x3c\x14\x0c\x13\x72\x1b\xf3\xf9\xe1\xa3\x99\xb6\xbf\xcc\x63\xfb\xd4\x3e\xde\xa3\xdf\x61\xea\x55\xae\x66\xae\x8b\x3d\x41\x67\x5f\xd3\x7c\x3f\x1d\xd3\xfc\x67\x3e\x5b\x3a\x3b\xa5\xf6\x2d\xb4\xae\x71\x07\x6e\x9a\x77\xd0\xd7\x83\xdd\x6c\x64\x74\x7e\xbd\xc0\x1b\xdf\x3d\x95\x14\x1a\x8b\x76\x1a\x4e\xe9\xf6\x55\x79\x5a\x32\xfa\x1b\x00\x00\xff\xff\x98\x4e\xa6\xc9\x69\x04\x00\x00"), + }, + "/charts/control-plane/packet-ccm/templates": &vfsgen۰DirInfo{ + name: "templates", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/charts/control-plane/packet-ccm/templates/deployment.yaml": &vfsgen۰CompressedFileInfo{ + name: "deployment.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 3347, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x4d\x6f\x1b\x37\x10\xbd\xef\xaf\x18\x6c\x0e\x06\x8a\x52\xb2\x0b\x14\x28\x16\xf0\xc1\x75\x8b\x5e\x1a\x37\x48\x80\x9e\x33\xe2\x8e\x24\x46\x5c\x0e\x4b\x0e\xe5\x28\x41\xfe\x7b\xc1\xfd\xf2\xae\x24\xc7\xaa\xab\x8b\x09\xee\x70\xde\x7b\x33\xc3\x47\x2b\xa5\x0a\xf4\xe6\x6f\x0a\xd1\xb0\xab\x00\xbd\x8f\xcb\xfd\x4d\xb1\x33\xae\xae\xe0\x37\xf2\x96\x0f\x0d\x39\x29\x1a\x12\xac\x51\xb0\x2a\x00\x1c\x36\x54\x81\x47\xbd\x23\x51\xda\x72\xaa\x95\x66\x27\x81\xad\xa5\xa0\x1a\x74\xb8\xa1\xd0\xc7\x45\x8f\x9a\x2a\xd8\xa5\x15\xa9\x78\x88\x42\x4d\x01\x60\x71\x45\x36\xe6\x54\x90\x11\x5f\xce\x15\x3d\xe9\x1c\x1e\xc8\x5b\xa3\x31\x56\x70\x53\x00\x44\xb2\xa4\x85\x43\x97\xa8\x41\xd1\xdb\x3f\x27\x99\x2f\xcc\x0d\x20\xd4\x78\x8b\x42\x7d\x9e\x89\xd2\xfc\xb3\xb3\x94\x17\x27\x6d\x43\x9d\x63\x41\x31\xec\x26\xe7\xa3\xde\x52\x9d\x2c\x85\x05\x5a\xbf\xc5\x45\x2e\x4d\x70\x24\x14\x17\x86\x97\x3a\x18\x31\x1a\xad\xf2\x5c\x57\x70\x75\xd5\x1e\x1b\xe4\xe7\x5f\xed\xe2\x3b\xb6\x46\x1f\x72\x7b\xd6\x98\xac\xf4\x1f\xb6\x1c\xe5\x81\xe4\x91\xc3\xae\x02\x09\x89\xfa\xfd\x48\x61\x6f\x34\xdd\x69\xcd\xc9\xc9\x43\xdb\xbb\x17\x78\x0b\x5b\x0a\xc7\xbc\xdf\x80\x6c\x4d\x04\x41\xe3\x04\x4c\x84\x48\x02\xab\x03\xa0\xb5\x6d\x77\x2d\x49\x84\x90\x9c\x33\x6e\x03\x1f\x55\x5f\x1a\x1f\x78\x6f\x6a\x0a\xb7\xf4\x59\x28\x38\xb4\x1f\x27\xf9\x22\xc3\x23\x41\xdc\x72\xb2\xf5\x80\x49\x60\x04\x84\xc7\x2a\x81\x6c\xa9\xaf\x36\x68\xdd\x8c\xa7\x15\xec\xe8\x50\x41\xe9\xb8\xa6\x45\x8b\x35\x40\x1d\x15\x34\x39\xe3\x8c\x18\xb4\xe6\x0b\xd5\xe5\x78\x1e\x60\x8f\x36\x51\x05\x65\x2e\xd5\x74\x9f\xd6\x6b\xd2\x52\x41\xf9\xc0\x1f\x7a\x12\xe5\x09\xec\x7d\xdf\xa6\xbb\xba\x66\x17\xff\x72\xf6\x30\x4d\xc1\x3e\x4b\xe1\x50\x41\xf9\xfb\x67\x13\x25\x96\x13\xd5\x2d\x59\x78\xaa\x3d\xf4\xb5\x1f\x0a\xb1\x22\xc0\x55\x16\xce\xb9\x9c\xc0\x0e\x1a\x8c\x42\x21\x9e\xd5\xae\x02\x5b\x3a\x92\xdc\xc5\x9f\xd3\xf4\x24\xa9\xff\x98\x69\xa0\x71\x14\xc6\x46\x2b\x30\x0d\x6e\xc6\xfb\x9d\xa7\x6a\x39\x4c\xbb\x6e\xaa\xaf\x5f\x17\xf7\x5b\x0c\xb2\xb8\xf3\xbe\x77\x8d\x6f\xdf\x46\xa4\x4b\x9d\x61\x00\x6f\x1a\x74\x75\x35\x21\xaa\xa0\x5c\x2c\x5f\x38\x5f\xce\xe3\x4f\x46\xad\x3b\x7e\x12\x65\x09\x6b\x0a\xaa\xf5\x8c\xdb\x35\xda\x48\x27\x21\x68\x2d\x3f\xaa\xe4\x04\x37\x1b\xaa\xbb\xbc\xb7\xc7\xf3\xd1\x45\x26\xd9\x92\xcb\x23\x90\x6f\x89\x8a\x3b\xe3\x95\x65\xde\x25\x7f\x3e\x7e\x20\x97\xe5\xac\xcd\xe6\x76\x49\xa2\x97\x1d\xef\x88\xe3\x62\xf1\x29\xb2\x3b\x39\xbb\xbf\xfd\xe9\x69\x2f\x50\xe4\x14\x34\xc5\x69\xd5\x02\xfd\x93\x28\xca\x6c\x0f\x40\xfb\x54\xc1\xcd\xf5\x75\x33\xdb\x6d\xa8\xe1\x70\xa8\xe0\xe7\xeb\xb7\x66\xfc\xb0\x67\x9b\x1a\x7a\x9b\x0d\x22\xce\xdb\xe1\x26\x7e\x11\x51\x75\x81\xb3\x84\x81\xb0\xce\x17\x60\x66\x3a\x3d\x56\x4e\xf8\x0e\x65\x5b\x41\x39\x53\x3c\xe8\xe9\xd2\x4d\x20\x5f\x06\x8c\xa4\x03\xc9\x5c\x69\xb7\xf7\x70\x76\xf8\xd6\x66\x53\x14\xc7\xcf\xdc\xf8\xc2\x7d\x98\x99\xe3\x99\x57\xee\xbf\x3f\x6f\xc7\x58\x61\x85\x7a\x91\xe7\x85\x83\xf9\xd2\x8e\xcb\x62\xf7\x4b\x7b\x4f\x47\x16\xf7\x36\xe5\x1b\xfb\x9e\x2d\xcd\x28\x9c\xbc\x1f\xe7\x72\xcd\xae\x3e\x26\xe1\xe4\xeb\xfc\x98\x3d\x39\x5b\xa7\xa4\xa3\x57\x3d\x2b\x28\x24\x9b\x3b\xa1\x00\xbd\xf9\x23\x70\xf2\x2d\xe6\x9b\xdc\xdf\x98\x75\x44\xce\x06\x0c\x1a\x1d\x34\xec\x8c\x70\x00\x74\x35\x74\x68\x40\xae\xf6\x6c\x9c\xc4\x1f\x21\x45\xaa\x61\xcd\x61\xf0\x38\xf0\x16\x1d\x81\x65\xac\x57\x68\xd1\xe9\xb6\x7a\x0a\xca\xb2\x38\x9a\x67\xf5\x94\xa6\x00\xd8\x53\x58\xf5\xdb\x3a\x10\x0a\xb5\xcb\x0d\x49\xfb\xd7\x9a\xd8\x2d\x1e\xf3\xbb\xdf\xae\x3a\x2a\x17\x29\xc8\x43\x3b\xa5\x9f\xad\x34\xb6\x1b\x93\x9a\x3f\xcb\xb2\x8d\x9e\x33\xbc\xfa\xe1\xea\x22\xe0\x1e\x2f\xbf\x6a\x51\x50\x52\x04\x5e\x8f\xf9\xbe\x83\xb6\xec\xa2\xe7\xa0\xbe\x95\x7e\x51\xc7\xda\x26\x0f\xff\x0b\xc4\xb6\x3d\x17\x35\x64\x38\x31\x07\x3e\x69\x82\x3f\x6e\xc2\xbc\x33\x7d\xff\x5e\x5d\xa0\xd7\xf3\x3e\x5b\xb7\x4b\x68\xbf\x66\x8a\x3a\xbb\x69\xd0\x2f\xf3\x2d\xb6\x76\xa5\x86\x4b\xd7\xf9\xd0\x73\x64\xc7\x73\xff\x67\xec\x27\x03\xa1\xd4\xa9\xb1\xfc\x6a\x5c\x6d\xdc\xe6\x72\x6b\x3a\xf5\xc2\x17\x1d\x84\x2d\xbd\xa7\x75\xeb\x5c\x7d\xed\xbe\x83\x51\x00\x9c\xba\xdf\xa5\x50\x31\xad\x3e\x91\x96\xd6\xaf\xce\x3a\xf9\xeb\xfd\xfb\xdf\x00\x00\x00\xff\xff\xbc\x0b\x4d\x63\x13\x0d\x00\x00"), + }, + "/charts/control-plane/packet-ccm/templates/loadbalancer.yaml": &vfsgen۰CompressedFileInfo{ + name: "loadbalancer.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 5592, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x58\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\xf0\x66\xa0\x80\x9c\xec\xab\xbb\x10\xb0\x07\x6f\x92\xdd\x0d\xe0\x38\x86\x9d\xb6\x28\x8a\x22\xa0\xa9\xb1\xcd\x9a\xe2\x10\x7c\x38\x71\xd1\x1f\x5f\x90\x7a\x58\x92\xed\xf5\x6b\xd3\xa2\xa8\x2e\x16\x87\xd4\xcc\x70\xbe\xe1\xc7\x19\x53\xc5\x7f\x06\x6d\x38\xca\x84\x2c\x5f\x45\x0b\x2e\xd3\x84\x0c\x68\x06\x46\x51\x06\x51\x06\x96\xa6\xd4\xd2\x24\x22\x44\xd0\x09\x08\xe3\xdf\x08\xa1\x4a\x25\xc4\x4f\x0a\x31\x89\x08\x91\x34\x83\x6a\x1c\x9b\x95\xb1\x90\x45\x71\x1c\x47\x75\xf5\x0a\x05\x67\xab\x8b\xe5\xab\x09\x58\x5a\x9a\x1a\x62\x3a\x06\xe6\x34\xb7\xab\x61\x98\x3f\xce\xa4\x51\x40\x17\xa0\x8b\x71\xf0\x79\xc3\x0f\xa3\x80\x79\x15\x54\x08\x7c\x1a\x6a\xbe\xe4\x02\x66\x70\x63\x18\x15\xd4\x06\xcf\xa6\x54\x18\x28\x57\x40\x7a\x45\x15\x9d\x70\xc1\x2d\x87\x60\x3b\x26\x83\x9b\x87\xc7\xde\xf5\xdd\xed\xa0\x1a\x8d\x7a\xbf\x84\xf7\xf1\xaf\xe3\x6a\x66\x6a\xbe\x68\x74\x2a\x77\x57\x3b\x01\x09\x19\x39\xd9\x33\x3d\xb9\x8a\x08\x99\xa3\xb1\x03\xb0\x4f\xa8\x17\x09\xb1\xda\x41\x21\x1b\xa2\xb6\x85\x99\x8c\x3e\x27\xe4\xfd\xdb\xf7\xaf\x83\x86\x8c\xcb\x6a\xa4\x4a\xb7\xd3\xea\x5b\xed\x55\xff\x64\x40\xef\xb0\x67\xa0\xcf\xa5\x7b\xde\x35\xeb\x94\x12\x90\x81\xb4\x54\x04\xaf\xcd\x8e\x85\x4b\x14\x2e\x2b\xe3\xd0\xf9\xa1\xb3\x01\x6b\x95\x35\x63\xd0\x4b\xce\xa0\xc7\x18\x3a\x69\x8f\xc3\x91\xa1\xb4\x1a\x85\xd8\x03\xe5\x8b\xd8\x3e\x24\x87\xda\x86\xf5\x84\xb2\x2e\x75\x76\x8e\x9a\xff\x19\xb2\xa8\xbb\xf8\x60\xba\x1c\x2f\x2a\x97\xae\x84\x33\x16\xf4\x08\xc5\x59\xc7\x28\xa9\x85\xc6\x83\x63\x92\x28\x26\x54\xf1\x35\x68\x31\xe9\x74\x7c\x3e\x80\x41\xa7\x59\x09\x95\xc9\x23\x62\x3c\x84\xa0\x27\x85\x74\x06\x36\xfc\x0a\x6e\xf2\x17\x45\x2d\x9b\x87\x37\xa7\x52\x6a\x21\xbc\x3e\x05\xe1\x51\x66\x2e\x8c\xa5\xd6\xb5\xac\x15\x2a\x0f\x52\x04\x4b\x90\xb6\xf5\x3d\xd3\x50\xba\x94\xfb\xf9\x2f\xc2\x50\x66\xc9\x89\x18\xc4\x04\x64\xaa\x90\xe7\x7b\x8c\x89\xc4\x74\x2f\x36\x47\xc0\x70\x58\xf4\xda\x9a\xe0\xd9\x82\xf4\x91\x34\x35\x8d\x81\xfc\x0b\xff\xab\x93\xd1\x32\xa7\x30\x35\x05\x6b\x07\x56\xe7\xed\xbd\x38\x03\xa7\x80\x75\x3c\x4a\x0c\xe5\x94\xcf\xe2\x10\xaa\x3d\x67\xf8\x18\xe4\x72\xb5\x19\x55\x07\x62\x74\x56\x5e\x7e\xe2\x32\xe5\x72\xf6\xdd\x58\x02\x05\x8c\x60\x1a\xae\xbc\x62\xa7\xdf\xf0\x28\x22\x64\xf3\xa0\xec\x37\x62\xdc\xe4\x0f\x60\x36\xc4\x73\x2b\x05\x9f\xc9\xec\xff\x7c\x04\xab\x03\xfe\x62\xe1\x2b\x2d\x1c\x1c\xbb\x17\xba\x99\x4e\x8e\xd8\x31\x87\xed\xb4\x28\x36\xc2\xd7\x32\x77\x4a\xca\x1d\x18\xe0\x76\x10\xa9\x52\x66\x1d\xaf\x6b\x0a\x19\xca\x31\x1c\x5c\x57\x10\xc2\x30\x53\x28\x41\xda\x36\x88\xc7\x95\xac\x06\x04\x30\x8b\x45\x89\x97\xf9\x40\xf4\x6b\x66\xb7\x18\xde\x61\xda\x42\xa6\x04\xb5\x50\x28\xaa\x6d\x23\x68\x91\x12\x6d\xc0\xa3\x52\xec\x4b\x4e\xcc\xc0\xce\xc1\x85\xe4\x51\xa8\x6d\x42\x3a\xbe\x1c\xed\xec\x58\x62\x98\xa6\x0a\x12\xd2\xf1\x05\x6a\xb9\x48\x34\xdc\xdd\xea\xf0\x0e\x97\x09\x29\xa3\x90\x2f\x91\x96\x72\x09\xba\xd2\x15\x13\xaa\x67\x35\xcd\x31\x89\x63\xef\xe5\xc7\xaa\x80\x2e\xa5\x79\x1e\x7d\xcc\x7f\xaa\x19\x90\xcb\xfa\xc7\x39\x38\x77\x37\x0f\xbd\x7e\xff\xd3\xe3\xe0\xfe\xfa\xe6\x71\xd0\xbb\xbb\xa9\x56\x10\xb2\xa4\xc2\xc1\x67\x8d\x59\x52\x13\x12\x32\xe5\x20\xd2\x22\xd5\x37\xe4\x43\x6a\xe7\x61\x53\xac\xeb\x6f\x7c\x7f\xb7\xee\xb4\xf9\xf5\x7e\xfc\xf0\x7d\xcc\x85\x52\xac\xeb\x9b\x8b\xdb\x61\xb5\x8c\x67\x74\xb6\xce\xb4\x8b\x22\xd0\xc9\xf2\xb2\xfb\xa1\xfb\xba\xb9\x6a\xe8\x84\xc8\xbb\xb1\x84\xdc\x4e\x07\x68\x87\x1a\x0c\x84\x73\x93\x3f\xed\x4c\x2e\xd2\xa1\xec\x64\xca\xfd\x55\xa0\x0d\x43\xf6\x34\x80\xa9\x38\x12\x25\xb7\xa8\x3d\x17\x95\x13\x8d\xbb\xb8\x7c\x04\xcf\xb8\x35\xcd\x5d\x33\xe5\x12\xf2\xea\xf2\x32\x6b\x48\x33\xc8\x50\xaf\xc2\xc4\x1d\xaf\x66\xca\x7a\xe5\x0a\xa5\x85\x67\x5b\x57\xb4\xbf\x31\xac\x0c\xb6\x3a\xc3\x9a\x8e\x34\x6d\x0a\x9a\x4d\x63\x5b\x9e\xb7\x8f\x75\x69\xbd\x91\x5c\x3f\xa9\x46\xd5\xd6\xdb\xeb\xf7\x6b\x12\x0d\x34\xbd\x97\x62\x35\x42\xb4\x9f\xb9\x80\xe2\xae\x29\xbb\x44\xff\x6c\xeb\x3c\x03\x00\x98\xc2\xb8\xc1\x30\xfe\xf1\xdd\x79\x77\xe1\x26\xa0\x25\x58\x08\x27\x1b\x4d\x42\x84\x6f\x26\xa3\x32\x96\x75\x36\x1d\x6c\x49\x06\x0b\x3a\xe3\x32\x44\xf1\x8b\xa6\x0c\x86\xa0\x79\xe8\xf4\x51\xa6\x26\x21\x97\xe5\x32\x14\xa0\x9b\xc4\x13\x13\x98\x4e\x81\xd9\x84\x0c\x70\xcc\xe6\x90\x3a\xb1\x46\x60\x01\xab\x24\xb8\x1d\xfb\xfb\xa5\xe5\x65\x46\xfd\x05\xbc\x8f\xcb\x41\x09\x5c\xf9\xbe\xf7\x24\x32\xdf\xa8\x66\x0e\x2e\x70\x4a\x32\xd3\xb0\xe4\xde\xb1\xaf\xdc\x58\xd4\xab\xbe\x4f\xeb\x84\xbc\x39\x9f\xec\x1b\x7e\xfc\x67\xf8\xbe\xe1\xf5\x4b\x53\x7e\x8b\x02\xd7\xb6\xcf\x61\xc1\xd6\x0e\xc8\xff\x9c\x08\xb7\x31\x16\x15\xe2\x38\xc6\x3a\x83\x99\x76\x6c\x2e\xfc\x5b\x36\x40\xe9\x8d\x36\x4c\xd5\xff\x48\x23\x3f\xbe\x7b\xf7\xe6\xed\x37\x48\x6e\x03\xeb\xbd\x3c\xb7\xf3\x1f\xab\xab\x90\x9a\x77\x54\x35\x78\x68\x37\x7f\x34\x8b\xe2\xa8\xfc\x20\x1f\x26\xe4\xaf\xe0\x90\x02\x7f\x5a\xc8\x6f\xbf\x47\x7f\x07\x00\x00\xff\xff\x49\xef\x8c\xd9\xd8\x15\x00\x00"), + }, + "/charts/control-plane/packet-ccm/templates/secret.yaml": &vfsgen۰CompressedFileInfo{ + name: "secret.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 215, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\x0a\xc3\x30\x0c\x04\xe0\xdd\x4f\x71\x78\x6e\x02\x5d\x3d\x67\x29\x1d\x0b\xd9\x55\x47\x0d\xce\x8f\x6d\x2c\xa7\x10\xd2\xbc\x7b\xc9\x0f\x1d\xba\x68\x38\x7d\xd2\x51\x74\x35\x27\x71\xc1\x1b\xbc\xaf\xaa\x77\xbe\x31\x78\xb0\x4d\x9c\xd5\xc8\x99\x1a\xca\x64\x14\xe0\x69\x64\x83\x48\xb6\xe7\x5c\xd8\x21\x4c\x4d\x61\x83\x7f\xb9\xf6\xdc\x49\x24\xcb\x06\xfd\xf4\xe4\x42\x66\xc9\x3c\x2a\xc9\xc9\xf9\xb6\x3a\x1f\x1c\x37\x42\x65\x27\x5b\xd7\x47\x01\xc0\xb2\x4f\x4d\xd1\xdd\x79\xd6\x06\x7a\x59\x50\xd6\x34\x4c\x2c\xe5\x11\x62\x5d\xf5\xe5\x50\x31\x85\x8e\x6d\xbe\x55\x7f\xf0\x97\x6f\x76\xa7\xab\xfa\x06\x00\x00\xff\xff\xa2\x33\x43\x3b\xd7\x00\x00\x00"), + }, + "/charts/control-plane/packet-ccm/values.yaml": &vfsgen۰FileInfo{ + name: "values.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + content: []byte("\x61\x70\x69\x4b\x65\x79\x3a\x0a\x70\x72\x6f\x6a\x65\x63\x74\x49\x44\x3a\x0a"), + }, "/charts/control-plane/pod-checkpointer": &vfsgen۰DirInfo{ name: "pod-checkpointer", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -5712,9 +5760,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bootkube/assets.tf": &vfsgen۰CompressedFileInfo{ name: "assets.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 8353, + uncompressedSize: 8659, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5d\x6f\xdb\xb8\x12\x7d\xf7\xaf\x18\x28\x2d\x62\x5f\xf8\x23\xed\xed\xbd\x8b\x06\x08\x8a\x7d\x5a\x14\xdb\x87\xa2\xe8\x3e\x05\x81\x40\x53\x63\x9b\x1b\x99\xd4\x92\x54\x9a\x20\xf0\x7f\x5f\x90\xd4\x07\x25\x51\x96\x62\x37\xbb\x79\x69\x25\xce\x1c\x0e\x67\x8e\xce\x0c\x13\x89\x4a\xe4\x92\x22\x44\xa9\xa0\x24\x8d\x37\x2c\xc5\x08\xa2\xb5\x10\x5a\x69\x49\xb2\x05\xc9\x98\x42\xf9\x80\x32\x82\xe7\x09\x80\x59\xe7\x64\x8f\x70\x03\xd1\x9b\xe7\x07\x22\x97\x44\x29\xd4\x71\xc2\xe4\x61\x55\x7b\xed\x09\x67\x1b\x54\x5a\xad\x02\x48\xcb\x27\xb2\x4f\xa3\x09\x00\x15\x5c\x23\xd7\x70\x03\x1a\xf7\x59\x4a\x34\x1a\xf8\x69\xf4\xe6\x39\x23\x7a\xb7\xdc\x8b\x24\x4f\xf1\xb0\x2a\x63\x54\x2f\xdb\x60\x6e\x03\x06\xb8\xcf\xd7\x18\x57\x6b\x31\xdb\x93\xad\x09\xdf\xc4\x6e\x02\x20\x8c\x97\x6f\xd5\x6d\xd4\x34\x8e\xee\x2c\x02\x4d\x45\x9e\xc4\x99\x14\x0f\x2c\x41\x09\xee\xa7\x40\x68\x2c\x59\x6b\xd4\x34\x89\x9d\xbf\x02\xa8\xac\xff\x14\x8c\x4f\xa3\x79\x34\x87\x8d\x90\x7b\xa2\x53\xa6\xf4\x34\xda\x69\x9d\xa9\xeb\xd5\xea\xad\xba\x7e\xff\xdf\x5f\x3e\x46\x73\x8b\xea\x43\xcc\x66\x16\xd5\x3c\x31\x8a\x31\x65\x89\xf4\x50\x8d\xb5\xbf\x64\x6d\xb5\xcc\x95\xc6\x24\xa6\x28\xb5\x32\xa5\xa9\x6d\x3b\x4b\x2e\x64\x4e\xd6\x29\xc6\x3a\x55\x71\x95\xce\xc2\x21\xb4\x34\x01\x38\xcc\x26\x87\xc9\x64\x90\x3d\x26\xc1\x52\xa4\x29\x4a\x53\x31\xb2\xfd\x09\x34\xea\x42\xbe\x16\x9f\xfa\x76\x6a\x10\xab\x36\x8a\x0b\xa3\x31\x0c\xeb\x7a\x15\x54\xcb\x44\xd2\x2c\x71\xe3\xc7\x61\x96\x36\xfd\xbc\x18\x22\x48\x90\xd0\x2d\xa7\x00\xb3\x83\xbc\x6a\xb9\x85\x08\x36\x92\x2c\x8a\xee\xd0\x54\xe8\x7c\x8e\x54\x48\xaf\x45\x8d\xd6\x06\x0d\x46\x54\x6b\x63\x88\x50\x9f\xf9\x6e\x28\x51\xc6\xfe\x45\x72\x4c\x77\x44\x6a\xb5\xb2\x7e\xea\x49\x69\xdc\xaf\x9a\x18\xa7\x67\xc7\x87\x7e\x89\xec\xd6\xec\x1a\xa7\xbc\x41\x2d\xfd\x19\x72\xda\xf7\x05\xf4\x72\xbf\xef\x3b\x7b\x89\x04\x0f\xa8\x30\x25\xf6\x45\xe0\x23\x5e\x13\x85\xff\xff\x80\x9c\x8a\x04\xa7\x46\x8a\x15\xa6\x9b\x58\xb1\x2d\x2f\x40\x96\xb6\x12\x94\x2c\xcd\x43\x9c\xe1\xde\x9d\xb2\x4e\xff\x3d\x3e\x1d\x47\xcc\x24\x7b\x20\x1a\x8d\xe1\xb2\xae\xa8\xf7\x36\x84\xda\x0c\x37\x80\x6a\x09\x9c\x3e\x35\x42\xad\xd1\x9b\xc1\x16\x39\x24\x94\x8a\x9c\xeb\x38\xcb\xd7\xa3\x82\x2d\xdc\x16\x85\xdf\x32\xcb\xd7\x29\xa3\xcd\x88\x2d\x01\x02\xe9\x1d\x93\x59\xe3\xdb\xcd\xac\x43\x4c\x19\x72\xdd\x40\x1d\x99\x03\xe7\x79\x04\xd3\xaf\xd7\x40\x02\x0a\xac\x60\xa9\x8a\xee\x4d\xb6\x5b\x89\x5b\xa2\x99\xe0\x3e\x0d\xbb\xab\xae\xbe\xf5\x73\x23\x69\x7d\x4e\x70\x73\x63\xf8\x8e\xf0\xa9\x19\xa8\xfb\x44\x21\x9a\x43\x30\xb1\x1e\x82\xc9\xef\x7f\xea\x6c\xcc\xe0\x1a\xa2\xa8\x1b\x8b\x97\xee\xf3\x62\x09\xd2\xd2\x0f\xc7\xa5\x74\x74\x48\xb6\x5a\xe7\x85\xd4\xf8\xfe\x42\xa1\xb4\xeb\xeb\x45\x24\x31\x4b\x19\x25\xaa\x2b\x1c\x29\xf2\xad\xde\x4d\x3b\x22\xe8\xc8\xf1\xa8\x25\x89\x37\x29\xd9\x2a\xe8\x4a\x5a\x4b\xbf\x3d\xe3\xfe\x91\xb1\x4d\x92\xf6\xd4\x08\xc0\xb6\x5c\x48\x8c\x1f\xff\x77\xf5\x31\xa6\x3c\xa6\x3b\xa4\xf7\xb5\x5b\x68\x75\xa8\x2d\x66\x22\x59\x58\xc3\x4c\x30\xae\x4f\x6d\x8c\x6d\x94\xb3\x5b\x63\x18\xb0\x6c\x8e\x76\x84\xf3\x56\x07\x46\x85\xb6\xb9\x37\x2c\x5c\xc0\x57\x91\xe5\x26\x2e\xdb\x71\x25\x47\x8d\x0a\x6c\x10\xf0\x40\xd2\x1c\x95\xcd\x05\x98\x64\x24\x9e\x89\x8d\x67\x79\x6c\xd6\x70\x76\xa7\xcf\x19\xde\x3e\xe7\xce\x18\x3e\xd4\x6b\x4e\xdf\xc1\xf9\xad\x3d\x1b\x8c\x19\xe4\x0a\xa8\x4c\x8a\xc7\xa7\x36\xcc\x20\x94\xf5\x2a\xaf\x9e\x42\x62\xc2\x55\x08\xc3\xc2\x14\xd5\xe8\x22\x15\x8e\xd1\xdd\xa1\x6d\x41\x24\xdd\x1d\xa2\x02\xdd\x26\x22\xce\x52\xc2\x31\x6e\xcb\xc8\x0d\xec\xc9\xe3\xf4\xfd\xbc\x57\x45\x8e\x8f\x52\x8d\x93\x76\x07\xaa\x7f\xea\xa6\x63\x26\x2d\x19\x27\x62\x4f\x18\x8f\x55\xbe\xd9\xb0\xc7\x4e\x70\x01\x9b\xa6\x37\x57\x71\x09\xcd\xb2\xda\xdb\x6c\xb3\x13\x4a\x4f\xdb\x7b\xcf\xe1\xdd\xd5\xec\xac\x3b\x53\xff\x38\x58\x7a\x9e\x3a\x14\x52\xd2\x9a\x06\x87\x70\xfd\xd6\x54\x42\x06\xa7\x0d\xc7\x8b\x7e\x64\x37\xa9\x37\xa6\xf4\xb7\xaa\x98\xd1\x49\xc6\x4a\x5e\xdd\x5e\xdd\x15\x73\xfb\xa3\x46\xc9\x49\xea\xb5\xa1\x4c\x48\x1d\x1c\x17\x5b\x47\x7a\xe9\xd0\x18\x1c\x9e\x0c\xd7\x91\x27\x56\x74\x03\xcd\xb5\xfa\x1e\x2a\x9b\xa3\x9d\xb1\xe1\x76\xec\xb7\x2a\x56\x89\x95\x95\xb9\x6a\x31\x56\x48\x25\x6a\xf5\x62\xf9\xf4\xee\xac\x0e\xa1\xa9\xa2\xf5\x06\x5a\xdc\x23\x37\xf8\xb7\x13\x17\xe9\x46\x48\xb0\x2f\x81\x71\x1b\x74\xc7\xf6\xba\xb0\x7c\x9e\x94\xa7\xb3\x0b\x31\x4b\x8a\xa3\xda\xc7\x65\xf9\xb2\x65\xe5\xe2\x69\x59\xb9\x97\x85\xe5\xc1\xfe\x1b\xec\x75\x9d\x63\xf5\xb6\xbc\x70\x02\x7a\x3b\x5f\xc7\xdc\x35\x40\x4b\x93\x23\xc5\xf3\x86\xbc\x77\x70\x0d\x57\x93\x13\x9a\x66\x4f\xa9\xbc\xde\x69\x26\x3a\x13\xec\xb2\xc3\x8b\x16\x6f\x0c\x6c\x8a\x65\xc0\x09\x53\x36\x62\x2b\x10\x46\xaf\x30\x89\x2b\x8b\x1b\xd8\x90\x54\xd5\x81\x03\x5c\xc0\x37\xe4\x46\xca\x0b\x1b\x1b\x86\xa5\x43\xe9\x64\x83\xaf\xb7\x89\xcf\xe9\xed\xe5\x06\x8d\xc6\x6e\x40\x3b\xdd\xb7\xb7\xd7\x35\x3c\xa2\xbb\xc3\xe2\x58\xcb\x0b\x4b\xfa\x28\x2d\xef\x69\x26\x43\x5d\xa4\x47\x10\x06\x26\xe5\x9e\xb6\xda\xd3\x4f\x0f\xb3\x49\x51\x0f\x2a\xf8\x86\x6d\xe3\x93\x4b\x53\x63\x2c\x0a\x8c\xaa\x32\x8d\x8e\x74\x7a\x03\xaa\x42\x73\x17\xb9\x51\x17\xe6\x92\x29\x61\xa4\xe2\xfe\x35\xd8\xb9\x0c\xc2\x70\xe7\xfa\xa9\x8d\xaa\x53\x18\x92\xec\x19\x3f\xab\x2c\x16\xa1\x2a\x8a\x55\x98\x36\x3b\x1c\x15\xcd\xd2\xbf\x5d\x38\x1b\xec\x19\x65\x73\xfe\xe7\x14\xcd\x29\xa6\x57\xb6\xb8\x2c\xd7\xc8\xfa\x75\x6f\x59\x95\x06\xf6\x5c\xb1\x4a\x4d\x3b\x7a\xbf\x32\x5f\x56\xa3\xb7\xb8\x40\x8b\xa5\x49\x53\xf6\xdd\x2f\x0b\xa2\x39\xdc\x1a\x1d\x66\xa6\x25\x4b\xc2\xb7\x38\xbd\x9a\xc3\xbb\x19\x5c\x37\x9d\x4b\x7a\xdd\xcd\x4e\xbc\xbb\x55\xa2\xec\x0e\xff\x1b\x72\x94\x44\x17\xa7\x73\x34\xb4\x0d\xe1\x77\x67\xab\x8e\x9d\xb3\x25\x26\xc5\x91\x5b\x0d\xad\x5f\xb9\x86\x4e\x40\x72\xbd\x0b\x89\x56\x3b\x72\x4b\x24\x3f\xfe\xa9\xd1\x5b\xf3\x0c\x12\xff\xca\x99\x44\x05\x4c\xc3\x1a\x81\x68\x68\x81\xce\x26\x17\x50\xd2\x6a\xcb\xf4\x2e\x5f\x2f\xa9\xf0\x6f\xb9\x0b\xc6\x69\xbe\x26\x5a\xc8\x55\x89\xba\x5a\xa7\x62\xbd\xda\x13\xf3\x25\xae\xb2\xfb\xad\xb7\x50\xfc\x67\xb9\x15\x17\x5f\x3e\xbc\x1f\x91\x3b\xf7\xc5\x0f\x66\xae\x21\x2d\x2f\xcc\xdb\x70\xbe\x18\x07\xe2\x13\x9d\x6c\x34\x4a\xd0\x3b\x2c\xfb\xe2\xd8\x83\x2c\xac\xff\x6b\x1c\xa7\xe8\xfb\x9e\xfc\x1d\x16\x8d\xe3\x7d\xde\xb4\x35\xbc\x12\x03\x60\x8a\x5f\x6a\x50\xa8\xe7\x90\x2b\x6c\xdb\x2d\x27\x17\xf0\x7d\xc7\x14\x30\x65\x99\xaf\xf2\xcc\x48\x04\xe3\x5b\x50\x98\x11\x93\x33\xf8\xf5\xeb\xe7\x52\x94\xfe\xf8\xf6\xc5\xd9\x55\xf0\xee\x17\x79\xca\xa5\x71\x4d\xe8\xfd\x0f\x22\x93\x05\x15\xfb\x8c\x68\xb6\x4e\x11\x7e\x90\x27\xb7\x09\xda\xfd\xc5\x06\x54\x96\x32\x3d\x9d\x01\xe1\x89\x13\x80\x19\xec\x50\xa2\x09\x61\x8d\x94\x18\xab\xef\x28\x25\x31\xca\x77\xa9\x4c\x2e\x13\xa6\x99\x30\xbb\x89\xcc\x94\x51\x48\x98\x5e\x7e\xba\x9c\x01\x25\x9c\x0b\x43\xee\xc9\x85\x01\x4f\xe0\x07\xd3\x3b\x48\x99\xd2\x6a\xe9\xcf\x8d\xc1\xc4\xdc\x14\x81\xd8\xbf\xb6\xd4\x7f\x77\xe9\x4b\xe4\xcc\xcc\x94\x51\x04\x9f\xfa\x6d\x8d\x60\x8d\x00\x32\xd2\xfb\x77\x00\x00\x00\xff\xff\xe7\xb3\x6c\xcc\xa1\x20\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5b\x6f\xdb\xb8\x12\x7e\xf7\xaf\x18\x28\x2d\x62\x1f\xf8\x92\xf6\xf4\x9c\x83\x06\x08\x8a\xf3\xb4\x28\xb6\x0f\x45\xd1\x7d\x0a\x02\x81\xa6\xc6\x36\x1b\x99\xd4\x92\x54\x9a\x20\xf0\x7f\x5f\xf0\xa2\x3b\x65\x29\x76\xb3\xdb\x97\x5d\x8b\x33\x1f\x87\x33\x9f\xbe\x19\x2a\x12\x95\xc8\x25\x45\x88\x52\x41\x49\x1a\x6f\x58\x8a\x11\x44\x6b\x21\xb4\xd2\x92\x64\x0b\x92\x31\x85\xf2\x01\x65\x04\xcf\x13\x00\xb3\xce\xc9\x1e\xe1\x06\xa2\x37\xcf\x0f\x44\x2e\x89\x52\xa8\xe3\x84\xc9\xc3\xaa\xf2\xda\x13\xce\x36\xa8\xb4\x5a\x05\x90\x96\x4f\x64\x9f\x46\x13\x00\x2a\xb8\x46\xae\xe1\x06\x34\xee\xb3\x94\x68\x34\xf0\xd3\xe8\xcd\x73\x46\xf4\x6e\xb9\x17\x49\x9e\xe2\x61\x55\xc4\xa8\x5e\xb6\xc1\xdc\x06\x0c\x70\x9f\xaf\x31\x2e\xd7\x62\xb6\x27\x5b\x13\xbe\x89\xdd\x04\x40\x18\x2f\x9e\xaa\xdb\xa8\x69\x1c\xdd\x59\x04\x9a\x8a\x3c\x89\x33\x29\x1e\x58\x82\x12\xdc\x3f\x8f\xd0\x58\xb2\xd6\xa8\x69\x12\x3b\x7f\x05\x50\x5a\xff\x10\x8c\x4f\xa3\x79\x34\x87\x8d\x90\x7b\xa2\x53\xa6\xf4\x34\xda\x69\x9d\xa9\xeb\xd5\xea\xad\xba\x7e\xff\xef\xff\x7d\x8c\xe6\x16\xb5\x0e\x31\x9b\x59\x54\xf3\x8b\x51\x8c\x29\x4b\x64\x0d\xd5\x58\xd7\x97\xac\xad\x96\xb9\xd2\x98\xc4\x14\xa5\x56\xa6\x34\x95\x6d\x67\xc9\x85\xcc\xc9\x3a\xc5\x58\xa7\x2a\x2e\xd3\xe9\x1d\x42\x4b\x13\x80\xc3\x6c\x72\x98\x4c\x06\xd9\x63\x12\x2c\x45\x9a\xa2\x34\x15\x23\xdb\x5f\x40\xa3\x2e\xe4\x6b\xf1\xa9\x6f\xa7\x06\xb1\x2a\xa3\xd8\x1b\x8d\x61\x58\xd7\xcb\x53\x2d\x13\x49\xb3\xc4\x8d\x7f\x0e\xb3\xb0\xe9\xe7\xc5\x10\x41\x82\x84\x6e\x39\x05\x98\x1d\xe4\x55\xcb\x2d\x44\xb0\x91\x64\x51\x74\x87\xa6\x42\xe7\x73\xa4\x44\x7a\x2d\x6a\xb4\x36\x68\x30\xa2\x5c\x1b\x43\x84\xea\xcc\x77\x43\x89\x32\xf6\x2f\x92\x63\xba\x23\x52\xab\x95\xf5\x53\x4f\x4a\xe3\x7e\xd5\xc4\x38\x3d\x3b\x75\xe8\x97\xc8\x6e\xc5\xae\x71\xca\x1b\xd4\xd2\x5f\x21\xa7\x7d\x6f\x40\x2f\xf7\xfb\xde\xb3\x97\x48\xf0\x80\x0a\x53\x62\x1f\x04\x5e\xe2\x35\x51\xf8\xdf\x0f\xc8\xa9\x48\x70\x6a\xa4\x58\x61\xba\x89\x15\xdb\x72\x0f\xb2\xb4\x95\xa0\x64\x69\x7e\xc4\x19\xee\xdd\x29\xab\xf4\xdf\xe3\xd3\x71\xc4\x4c\xb2\x07\xa2\xd1\x18\x2e\xab\x8a\xd6\x9e\x86\x50\x9b\xe1\x06\x50\x2d\x81\xd3\xa7\x46\xa8\x15\x7a\x33\x58\x9f\x43\x42\xa9\xc8\xb9\x8e\xb3\x7c\x3d\x2a\x58\xef\xb6\xf0\x7e\xcb\x2c\x5f\xa7\x8c\x36\x23\xb6\x04\x08\xa4\x77\x4c\x66\x8d\x6f\x37\xb3\x0e\x31\x65\xc8\x75\x03\x75\x64\x0e\x9c\xe7\x11\xcc\x7a\xbd\x06\x12\xe0\xb1\x82\xa5\xf2\xdd\x9b\x6c\xb7\x12\xb7\x44\x33\xc1\xeb\x34\xec\xae\xba\xfa\x56\xbf\x1b\x49\xeb\x73\x82\x9b\x1b\xc3\x77\x84\x4f\xcd\x40\xdd\x2b\x0a\xd1\x1c\x82\x89\xad\x21\x98\xfc\xfe\xab\xca\xc6\x0c\xae\x21\x8a\xba\xb1\xd4\xd2\x7d\x5e\x2c\x41\x5a\xd6\xc3\x71\x29\x1d\x1d\x92\xad\xd6\x79\x21\x35\xde\xbf\x50\x28\xed\xfa\xd6\x22\x92\x98\xa5\x8c\x12\xd5\x15\x8e\x14\xf9\x56\xef\xa6\x1d\x11\x74\xe4\x78\xd4\x92\xc4\x9b\x94\x6c\x15\x74\x25\xad\xa5\xdf\x35\xe3\xfe\x91\xb1\x4d\x92\xf6\xd4\x08\xc0\xb6\x5c\x48\x8c\x1f\xff\x73\xf5\x31\xa6\x3c\xa6\x3b\xa4\xf7\x95\x5b\x68\x75\xa8\x2d\x66\x22\x59\x58\xc3\x4c\x30\xae\x4f\x6d\x8c\x6d\x94\xb3\x5b\x63\x18\xb0\x68\x8e\x76\x84\xab\xad\x0e\x8c\x0a\x6d\xf3\xda\xb0\x70\x01\x5f\x45\x96\x9b\xb8\x6c\xc7\x95\x1c\x35\x2a\xb0\x41\xc0\x03\x49\x73\x54\x36\x17\x60\x92\x91\xd4\x4c\x6c\x3c\xcb\x63\xb3\x86\xb3\x3b\x7d\xce\xa8\xed\x73\xee\x8c\x51\x87\x7a\xcd\xe9\x3b\x38\xbf\xb5\x67\x83\x31\x83\x9c\x87\xca\xa4\x78\x7c\x6a\xc3\x0c\x42\x59\xaf\xe2\xea\x29\x24\x26\x5c\x85\x30\x2c\x8c\xaf\x46\x17\xc9\x3b\x46\x77\x87\xb6\x05\x91\x74\x77\x88\x3c\xba\x4d\x44\x9c\xa5\x84\x63\xdc\x96\x91\x1b\xd8\x93\xc7\xe9\xfb\x79\xaf\x8a\x1c\x1f\xa5\x1a\x27\xed\x0e\x54\x7f\xd7\x4d\xc7\x4c\x5a\x32\x4e\xc4\x9e\x30\x1e\xab\x7c\xb3\x61\x8f\x9d\xe0\x02\x36\x4d\x6f\xae\xe2\x02\x9a\x65\x95\xb7\xd9\x66\x27\x94\x9e\xb6\xf7\x9e\xc3\xbb\xab\xd9\x59\x77\xa6\xfe\x71\xb0\xf0\x3c\x75\x28\xa4\xa4\x35\x0d\x0e\xe1\xd6\x5b\x53\x01\x19\x9c\x36\x1c\x2f\xfa\x91\xdd\xa4\xde\x98\xd2\xdf\x2a\x3f\xa3\x93\x8c\x15\xbc\xba\xbd\xba\xf3\x73\xfb\xa3\x46\xc9\x49\x5a\x6b\x43\x99\x90\x3a\x38\x2e\xb6\x8e\xf4\xd2\xa1\x31\x38\x3c\x19\xae\x23\x4f\xac\xe8\x06\x9a\x6b\xf9\x3e\x94\x36\x47\x3b\x63\xc3\xed\xd8\x57\x15\xab\xc4\xca\xca\x5c\xb9\x18\x2b\xa4\x12\xb5\x7a\xb1\x7c\xd6\xee\xac\x0e\xa1\xa9\xa2\xd5\x06\x5a\xdc\x23\x37\xf8\xb7\x13\x17\xe9\x46\x48\xb0\x0f\x81\x71\x1b\x74\xc7\xf6\xda\x5b\x3e\x4f\x8a\xd3\xd9\x85\x98\x25\xfe\xa8\xf6\xe7\xb2\x78\xd8\xb2\x72\xf1\xb4\xac\xdc\x43\x6f\x79\xb0\xff\x0d\xf6\xba\xce\xb1\x7a\x5b\x5e\x38\x01\xbd\x9d\xaf\x63\xee\x1a\xa0\xa5\xc9\x91\xe2\xd5\x86\xbc\x77\x70\x0d\x57\x93\x13\x9a\x66\x4f\xa9\x6a\xbd\xd3\x4c\x74\x26\xd8\x65\x87\x17\x2d\xde\x18\xd8\x14\x8b\x80\x13\xa6\x6c\xc4\x56\x20\x8c\x5e\x61\x12\x97\x16\x37\xb0\x21\xa9\xaa\x02\x07\xb8\x80\x6f\xc8\x8d\x94\x7b\x1b\x1b\x86\xa5\x43\xe1\x64\x83\xaf\xb6\x89\xcf\xe9\xed\xc5\x06\x8d\xc6\x6e\x40\x3b\xdd\xb7\xb7\xd7\x35\x3c\xa2\xbb\xc3\xe2\x58\xcb\x0b\x4b\xfa\x28\x2d\xef\x69\x26\x43\x5d\xa4\x47\x10\x06\x26\xe5\x9e\xb6\xda\xd3\x4f\x0f\xb3\x89\xaf\x07\x15\x7c\xc3\xb6\xf1\xc9\xa5\xa9\x30\x16\x1e\xa3\xac\x4c\xa3\x23\x9d\xde\x80\xca\xd0\xdc\x45\x6e\xd4\x85\xb9\x60\x4a\x18\xc9\xdf\xbf\x06\x3b\x97\x41\x18\xee\x5c\xbf\xb4\x51\x75\x0a\x43\x92\x3d\xe3\x67\x95\xc5\x22\x94\x45\xb1\x0a\xd3\x66\x87\xa3\xa2\x59\xfa\xa7\x0b\x67\x83\x3d\xa3\x6c\xce\xff\x9c\xa2\x39\xc5\xac\x95\x2d\x2e\xca\x35\xb2\x7e\xdd\x5b\x56\xa9\x81\x3d\x57\xac\x42\xd3\x8e\xde\xaf\xcc\x9b\xd5\xe8\x2d\x2e\x50\xbf\x34\x69\xca\xbe\xfb\x58\x10\xcd\xe1\xd6\xe8\x30\x33\x2d\x59\x12\xbe\xc5\xe9\xd5\x1c\xde\xcd\xe0\xba\xe9\x5c\xd0\xeb\x6e\x76\xe2\xdd\xad\x14\x65\x77\xf8\xdf\x90\xa3\x24\xda\x9f\xce\xd1\xd0\x36\x84\xdf\x9d\xad\x3a\x76\xce\x96\x98\xf8\x23\xb7\x1a\x5a\xbf\x72\x0d\x9d\x80\xe4\x7a\x17\x12\xad\x76\xe4\x96\x48\xf5\xf8\xa7\x46\x6f\xcd\x6f\x90\xf8\x67\xce\x24\x2a\x60\x1a\xd6\x08\x44\x43\x0b\x74\x36\xb9\x80\x82\x56\x5b\xa6\x77\xf9\x7a\x49\x45\xfd\x96\xbb\x60\x9c\xe6\x6b\xa2\x85\x5c\x15\xa8\xab\x75\x2a\xd6\xab\x3d\x31\x6f\xe2\x2a\xbb\xdf\xd6\x16\xfc\xff\x2c\xb7\xe2\xe2\xcb\x87\xf7\x23\x72\xe7\xde\xf8\xc1\xcc\x35\xa4\xe5\x85\x79\x1b\xce\x17\xe3\x40\xea\x44\x27\x1b\x8d\x12\xf4\x0e\x8b\xbe\x38\xf6\x20\x0b\xeb\xff\x1a\xc7\xf1\x7d\xbf\x26\x7f\x87\x45\xe3\x78\x9f\x37\x6d\x0d\x2f\xc5\x00\x98\xe2\x97\x1a\x14\xea\x39\xe4\x0a\xdb\x76\xcb\xc9\x05\x7c\xdf\x31\x05\x4c\x59\xe6\xab\x3c\x33\x12\xc1\xf8\x16\x14\x66\xc4\xe4\x0c\xfe\xff\xf5\x73\x21\x4a\x7f\x7c\xfb\xe2\xec\x4a\x78\xf7\x21\x4f\xb9\x34\xae\x09\xbd\xff\x49\x64\xb2\xa0\x62\x9f\x11\xcd\xd6\x29\xc2\x4f\xf2\xe4\x36\x41\xbb\xbf\xd8\x80\xca\x52\xa6\xa7\x33\x20\x3c\x71\x02\x30\x83\x1d\x4a\x34\x21\xac\x91\x12\x63\xf5\x1d\xa5\x24\x46\xf9\x2e\x95\xc9\x65\xc2\x34\x13\x66\x37\x91\x99\x32\x0a\x09\xd3\xcb\x4f\x97\x33\xa0\x84\x73\x61\xc8\x3d\xb9\x30\xe0\x09\xfc\x64\x7a\x07\x29\x53\x5a\x2d\xeb\x73\x63\x30\x31\x37\x3e\x10\xfb\xd7\x96\xea\xef\x2e\x7d\x89\x9c\x99\x99\x32\x8a\xe0\x53\xbf\xad\x11\xac\x11\x40\x6d\xe9\xed\x93\xdc\x8c\xd0\x7b\xd4\x0b\x4a\xf7\xc7\x55\xb7\xb2\x3b\xf1\x23\x61\x73\x9f\xb3\x3e\x0f\xb6\xa0\x8a\x6e\x6e\xf2\xe0\xaf\xb2\xae\x97\x1b\x5e\xbb\xfb\x96\xfb\x6a\x22\xc5\x0f\xa4\xda\x5c\xb1\xfc\x27\x92\xf2\x41\xd1\xac\xfe\x0a\x00\x00\xff\xff\x0e\x9d\x51\xbd\xd3\x21\x00\x00"), }, "/terraform-modules/bootkube/conditional.tf": &vfsgen۰CompressedFileInfo{ name: "conditional.tf", @@ -5726,9 +5774,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bootkube/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2292, + uncompressedSize: 2376, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\xcf\x6e\xdb\x30\x0c\xc6\xef\x7e\x0a\xc2\x41\xb1\x64\x88\x9d\x0e\x18\x76\x08\x30\xec\xb8\xc3\x76\x6b\x6f\x45\x21\x28\x12\x13\x6b\x91\x25\x41\xa2\x93\x05\x43\xdf\x7d\x90\xff\x24\x76\xea\xd4\xed\x31\x34\xf9\xe3\x17\xf1\x13\x65\x2b\x72\x15\x41\x2a\x74\x15\x08\x3d\x93\x26\xb0\x80\xfe\xa0\x04\x32\xe5\x52\xf8\x97\x00\x1c\xb8\xae\x10\xbe\x83\x50\xd2\x17\x36\xd0\xfc\xc0\x7d\xde\x25\xc5\xe0\x12\xbe\xdc\x2f\x92\x97\x24\x59\xad\xe0\x27\x1a\xf4\x9c\x50\xc2\xbe\xda\xa0\xb0\x66\xab\x76\xb0\xb5\x1e\x7e\x55\x1b\xd4\x48\x01\xe6\x2a\xc7\x1c\xb4\x3d\xa2\x07\xe7\xd5\x41\x69\xdc\x21\x50\xc1\x0d\x70\x59\x2a\xb3\x48\x3a\x51\x17\x42\xb6\x6f\xaa\x87\x82\xb4\x15\x5c\xe7\x97\x2c\xd6\x66\x31\x61\x0d\xa1\xa1\x29\x49\x75\xbb\x4e\x50\x51\x95\xdc\x40\xa8\x1c\xfa\xac\x0a\xe8\x47\x65\xd4\x15\x13\x22\xea\x9c\xbe\x84\x19\x20\x09\x09\x8f\xbf\x1f\x80\x87\x80\x14\x92\x33\x3a\x7e\x60\x82\x33\x81\xfe\xea\xbf\x91\x8e\x83\xd0\x5b\x16\xd4\xce\xa0\xac\x33\xf2\x98\x9e\x09\x9e\xc7\x1f\xcc\x61\x19\xe9\x43\x94\x56\x68\xe8\x06\xae\x56\xaa\x4f\x03\x62\x53\x30\x09\xdc\xe3\xe9\x35\x2f\x0e\x8f\x13\xc6\x8f\x1d\xa7\x17\x1a\xc5\x45\xd7\xa0\xff\x80\xbe\xa6\xe0\xb6\xbe\x16\x38\xa9\xaf\xe5\x4c\xe9\x73\xf8\x21\x75\x31\xfd\xb6\xb6\x1a\x36\xa9\xac\x66\x8c\xe8\x9a\xc1\x83\x2d\x11\x9c\xe6\xb4\xb5\xbe\x0c\x50\xf2\x13\x18\x44\x09\x64\xc1\x47\xb3\x05\xf2\x95\x20\xa0\x02\xfb\xc6\x96\xca\xa3\x20\x7d\x02\x65\x20\xfa\x38\x93\x9c\x78\x9e\xcc\xe0\xb1\xe0\x04\x82\x9b\x4f\x04\x1b\x04\x69\x0d\xc2\x51\x51\x51\xd7\x1f\xf9\x09\x08\xcb\xd8\x0c\xd9\x56\x69\x04\x65\x08\xbd\xb3\x31\x10\xa0\xac\x34\xa9\x4c\x2b\x83\xc9\x0c\x5a\x67\x07\x08\xb6\xae\xf5\xfc\x08\xc2\x96\xce\x9a\x3a\x6a\xb7\xd7\x8a\xa2\xf0\x0d\xd6\xda\x51\xe6\x97\x43\x1a\xf5\xfd\x86\x07\xfc\xf6\x15\x8d\xb0\x12\xe7\xa3\x97\x20\x92\xfb\x97\x60\xd1\x3f\xf8\xf3\x06\x98\x06\x8f\x0d\xb4\x2d\x7f\x9b\xfd\x6a\xa4\xaf\xd0\xfd\xf9\x76\xc8\xab\x11\x0f\xc8\x8d\x3b\x87\xd0\x38\x74\x4e\xf3\xb4\x20\x72\x61\xbd\x5a\xdd\x85\xf5\x5d\x48\x97\x10\x97\x2f\x77\xaa\x75\x7e\x78\xba\x7f\x6e\x62\xf8\x97\xd0\x1b\xae\x19\x77\xaa\xbd\x15\xce\x7a\x1a\xe9\xc3\x46\xb6\xd8\xad\x6e\xa8\xb1\x44\x43\xf3\x66\xcb\xf5\xfa\xb2\xae\xdf\x12\xee\x17\xd3\x0a\x66\x4d\xa7\x90\x9f\x78\xa9\x3b\x0b\x35\x4b\x58\x6b\x90\xe8\xb4\x3d\xa1\x04\x51\x70\x4f\x21\x3f\x0b\x76\x56\x66\xa2\x40\xb1\x77\xb6\x36\x24\x6b\x28\x23\x1b\xb8\x76\x6d\x7e\x9d\x9f\xf7\xd6\x70\x7f\x8c\xd9\x45\xe2\x04\x71\x98\x7d\x8b\xe7\x0d\x12\x86\xf7\xb0\x9a\xcc\x5b\x9c\x68\xaf\x31\xc8\x1f\xab\xcc\x3c\x4d\x97\xf0\x14\x8f\x4c\xc5\xbb\xed\xb9\xd9\xe1\xfc\xf2\xfa\x68\xa4\x05\xac\x61\x10\xe8\x5e\xa1\xe7\x81\x0b\x04\xd7\x4a\xd8\xb7\xfb\xf4\x54\x37\xe9\xf9\xe7\x4e\xf3\x80\xa5\xed\xde\x96\x96\xd4\x01\xdf\xcd\xbb\x94\xdc\x60\x6e\xac\xa5\x40\x9e\xbb\x2c\xa0\xf0\x48\xe3\xe7\x5a\x3b\xce\xf0\x8d\x46\x16\xaf\xdc\xb9\x08\x7e\xb4\x67\x70\x8e\xb0\x16\x03\x6b\x48\xd3\xe4\x25\xf9\x1f\x00\x00\xff\xff\x8f\x56\x28\x94\xf4\x08\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\x4d\x6f\xfb\x36\x0c\xc6\xef\xfe\x14\x84\x83\x62\xc9\x10\x3b\x1d\x30\xec\x10\x60\xd8\x71\x87\xed\xd6\xde\x8a\x42\x60\x64\x26\xd6\x22\x4b\x82\x44\x27\x0b\x86\x7d\xf7\x3f\xe4\x97\xc4\x4e\x9d\xba\x3d\x86\x26\x7f\x7c\x22\x3e\xa2\x6c\xcd\xae\x66\x48\xa5\xae\x03\x93\x17\x85\x09\x22\x90\x3f\x29\x49\x42\xb9\x14\xfe\x4b\x00\x4e\xa8\x6b\x82\xdf\x41\xaa\xc2\x97\x36\xf0\xf2\x84\x3e\xef\x93\x62\x70\x0d\xbf\x3c\xaf\x92\xff\x93\x64\xb3\x81\x3f\xc9\x90\x47\xa6\x02\x8e\xf5\x8e\xa4\x35\x7b\x75\x80\xbd\xf5\xf0\x57\xbd\x23\x4d\x1c\x60\xa9\x72\xca\x41\xdb\x33\x79\x70\x5e\x9d\x94\xa6\x03\x01\x97\x68\x00\x8b\x4a\x99\x55\xd2\x8b\xba\x11\xb2\x63\x5b\x3d\x16\xa4\xad\x44\x9d\xdf\xb2\x44\x97\x25\xa4\x35\x4c\x86\xe7\x24\x35\xed\x7a\x41\x65\x5d\xa1\x81\x50\x3b\xf2\x59\x1d\xc8\x4f\xca\x68\x2a\x66\x44\x34\x39\x43\x09\x0b\x20\x96\x05\xbc\xfe\xfd\x02\x18\x02\x71\x48\xae\xe8\xf8\x41\x48\x14\x92\xfc\xdd\x7f\x63\x1d\x07\xa1\xf7\x22\xa8\x83\xa1\xa2\xc9\xc8\x63\x7a\x26\x31\x8f\x3f\x84\xa3\x2a\xd2\xc7\x28\xad\xc8\xf0\x03\x5c\xa3\x54\x5f\x46\xc4\xb6\x60\x16\x78\xa4\xcb\x47\x5e\x1c\x1e\x32\xc5\x8f\x3d\x67\x10\x9a\xc4\x45\xd7\x90\xff\x86\xbe\xb6\xe0\xb1\xbe\x0e\x38\xab\xaf\xe3\xcc\xe9\x73\xf4\x2d\x75\x31\xfd\xb1\xb6\x06\x36\xab\xac\x61\x4c\xe8\x5a\xc0\x8b\xad\x08\x9c\x46\xde\x5b\x5f\x05\xa8\xf0\x02\x86\xa8\x00\xb6\xe0\xa3\xd9\x02\xfb\x5a\x32\x70\x49\x43\x63\x17\xca\x93\x64\x7d\x01\x65\x20\xfa\x38\x2b\x90\x31\x4f\x16\xf0\x5a\x22\x83\x44\xf3\x13\xc3\x8e\xa0\xb0\x86\xe0\xac\xb8\x6c\xea\xcf\x78\x01\xa6\x2a\x36\x23\xb1\x57\x9a\x40\x19\x26\xef\x6c\x0c\x04\xa8\x6a\xcd\x2a\xd3\xca\x50\xb2\x80\xce\xd9\x01\x82\x6d\x6a\x3d\x9e\x41\xda\xca\x59\xd3\x44\xed\xfe\x5e\x51\x14\xbe\xa3\x46\x3b\x15\xf9\xed\x90\x26\x7d\xbf\xc3\x40\xbf\xfd\x4a\x46\xda\x82\x96\x93\x97\x20\x92\x87\x97\x60\x35\x3c\xf8\xeb\x06\x98\x07\x4f\x0d\xb4\x2b\xff\x9c\xfd\x61\xa4\x1f\xd0\xc3\xf9\xf6\xc8\xbb\x11\x8f\xc8\xad\x3b\xc7\xd0\x38\x74\xe4\x65\x5a\x32\xbb\xb0\xdd\x6c\x9e\xc2\xf6\x29\xa4\x6b\x88\xcb\x17\x9d\xea\x9c\x1f\xde\x9e\xdf\xdb\x18\xfd\xcb\xe4\x0d\x6a\x81\x4e\x75\xb7\xc2\x59\xcf\x13\x7d\xc4\xc4\x16\x7b\xd4\x8d\x34\x55\x64\x78\xd9\x6e\xb9\x41\x5f\xd1\xf7\x5b\xc3\xf3\x6a\x5e\xc1\xa2\xed\x14\xf2\x0b\x56\xba\xb7\x50\xbb\x84\xb5\x86\x82\x9c\xb6\x17\x2a\x40\x96\xe8\x39\xe4\x57\xc1\xce\x16\x99\x2c\x49\x1e\x9d\x6d\x0c\x29\x5a\xca\xc4\x06\x6e\x5c\x9b\xdf\xe7\xe7\x83\x35\x3c\x1c\x63\x76\x93\x38\x43\x1c\x67\x3f\xe2\x79\x43\x4c\xe1\x2b\xac\x36\xf3\x11\x27\xda\x6b\x0a\xf2\x8f\x55\x66\x99\xa6\x6b\x78\x8b\x47\xa6\xe2\xdd\xf6\x68\x0e\xb4\xbc\xbd\x3e\x9a\x78\x05\x5b\x18\x05\xfa\x57\xe8\x7d\xe4\x02\x89\x5a\x49\xfb\x79\x9f\x81\xea\x36\x3d\xff\xb9\xd7\x3c\x62\x69\x7b\xb4\x95\x65\x75\xa2\x2f\xf3\x6e\x25\x0f\x98\x3b\x6b\x39\xb0\x47\x97\x05\x92\x9e\x78\xfa\x5c\x1b\xc7\x19\xdc\x69\x12\xf1\xca\x5d\x8b\xe0\x8f\xee\x0c\xae\x11\xd1\x61\x60\x0b\x69\x3a\x6c\xe4\x50\x1e\x89\x33\x29\xab\x2f\x8b\xbf\x95\x8c\xc5\xff\x08\x00\x00\xff\xff\x37\x66\x20\x85\x48\x09\x00\x00"), }, "/terraform-modules/bootkube/resources": &vfsgen۰DirInfo{ name: "resources", @@ -5803,6 +5851,11 @@ var vfsgenAssets = func() http.FileSystem { modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), content: []byte("\x77\x65\x62\x68\x6f\x6f\x6b\x3a\x0a\x20\x20\x73\x65\x72\x76\x69\x6e\x67\x4b\x65\x79\x3a\x20\x24\x7b\x73\x65\x72\x76\x69\x6e\x67\x5f\x6b\x65\x79\x7d\x0a\x20\x20\x73\x65\x72\x76\x69\x6e\x67\x43\x65\x72\x74\x3a\x20\x24\x7b\x73\x65\x72\x76\x69\x6e\x67\x5f\x63\x65\x72\x74\x7d\x0a"), }, + "/terraform-modules/bootkube/resources/charts/packet-ccm.yaml": &vfsgen۰FileInfo{ + name: "packet-ccm.yaml", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + content: []byte("\x61\x70\x69\x4b\x65\x79\x3a\x20\x24\x7b\x61\x70\x69\x5f\x6b\x65\x79\x7d\x0a\x70\x72\x6f\x6a\x65\x63\x74\x49\x44\x3a\x20\x24\x7b\x70\x72\x6f\x6a\x65\x63\x74\x5f\x69\x64\x7d\x0a"), + }, "/terraform-modules/bootkube/resources/charts/pod-checkpointer.yaml": &vfsgen۰FileInfo{ name: "pod-checkpointer.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -5853,9 +5906,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bootkube/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 5499, + uncompressedSize: 5709, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xcd\x6e\xe3\x46\x12\xbe\xfb\x29\x0a\x4e\x0e\x0e\x60\x49\xf6\x58\xfe\x19\x23\x39\x64\x3d\x73\x30\x32\x99\xf5\x6e\x9c\xdd\xc3\x62\x41\x94\xba\x8b\x62\x43\xcd\x6e\x6e\x75\x53\xb6\x10\xcc\xbb\x2f\xaa\x49\x51\xa2\x4c\xc9\x36\x12\x5f\x04\x9a\x55\xd5\x5f\xfd\x7d\x5d\xc5\x25\xb2\xc1\x99\x25\x38\x56\xb6\x0e\x91\x38\x73\x58\xd2\x31\xfc\x71\x04\xa0\x29\x28\x36\x55\x34\xde\xc1\x4f\x70\x7c\xd7\x08\x40\x12\x38\x02\x88\xab\x8a\xa0\xfd\xfb\x09\x42\x64\xe3\xe6\x47\xdf\x8e\x8e\x36\x26\xb1\x32\x59\x20\x5e\x12\x87\x41\x8b\x5f\x4c\x88\xe0\x73\xd0\xbe\x44\xe3\x92\xe1\x00\x75\x20\x0d\xd1\x03\x13\xaa\x02\x16\xf5\x8c\x46\x58\x99\xc6\x0c\xe4\xec\x4b\x78\x32\xb1\x30\x0e\x62\x41\xd0\x82\x7e\x09\xc7\x9a\x10\x4f\x1a\x4c\x3f\x08\xa8\xef\xe0\xdf\x05\x39\x70\x3e\x42\xa0\x78\x9a\x94\x97\x68\x6b\x92\xf3\x97\xc8\xe3\x2d\xac\xf0\x64\xac\x85\x19\x25\x28\xe3\x61\x7f\x32\x7a\x8e\xc4\x0e\xed\x5f\xe9\x18\x3a\x58\x9b\x05\x47\xf1\xc9\xf3\xe2\x15\xcf\xe4\xe4\x1c\x6b\x1b\xdb\x97\xff\xf9\xef\xde\x0c\x64\xa6\x3a\x9c\x05\xd4\xda\xc8\xff\xd0\xc2\xfd\xc3\x72\x2a\xcf\x4c\x21\x50\x10\xd0\x33\x02\xe3\x94\xad\x35\x69\x68\x63\xbf\xe3\xc1\xe3\x97\xdf\x40\x11\x47\x93\x1b\x85\x71\xa0\x42\xde\x05\x9c\xa2\xd2\x7f\xb6\x76\xc4\x06\xb4\x36\xc6\xaf\x97\xc8\xce\xe1\xe4\x74\xe5\x8d\x8b\x87\x8f\x7f\x60\xb3\xc4\x48\xbb\x11\xf3\x79\x53\x9e\xde\x45\xf6\xd6\x4a\xd7\x78\x4d\x01\xb8\x76\xce\xb8\x79\x82\xf6\x1a\xa4\x57\x73\x1b\x02\xc5\x4c\x1b\x1e\x04\xf8\x80\xb1\x90\x50\x20\x68\xc3\xa4\xa2\xe7\x15\x3c\x15\xc4\x04\x73\x72\xc4\x18\x49\x43\xb2\x10\x20\x14\xbe\xb6\x5a\x52\x5c\x59\x54\xa4\xe1\x44\x70\xa3\x71\x01\x02\x29\xa6\x18\x7e\x78\x5b\xbf\x2b\xeb\x6b\x9d\x55\xec\x97\x46\xd3\x30\xac\xc7\x82\x60\x2d\x00\xb9\x67\x48\x3a\x29\x4b\x46\x51\x80\x13\x2a\xab\xb8\x6a\xad\x27\x01\xe7\x3b\x85\xfd\x30\x76\x63\x75\x7c\xdc\x47\xd6\x76\x53\x56\xc6\x7a\x98\xdb\xbe\xde\x83\x71\x91\x38\x47\x45\xf0\xeb\xe3\xef\x2f\x4f\x72\x75\x39\x23\x7e\x71\xd2\xf9\xe5\xd9\xd9\xf0\x59\xe4\x14\x56\xa1\xb6\x28\x87\x0c\x9e\xfa\xb5\x91\x84\x9e\x24\x94\x5e\x13\x90\x89\x05\x31\x98\xca\x54\xe0\x19\x96\xcf\x16\x1d\x9c\x78\x67\x57\x80\x55\x65\x4d\xd3\x95\x0a\xad\x51\xfe\x1d\x61\x11\x7b\x7b\x42\x63\xaa\x0c\xeb\xe8\x35\x45\x52\x82\x23\x2b\x29\x16\x5e\x0f\x02\xff\x35\xbd\x4a\xe5\xd5\xa9\xa4\x82\x2f\x7c\x88\xbd\x5e\xf8\x0b\x30\xe7\x86\x43\x1c\xe5\xbe\x76\x7a\x07\x7a\xe5\x75\xa6\x8c\x1e\xae\xb4\xbb\xfb\x4f\xff\x84\xfb\x07\x60\x74\x73\x4a\x50\x43\x30\x73\x07\xbf\xd4\x33\x62\x47\x91\x02\x54\x5e\x87\xb7\xe3\x38\x3f\x1b\x7f\x18\x9f\x8d\xcf\x26\xe7\x57\x3b\x38\xda\xea\xdd\x8b\xe5\xc7\x1f\x3f\xff\xfd\xd3\xd1\x1b\x00\xad\xdb\x60\x7c\x24\x7d\x72\x9e\x62\xd9\xdd\x46\x4c\x89\xcb\x74\xea\x0a\x21\xdf\xac\x23\xdf\xe6\x3e\x3b\x3f\x8b\xc5\x41\x85\x91\x76\x61\x7c\x24\x58\x8e\xb6\xbc\x1e\xf0\xb8\xf1\xf6\x22\x79\xfb\x61\x7a\xbc\xdb\xe5\xcd\xa0\xd0\x30\x6f\x16\xea\x3c\x37\xcf\x83\x29\xf8\x47\x4d\x2c\x59\x97\xf3\x1b\xe9\x90\x2e\xef\x84\xb6\xd1\xeb\xc0\xa2\x0b\x4f\xc4\xa4\x61\xb6\xea\xb0\xbe\x3d\x37\x2d\xa6\xb1\xf5\x0a\xed\x2e\xde\x86\xcc\x88\x33\x64\x55\x0c\x02\xfd\x99\x55\x61\xa4\x88\x6b\xee\x80\x09\xe8\x35\x87\x27\x75\x30\x25\xce\xe5\x99\x49\xbb\x30\x69\x7f\x6f\xdb\xdf\x11\x9c\xd0\x78\x3e\x3e\x05\xe4\xf2\x6a\xfa\x8e\xf2\xc6\x52\x5f\xbd\x08\x71\x07\x39\x9d\x39\x7c\x05\xdd\xf5\x81\xa5\xe6\xaa\x03\xc1\x49\x83\x3a\xa1\x02\x72\x51\x88\x5f\x82\x3c\xa7\x08\xa3\xef\xbf\xff\x43\xa6\x9d\x7e\x4c\xbe\x49\x7f\x92\xd3\xa4\x07\x70\x97\x58\x75\x57\x52\xaf\x44\x04\x12\xb4\xed\x0c\x2f\xfe\x24\x29\xe9\xd5\x44\x6e\xbe\xdb\xe5\xc5\xf8\xfc\x6a\x3c\x3d\xde\xd2\xc9\x94\x33\xfb\x74\x94\x33\xc3\x2a\xdd\x85\x1a\x76\x55\x52\xd1\x6c\xbd\xef\xeb\xe7\x96\x9e\x97\xde\x66\x9a\xcd\x72\x1d\xd6\xbe\x7e\xe5\xf5\x07\x8d\x54\x7a\x37\x6a\x85\xfb\x16\xc4\xbe\xa5\xb8\x51\xdd\x80\xfe\x5f\x8d\xab\xb1\x11\x13\x81\x8c\xf6\x6e\xd2\xca\xde\x2e\xcf\xc7\xe7\x1f\xc7\x17\xad\x0b\x6d\x4a\x86\x22\xb5\xa7\xa6\x1a\xc5\x44\x73\x05\xa9\x45\x9a\x47\x88\xb7\x14\x17\xc6\x2d\xbd\x5d\x08\xf8\xd1\xb6\xc8\xad\x3e\x57\x97\x37\xd3\xe9\x45\x4e\xd7\xfa\x5a\x5f\x5c\x20\x5e\xce\xf2\x6b\x7d\x73\xa6\xaf\x2e\xf5\x87\x8f\x1f\x67\x74\x45\x97\x37\xd3\xeb\x8d\x6f\x1b\x36\xe9\x41\x5b\xdc\x84\xf1\x5c\xb1\xb8\xd7\x1f\xf8\xfa\xce\x25\x0b\x9b\xe8\x67\x25\x3a\x9c\x13\x0f\x59\xd8\x48\x8d\x5a\xa9\x01\x53\x41\x15\xa4\x6b\xfb\x0a\x98\x4e\x6a\xc0\x42\xc5\xfe\x79\xf5\x22\xd2\xbb\x16\x92\xd4\xb6\xf6\xb7\x9d\x51\xd0\xc9\x6f\xc6\x54\x79\x8e\xc6\xcd\x9b\x4e\xec\x77\xc8\xcc\x7b\xfb\xb2\x3d\x3f\x27\x4d\xa8\x83\x94\x8b\x67\x40\x87\x76\x15\x8d\x0a\xd0\x19\x4b\x1d\x5b\x85\xc8\x84\x25\x28\x5f\x56\xde\x91\x8b\xe0\x9f\x9c\xd4\xf7\xc9\xa3\x99\x13\xe3\x2d\xdc\x6d\x6e\xcc\x3e\x77\xe4\x68\x03\xf5\xf1\x46\x16\x22\xd4\x99\x4c\xe2\xe1\xd5\xe1\x50\x98\x62\x33\x1e\x7a\xb7\xde\xa7\xda\x69\xb5\x99\x17\x93\xc9\x6e\xbc\x0f\x80\x4c\xb0\xa0\x2a\xbe\x9d\xe2\x26\x75\xe0\x49\x28\x90\x69\xa2\x70\xb4\xb5\x24\x84\x5d\xde\x4b\xa8\x97\x68\x8d\x36\x71\x95\x55\xc4\xc6\xeb\xac\xf0\xf5\x9e\x25\xe0\x5f\xad\x64\x5a\x5f\xac\x6d\xf8\x7a\xcb\xbc\xac\x2a\x8d\xf6\x5b\xc7\xb9\x9b\xeb\xab\xb3\xc1\x0a\xc0\xf9\x9c\x69\xbe\x7f\x96\x6b\xd3\x2d\x08\xb6\x2e\xf4\x9f\x37\x5a\xf0\x05\x57\xc4\x70\xd2\x9e\x97\xe8\x3a\x25\xf0\x14\x98\x94\x2f\xcb\x7d\x04\xdc\x95\xd7\x60\xea\xbf\x83\xda\xf9\x3c\x37\xca\xa0\x3d\x85\x48\x65\xe5\x19\x79\x75\x0a\x25\xae\x9a\x21\xa0\xf4\x32\x03\xc8\xbd\xeb\xeb\x28\x1b\xb0\x51\xd4\x73\xb0\x5d\x39\x37\x04\x90\x49\x7d\x0e\x7b\xb9\x5e\x4f\x77\x96\x3f\x51\x68\x2e\x40\xb8\x9a\x4e\x2f\xc4\xb7\x12\xa3\x2a\x9a\xa1\x7a\x8f\xc2\x80\xaf\x7b\xb2\x22\x36\xfb\x59\xd1\x26\xa4\xb4\x04\xb2\x79\x26\x53\x27\xe9\xac\x65\xdd\x41\xe0\x9f\x1a\xf9\x66\xf2\x20\x9b\x43\xa3\xb3\x66\x75\x30\x2e\x44\xb4\xb6\x99\x3f\xda\xc3\xf7\xa4\xa2\x87\xa3\xcf\x9c\x19\x3d\x47\xc6\x2c\xb7\x38\x1f\x2e\xd8\xcf\xf2\x1e\xd2\x7b\xa8\x64\xfd\x4a\x43\xb4\x00\x1a\x6d\x01\xda\xc4\xe9\xcf\xee\x88\x66\xee\x3c\x53\xf6\x7c\x79\xf6\x31\x53\xae\xb9\x45\x06\x81\xdd\x27\x41\xb8\xfb\x0a\x49\x26\x75\x8e\x68\xf5\xda\x69\x00\xcd\xe1\xe2\xdc\x00\x99\x59\xaf\x16\xa4\x65\xa9\x40\x8d\x11\xd3\xac\x7c\x78\xb5\xae\x2c\xc6\xdc\x73\x09\x6b\x1d\x90\x09\xba\xf9\x1a\x21\xd6\x00\x95\x92\x0d\x43\xfa\x48\xf8\xd5\xda\x3d\x03\xfd\xbb\x22\x36\xf3\x3e\x86\xc8\x58\x65\xd1\x2f\xc8\x1d\x86\xd8\x09\x43\x23\xdc\x01\x91\x32\x6b\x38\xb4\xff\xa1\x6a\xfd\x98\xfc\x4a\x3a\x23\xa3\x01\x9d\x6e\x1f\x9a\x7d\x7b\x5f\xd6\xd1\xad\x76\xbf\x54\x34\xe4\x14\x6d\xc8\x3a\x2c\x87\xe8\x49\x58\xfc\x6f\x1d\x68\x41\xfb\x4b\xd3\x00\xfb\x52\xdb\x3b\x2d\x47\x63\x03\xe6\x94\x19\x37\x93\x75\x2c\x35\x5e\x22\x8b\xe1\x30\xfd\xfe\xe9\x61\xf2\x78\xf7\x30\xf9\xed\xee\xf1\x41\x96\xf8\xe8\x95\xb7\x93\xc4\x15\x15\x1a\x4e\xa9\x43\x6b\xfd\x13\x18\xa7\x7c\x99\x6e\x44\x46\x21\x33\xb9\x8b\x84\x38\x59\x5b\x49\x71\xfb\x39\x25\x90\xaa\x59\xe8\xbe\xf2\xd6\xa8\xd5\xc1\x30\xed\xe6\xd9\xd5\xd6\xee\xc6\x4e\xf1\xaa\x12\xfc\x3a\x6b\x8f\x3d\x14\x3a\xe3\x46\xeb\x24\x56\xb2\xfb\xb6\x40\x5b\x2b\xc6\xbb\xf7\x76\xc7\xff\x03\x00\x00\xff\xff\x05\x90\xa3\xa0\x7b\x15\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdb\x6e\xe3\x38\xd2\xbe\xcf\x53\x14\x32\x73\x91\x06\xe2\x53\xe2\x1c\x1c\xcc\x5c\xf4\x9f\xf4\x3f\xc8\xa6\xa7\x37\xbb\x9d\xde\x01\x76\xb1\x10\xca\x64\xc9\xe2\x98\x22\xb5\x24\xe5\xd8\x3b\xe8\x77\x5f\x14\x25\xcb\x96\x23\x3b\x69\xf4\xe4\xc6\x50\x54\x87\x8f\x75\xf8\x58\xa5\x05\x3a\x85\x53\x4d\x70\x2c\x74\xe9\x03\xb9\xc4\x60\x4e\xc7\xf0\xc7\x11\x80\x24\x2f\x9c\x2a\x82\xb2\x06\x7e\x86\xe3\xdb\x4a\x00\xa2\xc0\x11\x40\x58\x15\x04\xf5\xdf\xcf\xe0\x83\x53\x66\x76\xf4\xf5\xe8\x68\x63\x12\x0b\x95\x78\x72\x0b\x72\xbe\xd3\xe2\x47\xe5\x03\xd8\x14\xa4\xcd\x51\x99\x68\xd8\x43\xe9\x49\x42\xb0\xe0\x08\x45\x06\xf3\x72\x4a\x3d\x2c\x54\x65\x06\x52\x67\x73\x78\x56\x21\x53\x06\x42\x46\x50\x83\x7e\x09\x47\x2b\x1f\x4e\x2a\x4c\xef\x18\xd4\x0f\xf0\x5b\x46\x06\x8c\x0d\xe0\x29\x9c\x46\xe5\x05\xea\x92\xd8\xff\x02\x5d\x7f\x0b\x2b\x3c\x2b\xad\x61\x4a\x11\x4a\xbf\xfb\x3c\x09\x2d\x03\x39\x83\xfa\xcf\x3c\x18\x1a\x58\x9b\x05\x43\xe1\xd9\xba\xf9\x2b\x27\x63\xcf\x29\x96\x3a\xd4\x2f\xff\xf5\xef\xbd\x19\x48\x54\x71\x38\x0b\x28\xa5\xe2\xff\xa1\x86\xfb\xc7\xc5\x98\x9f\x1d\x79\x4f\x9e\x41\x4f\x09\x94\x11\xba\x94\x24\xa1\x8e\xfd\xce\x09\x9e\x3e\x7e\x06\x41\x2e\xa8\x54\x09\x0c\x1d\x15\xf2\x4d\xc0\x29\x08\xf9\xbd\xb5\xc3\x36\xa0\xb6\xd1\x7f\xbd\x44\x76\x9c\x93\x91\x85\x55\x26\x1c\x76\xff\xe8\xd4\x02\x03\xed\x46\xcc\xa6\x55\x79\x5a\x13\x9c\xd5\x9a\xbb\xc6\x4a\xf2\xe0\x4a\x63\x94\x99\x45\x68\xaf\x41\x7a\x35\xb7\xde\x53\x48\xa4\x72\x9d\x00\x1f\x31\x64\x1c\x0a\x04\xa9\x1c\x89\x60\xdd\x0a\x9e\x33\x72\x04\x33\x32\xe4\x30\x90\x84\x68\xc1\x83\xcf\x6c\xa9\x25\xa7\xb8\xd0\x28\x48\xc2\x09\xe3\x46\x65\x3c\x78\x12\x8e\x82\x7f\xf7\xb6\x7e\x17\xda\x96\x32\x29\x9c\x5d\x28\x49\xdd\xb0\x9e\x32\x82\xb5\x00\xa4\xd6\x41\xd4\x89\x59\x52\x82\x3c\x9c\x50\x5e\x84\x55\x6d\x3d\x0a\x18\xdb\x28\xec\x87\xb1\x1b\xab\xe3\xe3\x36\xb2\xba\x9b\x92\x3c\x94\xdd\xdc\xf6\xe9\x1e\x94\x09\xe4\x52\x14\x04\xbf\x3e\x7d\x79\xe9\xc9\x94\xf9\x94\xdc\x0b\x4f\xa3\x8b\xe1\xb0\xdb\x17\x19\x81\x85\x2f\x35\xb2\x93\x4e\xaf\x9f\x2a\x49\x68\x49\x42\x6e\x25\x01\xa9\x90\x91\x03\x55\xa8\x02\xac\x83\xc5\x52\xa3\x81\x13\x6b\xf4\x0a\xb0\x28\xb4\xaa\xba\x52\xa0\x56\xc2\x7e\x43\x58\xd8\xde\x9e\xd0\xa8\x22\xc1\x32\x58\x49\x81\x04\xe3\x48\x72\x0a\x99\x95\x9d\xc0\x7f\x8d\xaf\x62\x79\x35\x2a\xb1\xe0\x33\xeb\x43\xab\x17\xfe\x04\xcc\xa9\x72\x3e\xf4\x52\x5b\x1a\xb9\x03\xbd\xb0\x32\x11\x4a\x76\x57\xda\xed\xfd\xdd\xdf\xe1\xfe\x11\x1c\x9a\x19\x45\xa8\xde\xab\x99\x81\x87\x72\x4a\xce\x50\x20\x0f\x85\x95\xfe\xed\x38\x46\xc3\xfe\x59\x7f\xd8\x1f\x0e\x46\x97\x3b\x38\xea\xea\xdd\x8b\xe5\xa7\x9f\x3e\xfc\xf5\xee\xe8\x0d\x80\xd6\x6d\xd0\x3f\xe2\x3e\x19\xc5\x58\x36\xb7\x91\xa3\xc8\x65\x32\x76\x05\x93\x6f\xd2\x90\x6f\x75\x9f\x8d\x86\x21\x3b\xa8\xd0\x93\xc6\xf7\x8f\x18\xcb\xd1\xd6\xa9\x3b\x4e\x5c\x9d\xf6\x3c\x9e\xf6\x6c\x7c\xbc\xdb\xe5\xd5\xa0\x50\x31\x6f\xe2\xcb\x34\x55\xcb\xce\x14\xfc\xad\x24\xc7\x59\x67\xff\x95\xb4\x8f\x97\x77\x44\x5b\xe9\x35\x60\xd1\xf8\x67\x72\x24\x61\xba\x6a\xb0\xbe\x3d\x37\x35\xa6\xbe\xb6\x02\xf5\x2e\xde\x8a\xcc\xc8\x25\xe8\x44\xd6\x09\xf4\xbd\x13\x99\xe2\x22\x2e\x5d\x03\x8c\x41\xaf\x39\x3c\xaa\x83\xca\x71\xc6\xcf\x8e\xa4\xf1\x83\xfa\xf7\xa6\xfe\xed\xc1\x09\xf5\x67\xfd\x53\x40\x97\x5f\x8e\xbf\xa1\xbc\x31\x97\x97\x2f\x42\xdc\x40\x8e\x3e\xbb\xaf\xa0\xdb\x36\xb0\xd8\x5c\xa5\x27\x38\xa9\x50\x47\x54\x40\x26\x30\xf1\x73\x90\x67\x14\xa0\xf7\xe3\x8f\x7f\xf0\xb4\xd3\x8e\xc9\x57\xee\x4f\x32\x92\x64\x07\xee\x1c\x8b\xe6\x4a\x6a\x95\x08\x43\x82\xba\x9d\xe1\xc5\x1f\x27\x25\xbe\x1a\xf0\xcd\x77\xb3\x38\xef\x8f\x2e\xfb\xe3\xe3\x2d\x9d\x44\x18\xb5\x4f\x47\x18\xd5\xad\xd2\x5c\xa8\x7e\x57\x25\x16\xcd\xd6\xfb\xb6\x7e\xaa\x69\xb9\xb0\x3a\x91\x4e\x2d\xd6\x61\x6d\xeb\x17\x56\x9e\x49\xa4\xdc\x9a\x5e\x2d\xdc\xb6\xc0\xf6\x35\x85\x8d\xea\x06\xf4\x7f\x4a\x5c\xf5\x15\x9b\xf0\xa4\xa4\x35\x83\x5a\xf6\x66\x31\xea\x8f\x26\xfd\xf3\xfa\x08\x75\x4a\xba\x22\xb5\xa7\xa6\x2a\xc5\x48\x73\x19\x89\x79\x9c\x47\xc8\x6d\x29\xce\x95\x59\x58\x3d\x67\xf0\xbd\x6d\x91\x1b\x39\x12\x17\xd7\xe3\xf1\x79\x4a\x57\xf2\x4a\x9e\x9f\x23\x5e\x4c\xd3\x2b\x79\x3d\x94\x97\x17\xf2\x6c\x32\x99\xd2\x25\x5d\x5c\x8f\xaf\x36\x67\xdb\xb0\x49\x0b\xda\xfc\xda\xf7\x67\xc2\xf1\xf1\xda\x03\x5f\xfb\x70\xd1\xc2\x26\xfa\x49\x8e\x06\x67\xe4\xba\x2c\x6c\xa4\x7a\xb5\x54\x87\x29\x2f\x32\x92\xa5\x7e\x05\x4c\x23\xd5\x61\xa1\x70\x76\xb9\x7a\x11\xe9\x5d\x0b\x51\x6a\x5b\xfb\xeb\xce\x28\x68\xf8\x37\x71\x54\x58\x17\x94\x99\x55\x9d\xd8\xee\x90\xa9\xb5\xfa\x65\x7b\x7e\x88\x9a\x50\x7a\x2e\x17\xeb\x00\x0d\xea\x55\x50\xc2\x43\x63\x2c\x76\x6c\xe1\x83\x23\xcc\x41\xd8\xbc\xb0\x86\x4c\x00\xfb\x6c\xb8\xbe\x4f\x9e\xd4\x8c\x1c\xde\xc0\xed\xe6\xc6\x6c\x73\x47\x8a\xda\x53\x1b\x6f\x70\x4c\x84\x32\xe1\x49\xdc\xbf\x3a\x1c\x32\x53\x6c\xc6\x43\x6b\xd6\xfb\x54\x3d\xad\x56\xf3\x62\x34\xd9\x8c\xf7\x1e\xd0\x11\xcc\xa9\x08\x6f\xa7\xb8\x41\xe9\xdd\xc0\x67\xe8\x68\x20\xb0\xb7\xb5\x24\xf8\x5d\xde\x8b\xa8\x17\xa8\x95\x54\x61\x95\x14\xe4\x94\x95\x49\x66\xcb\x3d\x4b\xc0\x3f\x6a\xc9\xb8\xbe\x68\x5d\xf1\xf5\x96\x79\x5e\x55\x2a\xed\xb7\x8e\x73\xd7\x57\x97\xc3\xce\x0a\xc0\xd9\xcc\xd1\x6c\xff\x2c\x57\xa7\x9b\x11\x6c\x5d\xe8\xef\x37\x5a\xf0\x11\x57\xe4\xe0\xa4\xf6\x17\xe9\x3a\x26\xf0\x14\x1c\x09\x9b\xe7\xfb\x08\xb8\x29\xaf\xce\xd4\xff\x00\xa5\xb1\x69\xaa\x84\x42\x7d\x0a\x81\xf2\xc2\x3a\x74\xab\x53\xc8\x71\x55\x0d\x01\xb9\xe5\x19\x80\xef\x5d\x5b\x06\xde\x80\x95\xa0\xd6\x01\xeb\x95\x73\x43\x00\x09\xd7\x67\xf7\x29\xd7\xeb\xe9\xce\xf2\xc7\x0a\xd5\x05\x08\x97\xe3\xf1\x39\x9f\x2d\xc7\x20\xb2\x6a\xa8\xde\xa3\xd0\x71\xd6\x3d\x59\x61\x9b\xed\xac\x48\xe5\x63\x5a\x3c\xe9\x34\xe1\xa9\x93\x64\x52\xb3\x6e\x27\xf0\xbb\x4a\xbe\x9a\x3c\x48\xa7\x50\xe9\xac\x59\x1d\x94\xf1\x01\xb5\xae\xe6\x8f\xda\xf9\x9e\x54\xb4\x70\xb4\x99\x33\xa1\x65\x70\x98\xa4\x1a\x67\xdd\x05\xfb\x81\xdf\x43\x7c\x0f\x05\xaf\x5f\x71\x88\x66\x40\xbd\x2d\x40\x9b\x38\x7d\xef\x8e\xa8\x66\xc6\x3a\x4a\x96\x17\xc3\x49\x22\x4c\x75\x8b\x74\x02\xbb\x8f\x82\x70\xfb\x09\xa2\x4c\xec\x1c\xd6\x6a\xb5\x53\x07\x9a\xc3\xc5\xb9\x01\x32\xd5\x56\xcc\x49\xf2\x52\x81\x12\x03\xc6\x59\xf9\xf0\x6a\x5d\x68\x0c\xa9\x75\x39\xac\x75\x80\x27\xe8\xea\x6b\x04\x5b\x03\x14\x82\x37\x0c\xee\x23\xe6\x57\xad\xf7\x0c\xf4\xdf\x14\xb1\xa9\xb5\xc1\x07\x87\x45\x12\xec\x9c\xcc\x61\x88\x8d\x30\x54\xc2\x0d\x10\x2e\xb3\x8a\x43\xdb\x1f\xaa\xd6\x8f\xf1\x5c\x51\xa7\xa7\x24\xa0\x91\xf5\x43\xb5\x6f\xef\xcb\x3a\x9a\xd5\xee\x97\x8a\x8a\x9c\x82\xf6\x49\x83\xe5\x10\x3d\x31\x8b\xff\x5f\x03\x9a\xd1\x3e\x54\x0d\xb0\x2f\xb5\x2d\x6f\x29\x2a\xed\x31\xa5\x44\x99\x29\xaf\x63\xb1\xf1\x22\x59\x74\x87\xe9\xcb\xdd\xe3\xe0\xe9\xf6\x71\xf0\xf9\xf6\xe9\x91\x97\xf8\x60\x85\xd5\x83\xc8\x15\x05\x2a\x17\x53\x87\x5a\xdb\x67\x50\x46\xd8\x3c\xde\x88\x0e\x99\xcc\xf8\x2e\x62\xe2\x74\x52\x73\x8a\xeb\xcf\x29\x9e\x44\xe9\x98\xee\x0b\xab\x95\x58\x1d\x0c\xd3\x6e\x9e\x4d\xa9\xf5\x6e\xec\x84\x5b\x15\x8c\x5f\x26\xb5\xdb\x43\xa1\x53\xa6\xb7\x4e\x62\xc1\xbb\x6f\x0d\xb4\xb6\xa2\xac\xf9\x8e\xee\xc0\x32\x64\x55\xbd\xed\xb9\xae\xc5\x9c\x02\xbc\x2f\xe3\xad\x3d\x27\x53\x53\xed\xf8\xe1\xcb\xdd\x3f\xef\x6f\x83\x79\x48\x3f\xfd\xff\xb8\xfc\xcb\xe7\x5f\x96\xcb\x8f\x6a\xfc\x4b\xf6\xdb\x32\xfb\xef\xc3\xe3\xef\xef\x76\xf7\x65\x67\x7f\x27\x11\x12\xd5\xbd\xd5\xd7\x6e\x6a\x29\xb8\xbf\x5b\xbb\x19\x5e\x50\x4a\x13\xd1\x13\x82\x26\xbd\xb1\xb8\x1a\xf5\xae\xaf\xc4\xa8\x37\x19\x4f\xc4\xd9\x64\x38\x3d\xbb\x92\x22\xba\xfa\x5f\x00\x00\x00\xff\xff\xbd\x6c\x5a\xf5\x4d\x16\x00\x00"), }, "/terraform-modules/bootkube/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -6214,9 +6267,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/packet/flatcar-linux/kubernetes/bootkube.tf": &vfsgen۰CompressedFileInfo{ name: "bootkube.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2142, + uncompressedSize: 2182, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x51\x4b\x63\x49\x13\x7d\xcf\xaf\x28\x32\x9f\xa0\x1f\x7a\x33\xba\xb3\x30\x23\x84\x65\x57\x97\xc5\x17\x91\x9d\x87\x7d\x10\x69\x3a\xdd\x95\xdc\x26\x9d\xae\x4b\x55\xdd\xc4\xec\xe0\x7f\x5f\xfa\x76\x6e\xbc\x89\xba\x6c\x10\xc4\x3e\x27\xa7\xfa\x54\x55\x1f\x23\x39\x1b\x05\x7e\x8c\x00\x6c\x13\x8c\x20\xaf\x91\x61\x0a\x73\xe2\x95\xd5\xd3\xf1\x89\x5c\x34\x1c\xd6\x56\xb1\x3a\x91\xf1\x39\xac\x2d\x57\x2e\xb6\xa2\xc8\x26\xd9\x15\x96\x13\x9f\xc4\xfc\x4d\x09\xcf\x46\x2f\xa3\xd1\x8a\x7c\x1b\x11\xc6\x33\x22\x5d\xb6\x33\x1c\x77\xea\x42\x2d\x3b\x84\xf2\x99\xc2\xb8\xaa\x26\xe5\x67\x4f\x1b\x01\x0c\x95\x61\xfa\xa6\xd8\x68\x04\xf0\x09\x6e\x6c\x4a\xa4\xd0\x0a\x82\xdb\xba\x18\x1c\x78\x6c\x30\x79\x4c\x2e\xa0\x00\x25\x70\x94\x94\x29\x46\x64\x01\x62\xd0\x1a\x03\xc3\xed\xfd\x77\x60\x74\xc4\x5e\x0e\xcc\x0a\xec\x3f\x53\x78\xec\xfa\x51\xbd\xa2\x4f\x87\x5c\x83\xcf\x8a\x9c\x6c\xcc\xdc\xd7\x1e\xfd\xa7\xde\x64\x29\x54\xe7\xdf\xd4\x2d\x52\x10\xce\xc1\x43\x48\xd0\x58\xb7\x44\x35\x1e\xd7\xc1\x61\x35\xf4\x72\x3d\x1c\x4b\x96\x3a\xf1\x1f\x55\x0e\xef\x14\xb7\x22\x59\x37\x30\xc0\xd0\x73\xe6\xed\xa1\x9d\xdd\x25\x6e\x01\xde\xa1\xb5\x5a\x1b\xa5\x25\xa6\x11\x40\x42\xdd\x10\x2f\xcd\x4a\xdb\x63\xde\x00\xea\x4d\x63\xf2\x0d\x85\xa4\xb2\x27\x7e\xe8\xb3\xfa\x7f\x65\x9d\x43\x11\xb3\x5b\x3d\x13\x9a\xf5\x97\x32\xfc\xef\x18\xd1\x29\xec\x00\x78\xe8\x34\xe0\xfe\xee\x06\x66\x5b\x68\x25\xa4\x45\x1e\x37\x38\x9b\x2e\x18\xad\xab\xe1\xc6\xc6\xe0\x08\x6c\xab\xe4\x51\xd1\x69\xa0\x04\xd4\x74\xbf\x36\x41\xeb\x8e\x3e\x0f\x2c\xda\xe9\xd7\x24\x9a\x87\x40\x2d\xef\x8b\xdc\xdc\xdd\xfe\x59\x0d\x0c\x87\xc6\x1c\xc8\x99\x15\x6a\x4d\x3e\x6f\xf5\xbe\xee\xf4\x7f\x3f\x5c\xf0\x9c\xe5\x4e\xbb\x8e\x90\xc7\xbd\x9d\x8c\x9c\xc3\xe5\xd9\xcb\x38\x9b\x6a\xc8\x77\x27\xef\x35\xbc\xc7\xf2\x03\x42\xce\x8d\x3a\xa2\x16\xda\x10\x1b\x3c\x23\x4f\x2b\x1b\x92\x91\x76\x3e\x0f\xcf\x47\xef\xe9\x00\xcb\x43\x4a\x76\x16\xd1\x30\x36\xc4\x9a\xdb\x38\x90\x3f\xc6\x5e\xe9\x76\xb1\x60\x5c\xd8\xae\x9b\xc7\xf4\x01\x96\x6d\x3a\x64\x15\xb3\xb6\x31\xf8\xa0\x5b\xd3\x20\x07\xf2\xa6\xa6\x96\xa5\xbf\xda\xc7\x8c\x4e\x80\x92\xda\x90\x90\x8d\x65\x57\xef\xbe\x43\xd2\xfd\x55\x96\xe3\x36\x48\xae\xdc\x8d\x54\x30\xce\xbb\x69\xa2\x87\x1c\x2f\x11\x35\xcf\xd0\x17\x8a\xc9\xb0\x29\xb0\xd9\xc1\x3b\xc5\x7f\x61\x74\x45\x7e\x7f\x56\xb6\x30\x8f\x76\x21\xa0\x04\xbf\x3e\xdc\x41\x79\xd0\x59\x3e\x13\x8d\x6d\x42\x39\xc9\x69\xc1\xd6\x14\x6e\x51\xff\x98\x50\x2c\xfc\x16\xc9\x2d\xa1\xac\x7f\x96\xdf\x2d\xf8\x0a\xd5\x7a\xab\xb6\xdf\x82\x5c\xeb\x53\x59\x58\xd5\x46\xae\x27\x93\xcd\x66\x53\x95\x17\x55\x39\x5a\x4d\x3c\xae\x31\x52\x83\x2c\x13\x4f\x4e\x26\xbb\xcc\x99\x2c\x71\x7b\x31\x47\xab\x2d\xa3\x4c\x7a\xd5\xc9\x5e\xad\x3f\xe9\xa5\x12\x2a\x48\x4d\x6d\xf4\x60\xe3\xc6\x6e\x05\x18\x85\xe2\x1a\xf3\xdd\x2e\xbf\x5d\x55\x5f\x3f\x57\x5f\xab\xcb\xab\x2f\xf9\x42\xb3\x7c\x77\xf4\xa6\x17\xe9\xd6\x31\x1b\x7f\x1c\x0f\xa9\x93\x9f\xae\xc6\x4f\xd9\x6d\x4e\x7e\x51\xb6\x4d\x89\x14\x79\xbb\x71\x1a\xc5\xec\x59\xf0\x4b\x5e\x01\x67\xf5\x74\x97\xd2\xaf\x91\x61\x8e\xa4\x9e\x4a\xfa\xe5\xd7\xfa\x16\x94\x33\xb8\x86\xc7\xa7\xd7\x25\x3e\xac\xf2\xf1\x05\xca\x84\xfe\x42\x08\x49\xd4\xc6\x08\xae\xcb\x96\x8b\xbc\x24\x17\x0d\x53\x9f\x2e\xae\xb6\xac\xf9\xff\xd0\x6e\x78\x9b\x3a\xb8\x1a\xa4\x0e\x8d\xc0\x1f\xf7\x0f\x72\x0e\x42\xb0\xe9\x42\xaa\xdf\x47\x98\xdb\x10\xc5\xce\x11\xf2\x13\x93\x9c\x40\x25\xb8\x72\x5f\x7b\xcc\x84\x34\xa3\x36\xf9\x6e\x2b\x4d\x21\x4e\x7b\x27\x8e\xb7\x4d\x3e\xf4\x46\xd9\xce\xe7\xc1\x1d\x45\xc4\x3b\x8c\xec\x27\x2c\x12\x31\x9a\xe7\x9f\x3f\x7f\x33\x2e\x19\x57\xa3\x5b\xee\xbe\xf1\x1e\xd4\x85\x0b\xb5\xde\x34\x4c\xeb\xe0\x91\x0f\x6a\x1c\x42\xa3\x97\xd1\x3f\x01\x00\x00\xff\xff\xb8\xde\xb6\x61\x5e\x08\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x51\x6b\xe3\x46\x10\x7e\xd7\xaf\x18\x7c\x3d\x48\x4a\x22\x5f\xd2\x2b\xdc\x05\x4c\x69\x93\x52\xf2\x12\x42\xef\xa1\x0f\x21\x2c\xeb\xdd\x91\xb5\xf5\x7a\x47\xec\x8c\xec\xb8\x47\xfe\x7b\x59\xad\x64\xcb\x4e\x5c\x2a\x02\xc1\xfb\x7d\xfa\x66\x67\xe6\x9b\x91\x27\xa3\x3d\xc3\xf7\x02\x40\x37\x4e\x31\xc6\x35\x46\x98\x41\x45\x71\xa5\xe5\x6c\xf2\x91\x2f\x9b\xe8\xd6\x5a\xb0\xfc\xc8\x93\x0b\x58\xeb\x58\x1a\xdf\xb2\x60\x54\x41\xaf\x30\x9f\xd8\xc0\xea\x1f\x0a\x78\x5e\xbc\x16\xc5\x8a\x6c\xeb\x11\x26\x73\x22\x59\xb6\x73\x9c\x74\xea\x4c\x6d\x34\x08\xf9\x99\xc1\xa4\x2c\xa7\xf9\x6f\x47\x2b\x00\xc6\xca\x30\x7b\x13\xac\x28\x00\x3e\xc0\xad\x0e\x81\x04\x5a\x46\x30\x5b\xe3\x9d\x01\x8b\x0d\x06\x8b\xc1\x38\x64\xa0\x00\x86\x82\x44\xf2\x1e\x23\x03\x45\x90\x1a\x5d\x84\xbb\x87\x6f\x10\xd1\x50\xb4\x7c\x90\x2c\xc3\xee\x99\xc1\x53\x57\x8f\x72\x8f\x3e\x1f\x72\x15\xbe\x08\xc6\xa0\x7d\xe2\xee\x6b\xf4\xbf\x6a\x93\xa4\x50\x8c\x7d\x13\x37\x4b\x81\xbb\x00\x0b\x2e\x40\xa3\xcd\x12\x45\x59\x5c\x3b\x83\xe5\x38\x97\x9b\x71\x5b\x92\xd4\x47\x7b\x2a\xb2\x7b\x27\xb8\x66\x4e\xba\x2e\x02\x8c\x73\x4e\xbc\x1d\xd4\xa7\xbb\xc4\x2d\xc0\x3b\xb4\x56\x6a\x25\xb4\xc4\x50\x00\x34\x91\xfe\x46\x23\xca\xd9\x37\xbc\x3d\x54\x00\x04\x94\x0d\xc5\xa5\x5a\x49\x7b\xcc\x1b\x41\x43\x71\x30\xd8\x86\x5c\x10\xde\x11\x4f\xd6\xa3\xfc\xb1\xd4\xc6\x20\xb3\xea\x2d\xaa\x5c\xb3\xfe\x9c\x4d\xf2\x0d\x3d\x1a\x81\x1e\x80\xc7\x4e\x03\x1e\xee\x6f\x61\xbe\x85\x96\x5d\x58\x24\x5b\x80\xd1\xe1\x32\xa2\x36\x35\xdc\x6a\xef\x0c\x81\x6e\x85\x2c\x0a\x1a\x71\x14\x80\x9a\xee\xdf\xc6\x49\xdd\xd1\x2b\x17\x59\x3a\xfd\x9a\x58\x52\xb3\xa8\x8d\xbb\x20\xb7\xf7\x77\x7f\x96\xa3\x84\x5d\xa3\x0e\xe4\xd4\x0a\xa5\x26\x9b\xdc\xbf\x8b\x3b\xfb\xe1\xbb\x71\x36\x26\xb9\xb3\xae\x22\x64\x71\x97\x4e\x42\x2e\xe0\xea\xfc\x75\x92\x92\x6a\xc8\x76\x27\xef\x35\x66\xc0\xd2\xa0\x61\x4c\x85\x3a\xa2\x66\xda\x18\x1b\x8d\x9b\xa5\x95\x76\x41\x71\x5b\x55\xee\xe5\x68\xee\x0e\xb0\xd4\xa4\xa0\xe7\x1e\x55\xc4\x86\xa2\xa4\x32\x8e\xe4\x8f\xb1\x3d\x5d\x2f\x16\x11\x17\xba\xab\xe6\x31\x7d\x84\xa5\x34\x0d\x46\x61\xb5\xd6\xde\x59\x27\x5b\xd5\x60\x74\x64\x55\x4d\x6d\xe4\xe1\x6a\xa7\x19\x9d\x00\x05\xd1\x2e\x60\x54\x3a\x9a\xba\x7f\x87\xb8\xfb\x95\xcd\x71\xe7\x38\x45\xee\x5a\xca\xe8\xab\xae\x9b\x68\x21\xad\x21\x8f\x92\x7a\x68\x33\x45\x25\x58\x65\x58\xf5\x70\xaf\xf8\x1f\x8c\x2e\xc8\xef\x2f\x12\x35\x54\x5e\x2f\x18\x84\xe0\xd7\xc7\x7b\xc8\x83\x9f\xe4\x13\x51\xe9\xc6\xe5\x93\xb4\x55\xa2\x56\x99\x9b\xd5\x4f\x13\x72\x0a\xbf\x79\x32\x4b\xc8\xf6\x4f\xf2\xbd\xc1\x57\x28\xda\x6a\xd1\x83\x0b\x52\xac\x0f\xd9\xb0\x22\x0d\xdf\x4c\xa7\x9b\xcd\xa6\xcc\x13\x55\x1a\x5a\x4d\x2d\xae\xd1\x53\x83\x91\xa7\x96\x0c\x4f\xfb\xdd\x34\x5d\xe2\xf6\xb2\x42\x2d\x6d\x44\x9e\x0e\xaa\xd3\x9d\xda\x70\x32\x48\x05\x14\xe0\x9a\x5a\x6f\x41\xfb\x8d\xde\x32\x44\x64\xf2\x6b\x4c\x77\xbb\xfa\x7a\x5d\x7e\xf9\x54\x7e\x29\xaf\xae\x3f\xa7\x0b\xcd\xd3\xdd\xd1\xaa\x41\xa4\xb3\x63\x4a\xfc\x69\x32\xa6\x4e\x7f\xba\x9e\x3c\xa7\x6c\xd3\x17\x82\x25\xea\x26\xaf\x1e\x7e\xeb\x38\xf1\xac\x76\x2c\xf8\x25\x59\xc0\x68\x39\xeb\xb7\xf9\x7e\x65\xa8\x23\xa9\xe7\xbc\x25\xd3\xb4\xbe\x05\xf9\x1c\x6e\xe0\xe9\x79\x6f\xe2\xc3\x28\xa7\x2f\x90\x3b\xf4\x17\x82\x0b\x2c\xda\x7b\x30\xdd\x6e\xb9\x4c\x26\xb9\x6c\x22\x0d\xdb\xc5\xd4\x3a\x4a\xfa\x5e\xf5\xcd\xdb\xd4\xce\xd4\xc0\xb5\x6b\x18\xfe\x78\x78\xe4\x0b\x60\x82\x4d\xb7\xa4\x06\x3f\x42\xa5\x9d\x67\x5d\x21\xa4\x11\xe3\xb4\x81\xf2\xe2\x4a\x75\x1d\x30\xe5\xc2\x9c\xda\x60\x3b\x57\xaa\x4c\x9c\x0d\x99\x98\xb8\x6d\xd2\xa1\x55\x12\x75\x55\x39\x73\xb4\x22\xde\x61\xa4\x7c\xdc\x22\x50\x44\xf5\xf2\xf3\xa7\xaf\xca\x04\x65\x6a\x34\xcb\xfe\x8d\xf7\xa0\x6e\xb9\x50\x6b\x55\x13\x69\xed\x2c\xc6\x83\x18\x87\x50\xf1\x5a\xfc\x1b\x00\x00\xff\xff\x28\xd9\x87\x13\x86\x08\x00\x00"), }, "/terraform-modules/packet/flatcar-linux/kubernetes/bootstrap-configs.tf": &vfsgen۰CompressedFileInfo{ name: "bootstrap-configs.tf", @@ -6267,9 +6320,9 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/packet/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1190, + uncompressedSize: 1266, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6a\xdc\x30\x10\x86\xef\x7e\x8a\x21\x39\x14\x0a\xeb\x53\xaf\xbd\xf5\xdc\x57\x30\xb3\xa3\x3f\xbb\x62\x65\x8d\x90\x46\x2e\xa6\xe4\xdd\x8b\x71\xd8\xd8\x4e\x37\x88\xdc\x0c\xf3\xfd\x9f\x86\xf1\xaf\xd5\x52\x35\x7a\xba\xd5\x33\x44\xe3\x8b\xbf\x9c\xd8\x8d\x3e\x3e\xd1\xdf\x8e\x68\xe2\x50\x41\x3f\x69\x54\x57\x03\xfa\xb3\xaa\x2d\x60\x7f\xa4\xbb\xd7\xae\xfb\x68\x6a\x76\x2c\x9f\x01\xb6\xb5\x08\x0f\x82\x6c\x9f\x2b\xde\xa0\x6d\x8e\x93\x2f\xc8\x13\xf2\x3e\x19\x54\x38\xf4\x9c\xfc\xb0\x4e\x97\xc8\xf3\x3a\x2d\xfd\xcc\x63\x20\xd1\x68\x88\x46\x2f\x9a\x89\x43\x20\x87\x14\x74\x86\x23\xb9\x72\xb6\xd2\xdf\x5f\x48\xea\x4e\x72\x85\xdc\x92\xfa\x68\xc8\xc3\x6a\xf9\x7c\xd3\x07\xa1\xe3\xdd\x4e\xf7\xf5\x9b\xac\xff\x8d\x1c\x9d\x39\xc2\x50\x9a\x7d\x3b\xfc\xe8\x0a\xb0\x66\xd1\x3b\xbb\xff\xaf\xc1\x8b\x36\x49\x76\xe8\xd6\x11\xf4\xa6\xa3\x9a\x9f\xd0\xe4\xf9\x80\x6f\x5d\x0b\x55\x2c\x73\x3a\x15\x48\x86\xb5\x1d\xea\x51\x6a\xad\xd5\xaf\x3a\x8e\x33\xbd\xbd\x50\x0b\x1c\x99\x92\x64\xb0\x61\xa9\x15\xa2\x43\x14\x8f\x42\x1a\xc3\xdc\x3d\xd3\x6f\x35\xba\x54\xce\x1c\x0d\x0b\x7c\x65\xa3\x3f\x1a\xbf\xd9\xd2\xbd\x78\xc1\x7d\x59\x87\xc9\x0b\x06\xef\x0e\xeb\x25\x96\x1b\x6c\x58\xc7\xfd\xd2\xe4\xac\x21\x20\x97\xfe\x7b\xef\xdd\xee\xfc\xef\xb3\x21\xd5\x73\xf0\x32\xf8\x34\xfd\x68\xd7\xb1\x08\xca\x2e\xfb\x50\x9f\xfd\xc4\x86\x2f\xfa\x37\xe1\xee\xb5\xfb\x17\x00\x00\xff\xff\x04\x14\xe4\x54\xa6\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\xc1\x8a\xdc\x30\x0c\x86\xef\x79\x0a\xb1\x7b\x28\x14\x92\x53\xaf\xbd\xf5\xdc\x57\x08\x1a\xf9\xdf\x19\x33\x8e\x65\x6c\x39\x65\x28\xfb\xee\x25\x64\x99\x4d\xb2\x9d\xc5\xec\x2d\xa0\xef\xff\x24\x14\x59\xab\xa5\x6a\xf4\x74\xad\x27\x88\xc6\x17\x7f\xee\xd9\x4d\x3e\x3e\xd1\xdf\x8e\x68\xe6\x50\x41\x3f\x69\x52\x57\x03\x86\x93\xaa\x2d\xe0\x70\xa4\xbb\xd7\xae\xfb\x68\x6a\x76\x2c\x9f\x01\xb6\xb5\x08\x8f\x82\x6c\x9f\x2b\xde\xa0\x6d\x8e\x93\x2f\xc8\x33\xf2\x3e\x19\x54\x38\x0c\x9c\xfc\xb8\x56\x97\xc8\xf3\x5a\x2d\xc3\x8d\xa7\x40\xa2\xd1\x10\x8d\x5e\x34\x13\x87\x40\x0e\x29\xe8\x0d\x8e\xe4\xc2\xd9\xca\x70\xef\x90\xd4\xf5\x72\x81\x5c\x93\xfa\x68\xc8\xe3\x6a\xf9\x7c\xd2\x07\xa1\xe3\xde\xfa\xfb\xf8\x4d\xd6\xff\x46\x8e\xce\x1c\x61\x28\xcd\xbe\x1d\x7e\x74\x05\x58\xb3\xe8\x9d\xdd\xff\xd7\xe0\x45\x9b\x24\x3b\x74\xeb\x08\x7a\xd5\x49\xcd\xcf\x68\xf2\x7c\xc0\xb7\xae\x85\x2a\x96\x39\xf5\x05\x92\x61\x6d\x8b\x7a\x94\x5a\xcf\xea\x57\x9d\xa6\x1b\xbd\x75\xa8\x05\x8e\x4c\x49\x32\xd8\xb0\x9c\x15\xa2\x43\x14\x8f\x42\x1a\xc3\xad\x7b\xa6\xdf\x6a\x74\xae\x9c\x39\x1a\x16\xf8\xc2\x46\x7f\x34\x7e\xb3\xe5\xf6\xe2\x19\xf7\x61\x1d\x66\x2f\x18\xbd\x3b\x8c\x97\x58\xae\xb0\x71\x2d\x0f\xcb\x25\x67\x0d\x01\xb9\x0c\xdf\x07\xef\x76\xeb\x7f\xaf\x8d\xa9\x9e\x82\x97\xd1\xa7\xf9\x47\xbb\x8e\x45\x50\x76\xd9\x87\xfa\xec\x67\x36\x7c\xd1\xbf\x09\x6f\x1b\xac\xd1\x5e\x64\x6a\x7b\x76\x47\xbc\x7b\xed\xfe\x05\x00\x00\xff\xff\xb8\x78\xc0\xfb\xf2\x04\x00\x00"), }, "/terraform-modules/packet/flatcar-linux/kubernetes/ssh.tf": &vfsgen۰CompressedFileInfo{ name: "ssh.tf", @@ -7220,6 +7273,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/charts/control-plane/kubelet"].(os.FileInfo), fs["/charts/control-plane/kubernetes"].(os.FileInfo), fs["/charts/control-plane/lokomotive"].(os.FileInfo), + fs["/charts/control-plane/packet-ccm"].(os.FileInfo), fs["/charts/control-plane/pod-checkpointer"].(os.FileInfo), } fs["/charts/control-plane/bootstrap-secrets"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -7354,6 +7408,17 @@ var vfsgenAssets = func() http.FileSystem { fs["/charts/control-plane/lokomotive/templates/03-deployment.yaml"].(os.FileInfo), fs["/charts/control-plane/lokomotive/templates/04-mutating-webhook.yaml"].(os.FileInfo), } + fs["/charts/control-plane/packet-ccm"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/charts/control-plane/packet-ccm/.helmignore"].(os.FileInfo), + fs["/charts/control-plane/packet-ccm/Chart.yaml"].(os.FileInfo), + fs["/charts/control-plane/packet-ccm/templates"].(os.FileInfo), + fs["/charts/control-plane/packet-ccm/values.yaml"].(os.FileInfo), + } + fs["/charts/control-plane/packet-ccm/templates"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/charts/control-plane/packet-ccm/templates/deployment.yaml"].(os.FileInfo), + fs["/charts/control-plane/packet-ccm/templates/loadbalancer.yaml"].(os.FileInfo), + fs["/charts/control-plane/packet-ccm/templates/secret.yaml"].(os.FileInfo), + } fs["/charts/control-plane/pod-checkpointer"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/charts/control-plane/pod-checkpointer/.helmignore"].(os.FileInfo), fs["/charts/control-plane/pod-checkpointer/Chart.yaml"].(os.FileInfo), @@ -7509,6 +7574,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/bootkube/resources/charts/kubelet.yaml"].(os.FileInfo), fs["/terraform-modules/bootkube/resources/charts/kubernetes.yaml"].(os.FileInfo), fs["/terraform-modules/bootkube/resources/charts/lokomotive.yaml"].(os.FileInfo), + fs["/terraform-modules/bootkube/resources/charts/packet-ccm.yaml"].(os.FileInfo), fs["/terraform-modules/bootkube/resources/charts/pod-checkpointer.yaml"].(os.FileInfo), } fs["/terraform-modules/dns"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/platform/packet/template.go b/pkg/platform/packet/template.go index ffe172ffb..6860a5dab 100644 --- a/pkg/platform/packet/template.go +++ b/pkg/platform/packet/template.go @@ -334,4 +334,9 @@ output "kubeconfig" { value = module.packet-{{.Config.ClusterName}}.kubeconfig-admin sensitive = true } + +output "packet-ccm_values" { + value = module.packet-{{.Config.ClusterName}}.packet-ccm_values + sensitive = true +} ` diff --git a/pkg/platform/platform.go b/pkg/platform/platform.go index bd26756c3..10e4302ce 100644 --- a/pkg/platform/platform.go +++ b/pkg/platform/platform.go @@ -58,6 +58,10 @@ func CommonControlPlaneCharts() []helm.LokomotiveChart { Name: "bootstrap-secrets", Namespace: "kube-system", }, + { + Name: "packet-ccm", + Namespace: "kube-system", + }, } }