gitextract_2r2jdj8y/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── build.md │ │ ├── feature.md │ │ ├── image.md │ │ └── metal_driver.md │ ├── actions/ │ │ └── setup-node/ │ │ └── action.yml │ ├── dependabot.yaml │ ├── pull_request_template.md │ └── workflows/ │ ├── build.yml │ ├── cache.yml │ └── weekly.yml ├── .gitignore ├── .golangci.yaml ├── .mailmap ├── .vscode/ │ └── settings.json ├── BUILDING.md ├── CHANGELOG.md ├── CHARTER.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile.toml ├── PROVISIONING-METAL.md ├── PUBLISHING-AWS.md ├── PUBLISHING-VMWARE.md ├── PUBLISHING.md ├── QUICKSTART-ECS.md ├── QUICKSTART-EKS.md ├── QUICKSTART-LOCAL.md ├── QUICKSTART-VMWARE.md ├── README.md ├── ROADMAP.md ├── Release.toml ├── SECURITY.md ├── SECURITY_FEATURES.md ├── SECURITY_GUIDANCE.md ├── SUPPORTED-HARDWARE.md ├── TESTING.md ├── TRADEMARKS.md ├── Twoliter.toml ├── packages/ │ ├── .gitignore │ ├── build.rs │ ├── packages.rs │ ├── settings-defaults/ │ │ ├── Cargo.toml │ │ └── settings-defaults.spec │ ├── settings-migrations/ │ │ ├── Cargo.toml │ │ └── settings-migrations.spec │ └── settings-plugins/ │ ├── Cargo.toml │ └── settings-plugins.spec ├── sample-eksctl-ssh.yaml ├── sample-eksctl.yaml ├── sources/ │ ├── Cargo.toml │ ├── README.md │ ├── api/ │ │ ├── .gitignore │ │ ├── datastore/ │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── README.tpl │ │ │ ├── build.rs │ │ │ └── src/ │ │ │ ├── constraints_check.rs │ │ │ ├── deserialization/ │ │ │ │ ├── error.rs │ │ │ │ ├── mod.rs │ │ │ │ └── pairs.rs │ │ │ ├── error.rs │ │ │ ├── filesystem.rs │ │ │ ├── key.rs │ │ │ ├── lib.rs │ │ │ ├── memory.rs │ │ │ └── serialization/ │ │ │ ├── error.rs │ │ │ ├── mod.rs │ │ │ └── pairs.rs │ │ └── migration/ │ │ └── migration-helpers/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── args.rs │ │ ├── common_migrations.rs │ │ ├── datastore_helper.rs │ │ ├── error.rs │ │ └── lib.rs │ ├── bottlerocket-release/ │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── README.tpl │ │ ├── build.rs │ │ └── src/ │ │ └── lib.rs │ ├── clarify.toml │ ├── constants/ │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── README.tpl │ │ ├── build.rs │ │ └── src/ │ │ └── lib.rs │ ├── deny.toml │ ├── generate-readme/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── models/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── README.tpl │ │ ├── build.rs │ │ └── src/ │ │ ├── exec.rs │ │ ├── generator.rs │ │ ├── lib.rs │ │ └── variant/ │ │ └── .keep │ ├── retry-read/ │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── README.tpl │ │ ├── build.rs │ │ └── src/ │ │ └── lib.rs │ ├── settings-defaults/ │ │ ├── aws-dev/ │ │ │ ├── Cargo.toml │ │ │ └── defaults.d/ │ │ │ └── 50-aws-dev.toml │ │ ├── aws-ecs-2/ │ │ │ └── Cargo.toml │ │ ├── aws-ecs-2-nvidia/ │ │ │ └── Cargo.toml │ │ ├── aws-ecs-3/ │ │ │ └── Cargo.toml │ │ ├── aws-ecs-3-nvidia/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.31/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.31-nvidia/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.32/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.32-nvidia/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.33/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.33-nvidia/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.34/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.34-nvidia/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.35/ │ │ │ └── Cargo.toml │ │ ├── aws-k8s-1.35-nvidia/ │ │ │ └── Cargo.toml │ │ ├── build-defaults.rs │ │ ├── defaults-toml.rs │ │ ├── metal-dev/ │ │ │ ├── Cargo.toml │ │ │ └── defaults.d/ │ │ │ └── 50-metal-dev.toml │ │ ├── metal-k8s-1.30/ │ │ │ └── Cargo.toml │ │ ├── vmware-dev/ │ │ │ ├── Cargo.toml │ │ │ └── defaults.d/ │ │ │ └── 50-vmware-dev.toml │ │ ├── vmware-k8s-1.32/ │ │ │ └── Cargo.toml │ │ ├── vmware-k8s-1.33/ │ │ │ └── Cargo.toml │ │ ├── vmware-k8s-1.34/ │ │ │ └── Cargo.toml │ │ └── vmware-k8s-1.35/ │ │ └── Cargo.toml │ ├── settings-migrations/ │ │ ├── .keep │ │ ├── archived/ │ │ │ ├── v0.3.2/ │ │ │ │ └── migrate-admin-container-v0-5-0/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v0.4.1/ │ │ │ │ ├── add-version-lock-ignore-waves/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── pivot-repo-2020-07-07/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v0.5.0/ │ │ │ │ ├── add-cluster-domain/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── migrate-admin-container-v0-5-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── migrate-control-container-v0-4-1/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.0.0/ │ │ │ │ ├── ecr-helper-admin/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── ecr-helper-control/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.0.2/ │ │ │ │ └── add-enable-spot-instance-draining/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.0.3/ │ │ │ │ └── add-sysctl/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.0.5/ │ │ │ │ ├── add-lockdown/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-network-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-proxy-restart/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-proxy-services/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-user-data/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── sysctl-subcommand/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.0.6/ │ │ │ │ ├── add-shibaken/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-static-pods/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── admin-container-v0-6-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── control-container-v0-4-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-standalone-tls-services/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-standalone-tls-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── metricdog-init/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.0.8/ │ │ │ │ ├── add-bootstrap-containers/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── admin-container-v0-7-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── control-container-v0-5-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-eviction-hard/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-unsafe-sysctl-kube-reserved/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── proxy-affect-host-containers/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.1.0/ │ │ │ │ ├── kubelet-cloud-provider/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-event-qps-event-burst/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-kube-api-qps-kube-api-burst/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-registry-qps-registry-burst/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-server-tls-bootstrap/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── schnauzer-paws/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── shared-containerd-configs/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.1.2/ │ │ │ │ ├── admin-container-v0-7-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── control-container-v0-5-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-container-log/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── kubelet-system-reserved/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.1.3/ │ │ │ │ ├── kubelet-cpu-manager/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── kubelet-cpu-manager-state/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.10.0/ │ │ │ │ ├── aws-admin-container-v0-9-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-6-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── dns-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── dns-settings-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-log-level/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-9-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-control-container-v0-6-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── reboot-to-reconcile-setting/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.10.1/ │ │ │ │ ├── container-runtime/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── container-runtime-metadata/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.11.0/ │ │ │ │ ├── aws-admin-container-v0-9-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-config-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-6-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-creds/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-creds-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── credential-providers/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── ecs-additional-configurations/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-new-config-files/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-tls-config/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-tls-files/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-9-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-6-4/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.12.0/ │ │ │ │ ├── add-k8s-autoscaling-warm-pool-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-k8s-autoscaling-warm-pool-setting-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-admin-container-v0-9-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── k8s-private-pki-path/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── oci-defaults-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── oci-defaults-setting-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-9-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-0/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.13.0/ │ │ │ │ ├── aws-admin-container-v0-10-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── k8s-registry/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-10-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-1/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.13.1/ │ │ │ │ └── aws-profile-cred-provider/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.13.3/ │ │ │ │ └── aws-k8s-provider-id-gen/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.13.4/ │ │ │ │ ├── add-hostname-override/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── add-hostname-override-metadata/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.14.0/ │ │ │ │ ├── aws-admin-container-v0-10-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── k8s-services-mode/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-config-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-prefix-config-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubernetes-gc-percent-type-change/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-10-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-2/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.14.2/ │ │ │ │ └── ecs-images-cleanup/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.14.3/ │ │ │ │ ├── aws-admin-container-v0-10-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-10-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-3/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.15.0/ │ │ │ │ ├── aws-admin-container-v0-11-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── deprecate-log4j-hotpatch-enabled/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── log4j-hotpatch-enabled-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── oci-defaults-docker-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── oci-defaults-docker-setting-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── oci-defaults-max-open-files/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── oci-defaults-resource-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-control-container-v0-7-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── seccomp-default-setting/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.16.0/ │ │ │ │ ├── aws-admin-container-v0-11-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-5/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kernel-modules-autoload-configs/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kernel-modules-autoload-files/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kernel-modules-autoload-restart/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kernel-modules-autoload-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-control-container-v0-7-5/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── schnauzer-v2-generators/ │ │ │ │ ├── Cargo.toml │ │ │ │ ├── build.rs │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.16.1/ │ │ │ │ └── updog-network-affected/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.17.0/ │ │ │ │ ├── aws-admin-container-v0-11-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-6/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-6/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.18.0/ │ │ │ │ ├── aws-admin-container-v0-11-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-7/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-7/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.19.0/ │ │ │ │ └── add-additional-ecs-settings/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.19.1/ │ │ │ │ ├── aws-admin-container-v0-11-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-8/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-8/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.19.2/ │ │ │ │ ├── add-ecs-enable-container-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── certdog-config-file-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── certdog-service-cfg-v0-1-0/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.19.3/ │ │ │ │ ├── aws-admin-container-v0-11-6/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-10/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-6/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-10/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.19.5/ │ │ │ │ ├── aws-admin-container-v0-11-7/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-11/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-7/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-11/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.2.0/ │ │ │ │ ├── add-custom-certificates/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── admin-container-v0-7-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── container-registry-config-restarts/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── container-registry-mirrors/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── hostname-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── hostname-setting-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── kubelet-topology-manager/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.20.0/ │ │ │ │ ├── add-ntp-default-options-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-admin-container-v0-11-8/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-12/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── bootstrap-containers-config-file-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── bootstrap-containers-services-cfg-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── container-runtime-metadata-nvidia/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── container-runtime-nvidia/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── corndog-config-file-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── corndog-services-cfg-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── host-containers-config-file-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── host-containers-config-list-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── prairiedog-config-file-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── prairiedog-services-cfg-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-8/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-control-container-v0-7-12/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── remove-ecs-settings-applier/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── static-pods-add-prefix-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── static-pods-services-cfg-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── thar-be-updates-affected-services-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── thar-be-updates-config-file-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── update-ecs-config-path/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── update-ecs-config-template-path/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.20.5/ │ │ │ │ ├── aws-admin-container-v0-11-9/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-13/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-9/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-13/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.21.0/ │ │ │ │ ├── add-hostname-override-source/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── k8s-reserved-cpus-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── pluto-remove-generators-v0-1-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── pod-infra-container-image-affected-services/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── pod-infra-container-image-remove-settings-generator/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── pod-infra-container-image-services/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.21.1/ │ │ │ │ ├── aws-admin-container-v0-11-10/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-14/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-10/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-14/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.22.0/ │ │ │ │ ├── aws-admin-container-v0-11-11/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-15/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── bootstrap-commands-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── bootstrap-commands-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-11/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-15/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.23.0/ │ │ │ │ ├── kubelet-device-plugins-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-device-plugins-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── nvidia-container-runtime-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── nvidia-container-runtime-settings/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.24.1/ │ │ │ │ ├── aws-admin-container-v0-11-12/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-16/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-12/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-16/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.25.0/ │ │ │ │ ├── aws-admin-container-v0-11-13/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-17/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-device-plugins-time-slicing-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubernetes-service-config/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-13/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-17/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.27.0/ │ │ │ │ └── aws-config/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.28.0/ │ │ │ │ ├── aws-admin-container-v0-11-14/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-18/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kernel-sysctl-hugepages/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-14/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-18/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.3.0/ │ │ │ │ ├── control-container-v0-5-2/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── etc-hosts-service/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── hostname-affects-etc-hosts/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.30.0/ │ │ │ │ ├── aws-admin-container-v0-11-15/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-19/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubernetes-device-ownership-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubernetes-device-ownership-settings/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-15/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-19/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.31.0/ │ │ │ │ ├── aws-admin-container-v0-11-16/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-7-20/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-11-16/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-7-20/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.33.0/ │ │ │ │ ├── aws-remove-schnauzer-admin/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-remove-schnauzer-control/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-control-container-v0-7-19-update/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-control-container-v0-7-20-update/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-remove-source-admin/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-remove-source-control/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── remove-metadata-and-weak-settings-migration/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.4.0/ │ │ │ │ └── registry-mirror-representation/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.4.2/ │ │ │ │ ├── admin-container-v0-7-3/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── control-container-v0-5-3/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.5.0/ │ │ │ │ ├── oci-hooks-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── oci-hooks-setting-metadata/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.5.1/ │ │ │ │ └── control-container-v0-5-4/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.5.3/ │ │ │ │ └── vmware-host-containers/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.6.0/ │ │ │ │ ├── aws-admin-container-v0-7-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-5-5/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── node-taints-representation/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-7-4/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-5-5/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.6.2/ │ │ │ │ ├── add-cfsignal/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── container-registry-credentials/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── container-registry-credentials-metadata/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.7.0/ │ │ │ │ ├── aws-admin-container-v0-8-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-6-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-8-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-6-0/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── v1.8.0/ │ │ │ │ ├── add-autoscaling/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── add-pull-behavior/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-admin-container-v0-9-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── aws-control-container-v0-6-1/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── boot-setting/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── boot-setting-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── cluster-dns-ip-list/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── etc-hosts/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── etc-hosts-metadata/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-pod-pids-limit/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── kubelet-provider-id/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── pki-affected-services/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── build.rs │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ ├── public-admin-container-v0-9-0/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ └── main.rs │ │ │ │ └── public-control-container-v0-6-1/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ └── v1.9.0/ │ │ │ ├── image-gc-thresholds/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── kernel-modules-setting/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── kernel-modules-setting-metadata/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── kubelet-no-daemon-reload/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── ntp-affected-services/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── shibaken-admin-userdata-semantics/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── shibaken-send-metrics/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ └── updates-targets-base-url/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.34.0/ │ │ │ └── kubelet-device-plugins-mig-settings/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.36.0/ │ │ │ └── kubernetes-ecr-credential-providers-expansion/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.37.0/ │ │ │ └── delete-configs-and-services-on-downgrade/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.39.0/ │ │ │ └── kubelet-setting-container-log-single-process-oom-kill/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.40.0/ │ │ │ └── kubelet-device-plugins-cdi-settings/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.41.0/ │ │ │ └── kubernetes-ecr-credential-providers-correction/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.42.0/ │ │ │ └── kubernetes-memory-swap-behavior-setting/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.44.0/ │ │ │ ├── container-runtime-plugins-settings/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ └── container-runtime-snapshotter-setting/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.46.0/ │ │ │ └── kubernetes-static-pods-enabled-setting/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.47.0/ │ │ │ ├── container-runtime-concurrent-download-chunk-size/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ └── host-bootstrap-containers-command-setting/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.50.0/ │ │ │ └── kubernetes-reserved-pid-settings/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.51.0/ │ │ │ ├── kubernetes-additional-settings/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ ├── kubernetes-beta-cpu-manager-policy-options/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ └── kubernetes-ecr-credential-provider-patterns/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── v1.54.0/ │ │ │ ├── kubelet-device-plugins-mps-prefix-settings/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ └── main.rs │ │ │ └── kubelet-device-plugins-mps-settings/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ └── v1.56.0/ │ │ └── image-verifier-plugins-extensible/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── settings-plugins/ │ │ ├── aws-dev/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── aws-ecs-2/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── aws-ecs-3/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── aws-k8s/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── aws-k8s-nvidia/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── metal-dev/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── metal-k8s/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── vmware-dev/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ └── vmware-k8s/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ └── shared-defaults/ │ ├── aws-autoscaling.toml │ ├── aws-bootstrap-container.toml │ ├── aws-creds.toml │ ├── aws-host-containers.toml │ ├── aws-tuf.toml │ ├── boot.toml │ ├── cf-signal.toml │ ├── containerd-cri-pki.toml │ ├── defaults.toml │ ├── docker-daemon-nvidia.toml │ ├── docker-pki.toml │ ├── docker-services.toml │ ├── ecs.toml │ ├── image-verification.toml │ ├── kubernetes-aws-credential-provider.toml │ ├── kubernetes-aws-external-cloud-provider.toml │ ├── kubernetes-aws-graceful-shutdown.toml │ ├── kubernetes-aws.toml │ ├── kubernetes-containerd-nvidia.toml │ ├── kubernetes-containerd.toml │ ├── kubernetes-device-ownership-default-false.toml │ ├── kubernetes-device-ownership-default-true.toml │ ├── kubernetes-kubelet-env-nvidia.toml │ ├── kubernetes-metal.toml │ ├── kubernetes-seccomp-default-false.toml │ ├── kubernetes-seccomp-default-true.toml │ ├── kubernetes-services.toml │ ├── kubernetes-vmware.toml │ ├── lockdown-integrity.toml │ ├── lockdown-none.toml │ ├── metrics.toml │ ├── nvidia-k8s-container-toolkit.toml │ ├── nvidia-k8s-device-plugin-cdi.toml │ ├── nvidia-k8s-device-plugin-legacy.toml │ ├── nvidia-k8s-device-plugin.toml │ ├── oci-defaults-capabilities.toml │ ├── oci-defaults-containerd-cri-resource-limits.toml │ ├── oci-defaults-containerd-cri.toml │ ├── oci-defaults-docker-resource-limits.toml │ ├── oci-defaults-docker.toml │ ├── oci-hooks.toml │ ├── public-bootstrap-containers.toml │ ├── public-host-containers.toml │ ├── public-ntp.toml │ ├── public-tuf.toml │ ├── send-metrics-aws.toml │ └── send-metrics-global.toml ├── tools/ │ ├── .gitignore │ ├── bootconfig/ │ │ └── qemu-x86-console-bootconfig.data │ ├── diff-kernel-config │ ├── install-twoliter.sh │ ├── pubsys/ │ │ ├── Infra.toml.example │ │ ├── policies/ │ │ │ ├── repo-expiration/ │ │ │ │ └── 2w-2w-1w.toml │ │ │ └── ssm/ │ │ │ ├── README.md │ │ │ └── defaults.toml │ │ └── support/ │ │ └── vmware/ │ │ └── import_spec.template │ └── start-local-vm └── variants/ ├── README.md ├── aws-dev/ │ └── Cargo.toml ├── aws-ecs-2/ │ └── Cargo.toml ├── aws-ecs-2-fips/ │ └── Cargo.toml ├── aws-ecs-2-nvidia/ │ └── Cargo.toml ├── aws-ecs-2-nvidia-fips/ │ └── Cargo.toml ├── aws-ecs-3/ │ ├── Cargo.toml │ └── amispec.toml ├── aws-ecs-3-fips/ │ ├── Cargo.toml │ └── amispec.toml ├── aws-ecs-3-nvidia/ │ ├── Cargo.toml │ └── amispec.toml ├── aws-ecs-3-nvidia-fips/ │ ├── Cargo.toml │ └── amispec.toml ├── aws-k8s-1.29/ │ └── Cargo.toml ├── aws-k8s-1.29-fips/ │ └── Cargo.toml ├── aws-k8s-1.29-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.29-nvidia-fips/ │ └── Cargo.toml ├── aws-k8s-1.30/ │ └── Cargo.toml ├── aws-k8s-1.30-fips/ │ └── Cargo.toml ├── aws-k8s-1.30-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.30-nvidia-fips/ │ └── Cargo.toml ├── aws-k8s-1.31/ │ └── Cargo.toml ├── aws-k8s-1.31-fips/ │ └── Cargo.toml ├── aws-k8s-1.31-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.31-nvidia-fips/ │ └── Cargo.toml ├── aws-k8s-1.32/ │ └── Cargo.toml ├── aws-k8s-1.32-fips/ │ └── Cargo.toml ├── aws-k8s-1.32-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.32-nvidia-fips/ │ └── Cargo.toml ├── aws-k8s-1.33/ │ └── Cargo.toml ├── aws-k8s-1.33-fips/ │ └── Cargo.toml ├── aws-k8s-1.33-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.33-nvidia-fips/ │ └── Cargo.toml ├── aws-k8s-1.34/ │ └── Cargo.toml ├── aws-k8s-1.34-fips/ │ └── Cargo.toml ├── aws-k8s-1.34-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.34-nvidia-fips/ │ └── Cargo.toml ├── aws-k8s-1.35/ │ └── Cargo.toml ├── aws-k8s-1.35-fips/ │ └── Cargo.toml ├── aws-k8s-1.35-nvidia/ │ └── Cargo.toml ├── aws-k8s-1.35-nvidia-fips/ │ └── Cargo.toml ├── build.rs ├── metal-dev/ │ └── Cargo.toml ├── shared/ │ ├── amispec-split.toml │ ├── template-split-secboot.ovf │ ├── template-split.ovf │ ├── template-unified-secboot-tpm.ovf │ ├── template-unified-secboot.ovf │ └── template-unified.ovf ├── variants.rs ├── vmware-dev/ │ └── Cargo.toml ├── vmware-k8s-1.29/ │ └── Cargo.toml ├── vmware-k8s-1.29-fips/ │ └── Cargo.toml ├── vmware-k8s-1.30/ │ └── Cargo.toml ├── vmware-k8s-1.30-fips/ │ └── Cargo.toml ├── vmware-k8s-1.31/ │ └── Cargo.toml ├── vmware-k8s-1.31-fips/ │ └── Cargo.toml ├── vmware-k8s-1.32/ │ └── Cargo.toml ├── vmware-k8s-1.32-fips/ │ └── Cargo.toml ├── vmware-k8s-1.33/ │ └── Cargo.toml ├── vmware-k8s-1.33-fips/ │ └── Cargo.toml ├── vmware-k8s-1.34/ │ └── Cargo.toml ├── vmware-k8s-1.34-fips/ │ └── Cargo.toml ├── vmware-k8s-1.35/ │ └── Cargo.toml └── vmware-k8s-1.35-fips/ └── Cargo.toml