├── .aiexclude ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── enhancement.yaml │ └── question.yaml └── dependabot.yml ├── .gitignore ├── .golangci.yaml ├── LICENSE ├── LICENSE_TEMPLATE ├── Makefile ├── Makefile.build ├── Makefile.e2e ├── Makefile.e2e.ci ├── Makefile.gen ├── Makefile.oss ├── Makefile.oss.prow ├── Makefile.reconcilermanager ├── Makefile.release ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY.md ├── cmd ├── admission-webhook │ └── main.go ├── gcenode-askpass-sidecar │ └── main.go ├── gen-core-scoper │ ├── api_resources_1_15.txt │ ├── api_resources_1_18.txt │ ├── main.go │ └── nomos_resources.txt ├── helm-sync │ └── main.go ├── hydration-controller │ └── main.go ├── junit-report │ ├── main.go │ └── resetfailure │ │ ├── main_test.go │ │ ├── reset_failure.go │ │ └── reset_failure_test.go ├── nomos │ ├── README.md │ ├── bugreport │ │ └── bugreport.go │ ├── flags │ │ └── flags.go │ ├── hydrate │ │ └── hydrate.go │ ├── initialize │ │ ├── init.go │ │ ├── init_test.go │ │ ├── main_test.go │ │ └── template_files.go │ ├── migrate │ │ ├── configmanagement.go │ │ ├── migrate.go │ │ └── monorepo.go │ ├── nomos.go │ ├── parse │ │ ├── constants.go │ │ ├── find_files.go │ │ ├── find_files_test.go │ │ └── main_test.go │ ├── status │ │ ├── client.go │ │ ├── cluster_state.go │ │ ├── cluster_state_test.go │ │ ├── main_test.go │ │ ├── resource_status.go │ │ ├── resource_status_test.go │ │ ├── status.go │ │ └── status_test.go │ ├── util │ │ ├── configmanagement.go │ │ ├── constants.go │ │ ├── errors.go │ │ ├── util.go │ │ ├── write.go │ │ └── write_object.go │ ├── version │ │ ├── main_test.go │ │ ├── version.go │ │ └── version_test.go │ └── vet │ │ ├── main_test.go │ │ ├── vet.go │ │ ├── vet_impl.go │ │ └── vet_test.go ├── nomoserrors │ ├── examples │ │ └── examples.go │ └── main.go ├── oci-sync │ └── main.go ├── reconciler-manager │ └── main.go ├── reconciler │ └── main.go └── resource-group │ └── main.go ├── dashboard ├── README.md └── cloud_monitoring_dashboard.json ├── docs ├── code-of-conduct.md ├── contributing.md ├── custom-metric-filter.md ├── deletion-propagation.md ├── design-docs │ ├── 00-template.md │ ├── 01-explicit-only-namespace-strategy.md │ └── 02-custom-root-reconciler-clusterrole.md ├── development.md ├── installation.md ├── memory-usage-reduce-1160-1180.md ├── metric-resource-attributes.md ├── performance-boost-111-vs-112.md ├── testing.md ├── usage.md └── watch-filtering │ ├── README.md │ ├── scenario-a-results.png │ ├── scenario-a-v1.18.3.png │ ├── scenario-a-v1.19.0.png │ ├── scenario-b-results.png │ ├── scenario-b-v1.18.3.png │ ├── scenario-b-v1.19.0.png │ ├── scenario-c-results.png │ ├── scenario-c-v1.18.3.png │ └── scenario-c-v1.19.0.png ├── e2e ├── doc.go ├── flags.go ├── nomostest │ ├── clean.go │ ├── client.go │ ├── clusters │ │ ├── gke.go │ │ └── kind.go │ ├── clusterversion │ │ ├── cluster_version.go │ │ └── cluster_version_test.go │ ├── config-connector.go │ ├── config_sync.go │ ├── config_sync_sources.go │ ├── crds.go │ ├── docker.go │ ├── docker │ │ └── docker.go │ ├── git-server.go │ ├── gitproviders │ │ ├── bitbucket.go │ │ ├── cloud_source_repository.go │ │ ├── git-provider.go │ │ ├── github.go │ │ ├── gitlab.go │ │ ├── local.go │ │ ├── repository.go │ │ ├── secure_source_manager.go │ │ └── util │ │ │ ├── reponame.go │ │ │ └── reponame_test.go │ ├── iam │ │ └── account.go │ ├── kustomizecomponents │ │ └── validate.go │ ├── metrics │ │ ├── expectations.go │ │ └── validate.go │ ├── name.go │ ├── new.go │ ├── nt.go │ ├── ntopts │ │ ├── multi_repo.go │ │ ├── new.go │ │ └── test_type.go │ ├── oci-image-verification-server.go │ ├── policy │ │ └── reposync.go │ ├── portforwarder │ │ └── port_forwarder.go │ ├── prometheus.go │ ├── prometheus_metrics.go │ ├── registry_server.go │ ├── registryproviders │ │ ├── artifact_registry.go │ │ ├── helm_chart.go │ │ ├── local.go │ │ ├── oci_image.go │ │ └── registry_provider.go │ ├── reset.go │ ├── retry │ │ └── retry.go │ ├── ssh.go │ ├── sync-status-watch-controller.go │ ├── sync.go │ ├── syncsource │ │ ├── set.go │ │ └── syncsource.go │ ├── taskgroup │ │ └── taskgroup.go │ ├── testing │ │ ├── env.go │ │ ├── feature.go │ │ ├── ntb.go │ │ └── wrapper.go │ ├── testkubeclient │ │ ├── client.go │ │ ├── labels.go │ │ └── object.go │ ├── testlogger │ │ └── testlogger.go │ ├── testpredicates │ │ └── predicates.go │ ├── testresourcegroup │ │ └── resourcegroup.go │ ├── testshell │ │ ├── gcloud.go │ │ ├── helm_client.go │ │ ├── kubectl.go │ │ ├── oci_client.go │ │ └── shell.go │ ├── testutils │ │ ├── finalizer.go │ │ ├── fleet_membership.go │ │ └── log_levels.go │ ├── testwatcher │ │ └── watch.go │ ├── validate.go │ ├── wait.go │ ├── wait_for_sync.go │ ├── webhook.go │ └── workloadidentity │ │ └── pool.go ├── raw-nomos │ └── manifests │ │ ├── importer_acme.yaml │ │ ├── importer_no-policy-dir.yaml │ │ ├── importer_repoless-no-ns.yaml │ │ ├── importer_repoless.yaml │ │ ├── importer_some-nonexistent-policydir.yaml │ │ ├── multi-repo-configmaps.yaml │ │ ├── source-format_hierarchy.yaml │ │ └── source-format_unstructured.yaml ├── testcases │ ├── acme_test.go │ ├── admission_test.go │ ├── adopt_client_side_applied_test.go │ ├── apiservice_test.go │ ├── basic_test.go │ ├── cli_test.go │ ├── cluster_resources_test.go │ ├── cluster_selectors_test.go │ ├── composition_test.go │ ├── custom_resource_definitions_schema_test.go │ ├── custom_resource_definitions_test.go │ ├── custom_resources_test.go │ ├── declared_fields_test.go │ ├── gatekeeper_test.go │ ├── gcenode_test.go │ ├── git_sync_test.go │ ├── github_test.go │ ├── helm_sync_test.go │ ├── hydration_test.go │ ├── ignore_mutation_test.go │ ├── invalid_auth_test.go │ ├── invalid_git_branch_test.go │ ├── kcc_test.go │ ├── kptfile_test.go │ ├── lifecycle_directives_test.go │ ├── local_config_test.go │ ├── main_test.go │ ├── managed_resources_test.go │ ├── multi_sync_test.go │ ├── multiversion_test.go │ ├── mutating_admission_policy_test.go │ ├── namespace_repo_test.go │ ├── namespace_selectors_test.go │ ├── namespace_strategy_test.go │ ├── namespaces_test.go │ ├── no_ssl_verify_test.go │ ├── oci_signature_verification_test.go │ ├── oci_sync_test.go │ ├── otel_collector_test.go │ ├── override_git_sync_depth_test.go │ ├── override_log_level_test.go │ ├── override_reconcile_timeout_test.go │ ├── override_resource_limits_test.go │ ├── override_role_refs_test.go │ ├── policy_dir_test.go │ ├── postsync_logging_test.go │ ├── preserve_fields_test.go │ ├── private_cert_secret_test.go │ ├── profiling_test.go │ ├── proxy_test.go │ ├── reconciler_finalizer_test.go │ ├── reconciler_manager_test.go │ ├── remediator_test.go │ ├── resource_group_controller_test.go │ ├── root_sync_test.go │ ├── ssh_known_hosts_test.go │ ├── status_enablement_test.go │ ├── stress_test.go │ ├── sync_ordering_test.go │ └── workload_identity_test.go ├── testdata │ ├── accounting-namespace.yaml │ ├── apiservice │ │ ├── apiservice.yaml │ │ ├── namespace-custom-metrics.yaml │ │ ├── namespace-resilient.yaml │ │ ├── namespace.yaml │ │ └── rbac.yaml │ ├── autopilot-keepalive │ │ └── deployment.yaml │ ├── clusterrole-create.yaml │ ├── clusterrole-modify.yaml │ ├── configmanagement │ │ ├── 1.18.0 │ │ │ └── config-management-operator.yaml │ │ └── uninstall │ │ │ └── uninstall_configmanagement.sh │ ├── configsync-kcc │ │ ├── kcc-empty │ │ │ └── README.md │ │ └── kcc │ │ │ ├── enable-pubsub.yaml │ │ │ ├── namespace.yaml │ │ │ ├── policy-member.yaml │ │ │ ├── pubsub-subscription.yaml │ │ │ ├── pubsub-topic.yaml │ │ │ └── serviceaccount.yaml │ ├── customresources │ │ ├── anvil-heavier-management-disabled.yaml │ │ ├── anvil-heavier-v2.yaml │ │ ├── anvil-heavier.yaml │ │ ├── anvil.yaml │ │ ├── challenges-acme-cert-manager-io.yaml │ │ ├── challenges-acme-cert-manager-io_with_new_label.yaml │ │ ├── changed_schema_crds │ │ │ ├── new_schema_cr.yaml │ │ │ ├── new_schema_crd.yaml │ │ │ ├── old_schema_cr.yaml │ │ │ └── old_schema_crd.yaml │ │ ├── clusteranvil-heavier-management-disabled.yaml │ │ ├── clusteranvil-heavier.yaml │ │ ├── clusteranvil.yaml │ │ ├── solrclouds-solr-apache-org.yaml │ │ └── v1_crds │ │ │ ├── anvil-crd-only-v2.yaml │ │ │ ├── anvil-crd-v2.yaml │ │ │ ├── anvil-crd.yaml │ │ │ ├── clusteranvil-crd-v2.yaml │ │ │ └── clusteranvil-crd.yaml │ ├── deployment-helloworld.yaml │ ├── dir-namespace.yaml │ ├── gatekeeper │ │ ├── constraint-crd.yaml │ │ ├── constraint-template-crd.yaml │ │ ├── constraint-template.yaml │ │ └── constraint.yaml │ ├── helm-charts │ │ ├── anvil-set │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── anvil.yaml │ │ │ │ ├── crd-anvil.yaml │ │ │ │ └── ns.yaml │ │ │ └── values.yaml │ │ ├── coredns │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole-autoscaler.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding-autoscaler.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-autoscaler.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment-autoscaler.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── service-metrics.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount-autoscaler.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── empty │ │ │ └── Chart.yaml │ │ ├── ns-chart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── simple-ns-chart │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── deployment.yaml │ │ │ └── values.yaml │ │ ├── simple-pause │ │ │ ├── v1.0.0 │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── deployment.yaml │ │ │ │ └── values.yaml │ │ │ └── v1.1.0 │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── deployment.yaml │ │ │ │ └── values.yaml │ │ └── simple │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ └── deployment.yaml │ │ │ └── values.yaml │ ├── hydration │ │ ├── compiled-json │ │ │ ├── helm-components │ │ │ │ └── simple-ns │ │ │ │ │ └── deployment_simple-pause.json │ │ │ ├── helm-overlay │ │ │ │ ├── clusterrole_my-coredns-coredns.json │ │ │ │ ├── clusterrolebinding_my-coredns-coredns.json │ │ │ │ └── coredns │ │ │ │ │ ├── configmap_my-coredns-coredns.json │ │ │ │ │ ├── deployment_my-coredns-coredns.json │ │ │ │ │ └── service_my-coredns-coredns.json │ │ │ ├── kustomize-components │ │ │ │ ├── namespace_tenant-a.json │ │ │ │ ├── namespace_tenant-b.json │ │ │ │ ├── namespace_tenant-c.json │ │ │ │ ├── tenant-a │ │ │ │ │ ├── networkpolicy_deny-all.json │ │ │ │ │ ├── role_tenant-admin.json │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.json │ │ │ │ ├── tenant-b │ │ │ │ │ ├── networkpolicy_deny-all.json │ │ │ │ │ ├── role_tenant-admin.json │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.json │ │ │ │ └── tenant-c │ │ │ │ │ ├── networkpolicy_deny-all.json │ │ │ │ │ ├── role_tenant-admin.json │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.json │ │ │ ├── relative-path │ │ │ │ ├── clusterrole_pod-creator.json │ │ │ │ ├── foo │ │ │ │ │ ├── rolebinding_pod-creators.json │ │ │ │ │ └── serviceaccount_foo-ksa-dev.json │ │ │ │ └── namespace_foo.json │ │ │ ├── remote-base │ │ │ │ ├── namespace_tenant-a.json │ │ │ │ └── tenant-a │ │ │ │ │ ├── networkpolicy_deny-all.json │ │ │ │ │ ├── role_tenant-admin.json │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.json │ │ │ └── wet-repo │ │ │ │ ├── clusterrole_namespace-reader.json │ │ │ │ └── namespace_gamestore.json │ │ ├── compiled │ │ │ ├── helm-components │ │ │ │ └── simple-ns │ │ │ │ │ └── deployment_simple-pause.yaml │ │ │ ├── helm-overlay │ │ │ │ ├── clusterrole_my-coredns-coredns.yaml │ │ │ │ ├── clusterrolebinding_my-coredns-coredns.yaml │ │ │ │ └── coredns │ │ │ │ │ ├── configmap_my-coredns-coredns.yaml │ │ │ │ │ ├── deployment_my-coredns-coredns.yaml │ │ │ │ │ └── service_my-coredns-coredns.yaml │ │ │ ├── kustomize-components │ │ │ │ ├── namespace_tenant-a.yaml │ │ │ │ ├── namespace_tenant-b.yaml │ │ │ │ ├── namespace_tenant-c.yaml │ │ │ │ ├── tenant-a │ │ │ │ │ ├── networkpolicy_deny-all.yaml │ │ │ │ │ ├── role_tenant-admin.yaml │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.yaml │ │ │ │ ├── tenant-b │ │ │ │ │ ├── networkpolicy_deny-all.yaml │ │ │ │ │ ├── role_tenant-admin.yaml │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.yaml │ │ │ │ └── tenant-c │ │ │ │ │ ├── networkpolicy_deny-all.yaml │ │ │ │ │ ├── role_tenant-admin.yaml │ │ │ │ │ └── rolebinding_tenant-admin-rolebinding.yaml │ │ │ ├── relative-path │ │ │ │ ├── clusterrole_pod-creator.yaml │ │ │ │ ├── foo │ │ │ │ │ ├── rolebinding_pod-creators.yaml │ │ │ │ │ └── serviceaccount_foo-ksa-dev.yaml │ │ │ │ └── namespace_foo.yaml │ │ │ └── remote-base │ │ │ │ ├── namespace_tenant-a.yaml │ │ │ │ └── tenant-a │ │ │ │ ├── networkpolicy_deny-all.yaml │ │ │ │ ├── role_tenant-admin.yaml │ │ │ │ └── rolebinding_tenant-admin-rolebinding.yaml │ │ ├── deprecated-GK │ │ │ ├── charts │ │ │ │ └── prometheus-operator │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── cleanup-job.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── get-tprs-job.yaml │ │ │ │ │ └── values.yaml │ │ │ └── kustomization.yaml │ │ ├── dry-repo-without-kustomization │ │ │ ├── base │ │ │ │ ├── charts │ │ │ │ │ └── coredns │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole-autoscaler.yaml │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding-autoscaler.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap-autoscaler.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment-autoscaler.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ │ ├── service-metrics.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount-autoscaler.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── overlay │ │ │ │ ├── ignore-deployment-mutation-patch.yaml │ │ │ │ └── kustomization.yaml │ │ ├── external-files │ │ │ ├── base │ │ │ │ └── kustomization.yaml │ │ │ ├── external-data.txt │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ └── overlay │ │ │ │ └── kustomization.yaml │ │ ├── helm-components-remote-values-kustomization.yaml │ │ ├── helm-components │ │ │ ├── charts │ │ │ │ └── simple-ns-chart │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ └── deployment.yaml │ │ │ │ │ └── values.yaml │ │ │ └── kustomization.yaml │ │ ├── helm-overlay │ │ │ ├── base │ │ │ │ ├── base_value_overrides.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── charts │ │ │ │ └── coredns │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole-autoscaler.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding-autoscaler.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-autoscaler.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment-autoscaler.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── service-metrics.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount-autoscaler.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── kustomization.yaml │ │ │ └── overlay │ │ │ │ ├── ignore-deployment-mutation-patch.yaml │ │ │ │ └── kustomization.yaml │ │ ├── invalid-kustomization.yaml │ │ ├── kustomize-components │ │ │ ├── base │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ └── rolebinding.yaml │ │ │ ├── kustomization.yml │ │ │ ├── tenant-a │ │ │ │ └── kustomization.yaml │ │ │ ├── tenant-b │ │ │ │ └── kustomization.yaml │ │ │ └── tenant-c │ │ │ │ └── kustomization.yaml │ │ ├── namespace-repo │ │ │ ├── base │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ └── rolebinding.yaml │ │ │ ├── kustomization.yml │ │ │ └── test-ns │ │ │ │ └── kustomization.yaml │ │ ├── relative-path │ │ │ ├── base │ │ │ │ ├── foo │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── namespace.yaml │ │ │ │ │ ├── pod-creator-rolebinding.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── pod-creator-clusterrole.yaml │ │ │ └── overlays │ │ │ │ └── dev │ │ │ │ └── kustomization.yaml │ │ ├── remote-base │ │ │ ├── kustomization.yaml │ │ │ └── overlay │ │ │ │ └── kustomization.yaml │ │ ├── remote-overlay-kustomization.yaml │ │ ├── remote-resources-kustomization.yaml │ │ ├── remote-values.yaml │ │ ├── resource-duplicate │ │ │ ├── kustomization.yaml │ │ │ └── namespace_tenant-a.yaml │ │ └── wet-repo │ │ │ ├── clusterrole_namespace-reader.yaml │ │ │ └── namespace_gamestore.yaml │ ├── invalid-hierarchy-namespace-selectors │ │ ├── namespaces │ │ │ ├── dynamic-ns-selector.yaml │ │ │ └── unknown-select-mode.yaml │ │ └── system │ │ │ ├── README.md │ │ │ └── repo.yaml │ ├── invalid-unstructured-namespace-selectors │ │ ├── dynamic-ns-selector.yaml │ │ └── unknown-select-mode.yaml │ ├── junit-report-updated.xml │ ├── junit-report.xml │ ├── low-priority-pause-deployment.yaml │ ├── namespace-repo-bookinfo │ │ └── role.yaml │ ├── no-last-apply.yaml │ ├── object-in-cms-namespace │ │ ├── cmsconfigmap.yaml │ │ └── cmsrole.yaml │ ├── otel-collector │ │ ├── otel-cm-full-gcm.yaml │ │ ├── otel-cm-kustomize-rejected-labels.yaml │ │ └── otel-cm-monarch-rejected-labels.yaml │ ├── proxy │ │ ├── configs │ │ │ ├── proxy-enabled.yaml │ │ │ └── tinyproxy.yaml │ │ └── namespace.yaml │ ├── replicaset-helloworld.yaml │ ├── reserved_namespaces │ │ ├── namespace.default.yaml │ │ ├── namespace.gatekeeper-system.yaml │ │ ├── namespace.kube-public.yaml │ │ ├── namespace.kube-system.yaml │ │ ├── namespace.kube-whatever.yaml │ │ ├── service.yaml │ │ ├── unmanaged-namespace.default.yaml │ │ ├── unmanaged-namespace.gatekeeper-system.yaml │ │ ├── unmanaged-namespace.kube-public.yaml │ │ ├── unmanaged-namespace.kube-system.yaml │ │ ├── unmanaged-namespace.kube-whatever.yaml │ │ ├── unmanaged-service.default.yaml │ │ ├── unmanaged-service.gatekeeper-system.yaml │ │ ├── unmanaged-service.kube-public.yaml │ │ ├── unmanaged-service.kube-system.yaml │ │ └── unmanaged-service.kube-whatever.yaml │ ├── robert-rolebinding.yaml │ └── subdir-namespace.yaml └── testinfra │ ├── README.md │ └── terraform │ ├── Makefile │ ├── README.md │ ├── common │ ├── registries.tf │ ├── service_accounts.tf │ ├── services.tf │ └── source_repositories.tf │ ├── environments.tf │ ├── main.tf │ ├── modules │ └── service_account │ │ ├── service_account.tf │ │ └── variables.tf │ ├── prow │ ├── networks.tf │ ├── registries.tf │ ├── service_accounts.tf │ └── services.tf │ └── variables.tf ├── examples ├── acme │ ├── cluster │ │ ├── admin-clusterrole.yaml │ │ ├── namespace-viewer-clusterrole.yaml │ │ ├── namespace-viewers.yaml │ │ ├── rbac-viewer-clusterrole.yaml │ │ └── rbac-viewers.yaml │ ├── namespaces │ │ ├── eng │ │ │ ├── alice-rolebinding.yaml │ │ │ ├── analytics │ │ │ │ ├── mike-rolebinding.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── backend │ │ │ │ ├── bob-rolebinding.yaml │ │ │ │ ├── inventory-configmap.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── frontend │ │ │ │ ├── inventory-configmap.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── quota.yaml │ │ │ ├── sre-rolebinding.yaml │ │ │ └── sre-supported-selector.yaml │ │ └── rnd │ │ │ ├── new-prj │ │ │ ├── acme-admin-role.yaml │ │ │ └── namespace.yaml │ │ │ ├── newer-prj │ │ │ └── namespace.yaml │ │ │ └── quota.yaml │ └── system │ │ ├── rbac-hierarchy.yaml │ │ └── repo.yaml ├── errors │ ├── cluster │ │ ├── illegal-cluster-subdir │ │ │ ├── illegal-subdirectory-object-2.yaml │ │ │ └── illegal-subdirectory-object.yaml │ │ └── not-syncable-clusterrolebinding.yaml │ ├── expected-errs.txt │ ├── namespaces │ │ ├── dev │ │ │ ├── alice-rolebinding.yaml │ │ │ ├── dev-namespace │ │ │ │ ├── alice-rolebinding-2.yaml │ │ │ │ ├── illegal-child │ │ │ │ │ └── .gitkeep │ │ │ │ └── namespace.yaml │ │ │ └── duplicate-dir │ │ │ │ └── .gitkeep │ │ ├── illegal.dir.name │ │ │ └── .gitkeep │ │ ├── namespace.yaml │ │ └── prod │ │ │ ├── duplicate-dir │ │ │ └── .gitkeep │ │ │ ├── illegal-resource-kind.yaml │ │ │ ├── namespace-selector.yaml │ │ │ ├── prod-namespace │ │ │ ├── illegal-sync.yaml │ │ │ ├── jamal-clusterrolebinding.yaml │ │ │ ├── kesim-rolebinding.yaml │ │ │ ├── nameless-rolebinding.yaml │ │ │ ├── namespace-1.yaml │ │ │ ├── namespace-2.yaml │ │ │ ├── no-such-cluster-selector.yaml │ │ │ ├── quota-1.yaml │ │ │ └── quota-2.yaml │ │ │ └── reserved-namespace │ │ │ └── .gitkeep │ └── system │ │ ├── config-management.yaml │ │ └── rbac.yaml ├── foo-corp │ ├── README.md │ ├── cluster │ │ ├── fulfillmentcenter-crd.yaml │ │ ├── namespace-reader-clusterrole.yaml │ │ ├── namespace-reader-clusterrolebinding.yaml │ │ ├── pod-creator-clusterrole.yaml │ │ └── pod-security-policy.yaml │ ├── namespaces │ │ ├── audit │ │ │ └── namespace.yaml │ │ ├── online │ │ │ └── shipping-app-backend │ │ │ │ ├── pod-creator-rolebinding.yaml │ │ │ │ ├── quota.yaml │ │ │ │ ├── shipping-dev │ │ │ │ ├── job-creator-role.yaml │ │ │ │ ├── job-creator-rolebinding.yaml │ │ │ │ └── namespace.yaml │ │ │ │ ├── shipping-prod │ │ │ │ ├── fulfillmentcenter.yaml │ │ │ │ └── namespace.yaml │ │ │ │ └── shipping-staging │ │ │ │ ├── fulfillmentcenter.yaml │ │ │ │ └── namespace.yaml │ │ ├── sre-rolebinding.yaml │ │ ├── sre-supported-selector.yaml │ │ └── viewers-rolebinding.yaml │ └── system │ │ ├── README.md │ │ └── repo.yaml ├── hierarchy-repo-with-cluster-selectors │ ├── README.md │ ├── clusterregistry │ │ ├── cluster-dev.yaml │ │ ├── cluster-prod.yaml │ │ ├── cluster-selector-dev.yaml │ │ └── cluster-selector-prod.yaml │ ├── namespaces │ │ ├── bookstore1 │ │ │ ├── cm-all.yaml │ │ │ ├── cm-dev-staging.yaml │ │ │ ├── cm-dev.yaml │ │ │ ├── cm-disabled.yaml │ │ │ ├── cm-prod.yaml │ │ │ ├── cm-staging.yaml │ │ │ ├── local-config.yaml │ │ │ └── ns.yaml │ │ ├── bookstore2 │ │ │ ├── ns-cluster-dev.yaml │ │ │ ├── ns-cluster-prod.yaml │ │ │ └── ns-cluster-staging.yaml │ │ ├── cm-bookstore1.yaml │ │ ├── cm-bookstore2.yaml │ │ ├── namespace-selector-bookstore1.yaml │ │ ├── namespace-selector-bookstore2.yaml │ │ └── resource-quota.yaml │ └── system │ │ ├── README.md │ │ └── repo.yaml ├── kubevirt-compiled │ ├── bookstore1 │ │ └── virtualmachine_testvm.yaml │ ├── clusterrole_kubevirt-operator.yaml │ ├── clusterrole_kubevirt.io-operator.yaml │ ├── clusterrolebinding_kubevirt-operator.yaml │ ├── customresourcedefinition_kubevirts.kubevirt.io.yaml │ ├── kubevirt │ │ ├── deployment_virt-operator.yaml │ │ ├── kubevirt_kubevirt.yaml │ │ ├── role_kubevirt-operator.yaml │ │ ├── rolebinding_kubevirt-operator-rolebinding.yaml │ │ └── serviceaccount_kubevirt-operator.yaml │ ├── namespace_bookstore1.yaml │ ├── namespace_kubevirt.yaml │ └── priorityclass_kubevirt-cluster-critical.yaml ├── kubevirt │ ├── README.md │ ├── kubevirt-cr.yaml │ ├── kubevirt-operator.yaml │ ├── ns-bookstore1.yaml │ └── vm.yaml ├── mutating-admission-policies │ ├── README.md │ └── config-sync-node-placement.yaml ├── namespaced-repo-with-Kptfile │ ├── Kptfile │ └── deploy.yaml ├── parse-errors │ ├── cluster-specific-collision │ │ ├── cluster │ │ │ ├── default_clusterrole.yaml │ │ │ └── prod_clusterrole.yaml │ │ ├── clusterregistry │ │ │ ├── prod_cluster.yaml │ │ │ └── prod_selector.yaml │ │ └── system │ │ │ └── repo.yaml │ ├── empty-system-dir │ │ ├── expected-errs.txt │ │ └── system │ │ │ └── .gitkeep │ ├── illegal-hierarchy-mode │ │ └── system │ │ │ ├── repo.yaml │ │ │ └── sync.yaml │ ├── illegal-namespace-hierarchyconfig │ │ ├── expected-errs.txt │ │ └── system │ │ │ ├── config.yaml │ │ │ └── repo.yaml │ ├── illegal-namespace-in-clusterregistry │ │ ├── clusterregistry │ │ │ └── namespace.yaml │ │ ├── expected-errs.txt │ │ └── system │ │ │ └── repo.yaml │ ├── illegal-namespace-selector │ │ ├── expected-errs.txt │ │ ├── namespaces │ │ │ └── my-namespace │ │ │ │ ├── illegal-namespace-selector.yaml │ │ │ │ └── namespace.yaml │ │ └── system │ │ │ └── repo.yaml │ ├── illegal-system-kind │ │ ├── expected-errs.txt │ │ └── system │ │ │ ├── namespace.yaml │ │ │ └── repo.yaml │ ├── invalid-crd-name │ │ ├── expected-errs.txt │ │ └── system │ │ │ └── repo.yaml │ ├── invalid-resources-hierarchyconfig │ │ ├── expected-errs.txt │ │ └── system │ │ │ ├── config-management.yaml │ │ │ └── invalid.yaml │ ├── invalid-yaml │ │ ├── namespaces │ │ │ ├── invalid.yaml │ │ │ └── invalid2.yaml │ │ └── system │ │ │ └── config-management.yaml │ ├── missing-repo │ │ ├── expected-errs.txt │ │ └── system │ │ │ └── config-management.yaml │ ├── missing-system-dir │ │ ├── .gitkeep │ │ └── expected-errs.txt │ ├── multiple-repos │ │ ├── expected-errs.txt │ │ └── system │ │ │ ├── repo-1.yaml │ │ │ └── repo-2.yaml │ ├── resources-without-namespace │ │ ├── expected-errs.txt │ │ ├── namespaces │ │ │ ├── invalid-abstract │ │ │ │ ├── abstract-child │ │ │ │ │ └── .gitkeep │ │ │ │ └── quota.yaml │ │ │ └── valid-abstract │ │ │ │ ├── invalid-abstract-namespace │ │ │ │ └── quota.yaml │ │ │ │ ├── quota.yaml │ │ │ │ └── valid-namespace │ │ │ │ └── namespace.yaml │ │ └── system │ │ │ └── repo.yaml │ ├── root-repo-with-Kptfile │ │ ├── cluster │ │ │ ├── Kptfile │ │ │ └── prod_clusterrole.yaml │ │ ├── clusterregistry │ │ │ ├── prod_cluster.yaml │ │ │ └── prod_selector.yaml │ │ └── system │ │ │ └── repo.yaml │ └── unsupported-repo-version │ │ ├── expected-errs.txt │ │ └── system │ │ └── repo.yaml ├── post-sync │ ├── .dockerignore │ ├── .gitignore │ ├── .golangci.yaml │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── controller.go │ ├── controller_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── sync-watch-manifest.yaml ├── repo-with-cluster-selectors-compiled-json-without-clusters-flag │ ├── cluster-dev │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.json │ │ │ ├── configmap_cm-bookstore1.json │ │ │ ├── configmap_cm-dev-staging.json │ │ │ ├── configmap_cm-dev.json │ │ │ └── configmap_cm-disabled.json │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.json │ │ │ ├── configmap_cm1-bookstore2.json │ │ │ └── resourcequota_quota.json │ │ ├── namespace_bookstore1.json │ │ └── namespace_bookstore2.json │ ├── cluster-prod │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.json │ │ │ ├── configmap_cm-bookstore1.json │ │ │ ├── configmap_cm-disabled.json │ │ │ └── configmap_cm-prod.json │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.json │ │ │ ├── configmap_cm1-bookstore2.json │ │ │ └── resourcequota_quota.json │ │ ├── namespace_bookstore1.json │ │ └── namespace_bookstore2.json │ ├── cluster-staging │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.json │ │ │ ├── configmap_cm-bookstore1.json │ │ │ ├── configmap_cm-dev-staging.json │ │ │ ├── configmap_cm-disabled.json │ │ │ └── configmap_cm-staging.json │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.json │ │ │ ├── configmap_cm1-bookstore2.json │ │ │ └── resourcequota_quota.json │ │ ├── namespace_bookstore1.json │ │ └── namespace_bookstore2.json │ └── defaultcluster │ │ ├── bookstore1 │ │ ├── configmap_cm-all.json │ │ ├── configmap_cm-bookstore1.json │ │ └── configmap_cm-disabled.json │ │ └── namespace_bookstore1.json ├── repo-with-cluster-selectors-compiled-json │ ├── cluster-dev │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.json │ │ │ ├── configmap_cm-bookstore1.json │ │ │ ├── configmap_cm-dev-staging.json │ │ │ ├── configmap_cm-dev.json │ │ │ └── configmap_cm-disabled.json │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.json │ │ │ ├── configmap_cm1-bookstore2.json │ │ │ └── resourcequota_quota.json │ │ ├── namespace_bookstore1.json │ │ └── namespace_bookstore2.json │ ├── cluster-prod │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.json │ │ │ ├── configmap_cm-bookstore1.json │ │ │ ├── configmap_cm-disabled.json │ │ │ └── configmap_cm-prod.json │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.json │ │ │ ├── configmap_cm1-bookstore2.json │ │ │ └── resourcequota_quota.json │ │ ├── namespace_bookstore1.json │ │ └── namespace_bookstore2.json │ └── cluster-staging │ │ ├── bookstore1 │ │ ├── configmap_cm-all.json │ │ ├── configmap_cm-bookstore1.json │ │ ├── configmap_cm-dev-staging.json │ │ ├── configmap_cm-disabled.json │ │ └── configmap_cm-staging.json │ │ ├── bookstore2 │ │ ├── configmap_cm-bookstore2.json │ │ ├── configmap_cm1-bookstore2.json │ │ └── resourcequota_quota.json │ │ ├── namespace_bookstore1.json │ │ └── namespace_bookstore2.json ├── repo-with-cluster-selectors-compiled-without-clusters-flag │ ├── cluster-dev │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.yaml │ │ │ ├── configmap_cm-bookstore1.yaml │ │ │ ├── configmap_cm-dev-staging.yaml │ │ │ ├── configmap_cm-dev.yaml │ │ │ └── configmap_cm-disabled.yaml │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.yaml │ │ │ ├── configmap_cm1-bookstore2.yaml │ │ │ └── resourcequota_quota.yaml │ │ ├── namespace_bookstore1.yaml │ │ └── namespace_bookstore2.yaml │ ├── cluster-prod │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.yaml │ │ │ ├── configmap_cm-bookstore1.yaml │ │ │ ├── configmap_cm-disabled.yaml │ │ │ └── configmap_cm-prod.yaml │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.yaml │ │ │ ├── configmap_cm1-bookstore2.yaml │ │ │ └── resourcequota_quota.yaml │ │ ├── namespace_bookstore1.yaml │ │ └── namespace_bookstore2.yaml │ ├── cluster-staging │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.yaml │ │ │ ├── configmap_cm-bookstore1.yaml │ │ │ ├── configmap_cm-dev-staging.yaml │ │ │ ├── configmap_cm-disabled.yaml │ │ │ └── configmap_cm-staging.yaml │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.yaml │ │ │ ├── configmap_cm1-bookstore2.yaml │ │ │ └── resourcequota_quota.yaml │ │ ├── namespace_bookstore1.yaml │ │ └── namespace_bookstore2.yaml │ └── defaultcluster │ │ ├── bookstore1 │ │ ├── configmap_cm-all.yaml │ │ ├── configmap_cm-bookstore1.yaml │ │ └── configmap_cm-disabled.yaml │ │ └── namespace_bookstore1.yaml ├── repo-with-cluster-selectors-compiled │ ├── cluster-dev │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.yaml │ │ │ ├── configmap_cm-bookstore1.yaml │ │ │ ├── configmap_cm-dev-staging.yaml │ │ │ ├── configmap_cm-dev.yaml │ │ │ └── configmap_cm-disabled.yaml │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.yaml │ │ │ ├── configmap_cm1-bookstore2.yaml │ │ │ └── resourcequota_quota.yaml │ │ ├── namespace_bookstore1.yaml │ │ └── namespace_bookstore2.yaml │ ├── cluster-prod │ │ ├── bookstore1 │ │ │ ├── configmap_cm-all.yaml │ │ │ ├── configmap_cm-bookstore1.yaml │ │ │ ├── configmap_cm-disabled.yaml │ │ │ └── configmap_cm-prod.yaml │ │ ├── bookstore2 │ │ │ ├── configmap_cm-bookstore2.yaml │ │ │ ├── configmap_cm1-bookstore2.yaml │ │ │ └── resourcequota_quota.yaml │ │ ├── namespace_bookstore1.yaml │ │ └── namespace_bookstore2.yaml │ └── cluster-staging │ │ ├── bookstore1 │ │ ├── configmap_cm-all.yaml │ │ ├── configmap_cm-bookstore1.yaml │ │ ├── configmap_cm-dev-staging.yaml │ │ ├── configmap_cm-disabled.yaml │ │ └── configmap_cm-staging.yaml │ │ ├── bookstore2 │ │ ├── configmap_cm-bookstore2.yaml │ │ ├── configmap_cm1-bookstore2.yaml │ │ └── resourcequota_quota.yaml │ │ ├── namespace_bookstore1.yaml │ │ └── namespace_bookstore2.yaml ├── repoless-no-ns │ ├── admin-clusterrole.yaml │ ├── backend-role.yaml │ └── default-role.yaml ├── repoless │ ├── admin-clusterrole.yaml │ ├── backend-default-ns.yaml │ ├── backend-default-role.yaml │ ├── backend-ns.yaml │ └── backend-role.yaml └── unstructured-repo-with-cluster-selectors │ ├── README.md │ ├── bookstore1 │ ├── cm-all.yaml │ ├── cm-dev-staging.yaml │ ├── cm-dev.yaml │ ├── cm-disabled.yaml │ ├── cm-prod.yaml │ ├── cm-staging.yaml │ ├── local-config.yaml │ └── ns.yaml │ ├── bookstore2 │ ├── ns-cluster-dev.yaml │ ├── ns-cluster-prod.yaml │ └── ns-cluster-staging.yaml │ ├── cluster-dev.yaml │ ├── cluster-prod.yaml │ ├── cluster-selector-dev.yaml │ ├── cluster-selector-prod.yaml │ ├── cm-bookstore1.yaml │ ├── cm-bookstore2.yaml │ ├── namespace-selector-bookstore1.yaml │ ├── namespace-selector-bookstore2.yaml │ └── resource-quota.yaml ├── go.mod ├── go.sum ├── hack └── boilerplate.txt ├── installation ├── README.md └── kustomization.yaml ├── manifests ├── base │ └── kustomization.yaml ├── cluster-registry-crd.yaml ├── cluster-selector-crd.yaml ├── container-default-limits.yaml ├── cs-namespaces.yaml ├── hierarchyconfig-crd.yaml ├── namespace-selector-crd.yaml ├── ns-reconciler-base-cluster-role.yaml ├── ns-reconciler-cluster-scope-cluster-role.yaml ├── operator │ └── kustomization.yaml ├── oss │ └── kustomization.yaml ├── otel-agent-cm.yaml ├── otel-agent-reconciler-cm.yaml ├── patch │ └── kustomization.yaml ├── reconciler-manager-service-account.yaml ├── reposync-crd.yaml ├── resourcegroup-crd.yaml ├── root-reconciler-base-cluster-role.yaml ├── rootsync-crd.yaml └── templates │ ├── admission-webhook.yaml │ ├── otel-collector.yaml │ ├── reconciler-manager-configmap.yaml │ ├── reconciler-manager.yaml │ ├── reconciler-manager │ └── dev.yaml │ └── resourcegroup-manifest.yaml ├── pkg ├── api │ ├── configmanagement │ │ ├── register.go │ │ └── v1 │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── gitconfig.go │ │ │ ├── register.go │ │ │ ├── repo │ │ │ └── constants.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ ├── configsync │ │ ├── register.go │ │ ├── v1alpha1 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── getters.go │ │ │ ├── gitconfig.go │ │ │ ├── helmconfig.go │ │ │ ├── ociconfig.go │ │ │ ├── register.go │ │ │ ├── reposync_types.go │ │ │ ├── resource_override.go │ │ │ ├── rootsync_types.go │ │ │ ├── sync_types.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── getters.go │ │ │ ├── gitconfig.go │ │ │ ├── helmconfig.go │ │ │ ├── ociconfig.go │ │ │ ├── register.go │ │ │ ├── reposync_types.go │ │ │ ├── resource_override.go │ │ │ ├── rootsync_types.go │ │ │ ├── sync_types.go │ │ │ └── zz_generated.deepcopy.go │ ├── hub │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── membership_types.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ └── kpt.dev │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── resourcegroup_types.go │ │ ├── resourcegroup_types_test.go │ │ ├── v1alpha1_suite_test.go │ │ └── zz_generated.deepcopy.go ├── applier │ ├── applier.go │ ├── applier_err.go │ ├── applier_err_test.go │ ├── applier_test.go │ ├── clientset.go │ ├── destroyer_test.go │ ├── doc.go │ ├── fake │ │ └── applier.go │ ├── inventory │ │ ├── inventory_converter.go │ │ └── inventory_converter_test.go │ ├── main_test.go │ ├── management_conflict_err.go │ ├── stats │ │ ├── main_test.go │ │ ├── stats.go │ │ └── stats_test.go │ ├── status.go │ ├── status_test.go │ ├── utils.go │ └── utils_test.go ├── applyset │ └── applyset.go ├── askpass │ ├── askpass.go │ └── askpass_test.go ├── auth │ ├── credential_provider.go │ ├── credential_provider_test.go │ ├── fake_credential_provider.go │ └── token_provider.go ├── bugreport │ ├── bugreport.go │ ├── bugreport_test.go │ ├── constants.go │ ├── doc.go │ ├── errors.go │ ├── logsource.go │ ├── logsource_test.go │ ├── logsources.go │ ├── logsources_test.go │ ├── main_test.go │ └── readable.go ├── client │ └── restconfig │ │ ├── config.go │ │ ├── config_test.go │ │ ├── restconfig.go │ │ └── restconfig_test.go ├── core │ ├── decorate.go │ ├── decorate_test.go │ ├── id.go │ ├── id_test.go │ ├── k8sobjects │ │ ├── admission_webhook.go │ │ ├── build.go │ │ ├── container.go │ │ ├── crds.go │ │ ├── deployment.go │ │ ├── hierarchy_config.go │ │ ├── metadata.go │ │ ├── namespace.go │ │ ├── objects.go │ │ ├── pod.go │ │ ├── repo.go │ │ ├── reposync.go │ │ ├── resourcegroup.go │ │ ├── rootsync.go │ │ └── secret.go │ ├── main_test.go │ ├── meta.go │ ├── names.go │ └── scheme.go ├── declared │ ├── doc.go │ ├── main_test.go │ ├── namespace_safeguard.go │ ├── namespace_safeguard_test.go │ ├── resource_manager.go │ ├── resource_manager_test.go │ ├── resources.go │ ├── resources_test.go │ ├── scope.go │ └── value.go ├── diff │ ├── diff.go │ ├── diff_test.go │ ├── difftest │ │ └── annotations.go │ ├── main_test.go │ ├── precedence.go │ ├── precedence_test.go │ ├── unknown.go │ └── unknown_test.go ├── generated │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── configmanagement │ │ │ └── v1 │ │ │ │ ├── clusterselector.go │ │ │ │ ├── configmanagement_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterselector.go │ │ │ │ ├── fake_configmanagement_client.go │ │ │ │ ├── fake_hierarchyconfig.go │ │ │ │ ├── fake_namespaceselector.go │ │ │ │ └── fake_repo.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── hierarchyconfig.go │ │ │ │ ├── namespaceselector.go │ │ │ │ └── repo.go │ │ │ ├── configsync │ │ │ ├── v1alpha1 │ │ │ │ ├── configsync_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ └── fake_configsync_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── configsync_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ └── fake_configsync_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── hub │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ └── fake_hub_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── hub_client.go │ │ │ └── kpt.dev │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ └── fake_kpt.dev_client.go │ │ │ ├── generated_expansion.go │ │ │ └── kpt.dev_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── configmanagement │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── clusterselector.go │ │ │ │ ├── hierarchyconfig.go │ │ │ │ ├── interface.go │ │ │ │ ├── namespaceselector.go │ │ │ │ └── repo.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── configmanagement │ │ └── v1 │ │ ├── clusterselector.go │ │ ├── expansion_generated.go │ │ ├── hierarchyconfig.go │ │ ├── namespaceselector.go │ │ └── repo.go ├── helm │ └── helm.go ├── hydrate │ ├── clean.go │ ├── controller.go │ ├── controller_test.go │ ├── error.go │ ├── file_name.go │ ├── file_name_test.go │ ├── for_each_cluster.go │ ├── main_test.go │ ├── print.go │ ├── tool_util.go │ └── tool_util_test.go ├── importer │ ├── analyzer │ │ ├── ast │ │ │ ├── doc.go │ │ │ ├── node │ │ │ │ └── node.go │ │ │ ├── objects.go │ │ │ ├── root.go │ │ │ └── tree_node.go │ │ ├── hnc │ │ │ └── depth_label_validator.go │ │ ├── transform │ │ │ ├── ephemeral_resources.go │ │ │ ├── inheritancevisitor.go │ │ │ ├── selectors │ │ │ │ ├── cluster_selectors.go │ │ │ │ ├── errors.go │ │ │ │ └── namespace_selectors.go │ │ │ └── tree │ │ │ │ ├── builder.go │ │ │ │ └── builder_visitor.go │ │ ├── validation │ │ │ ├── hierarchyconfig │ │ │ │ ├── doc.go │ │ │ │ ├── inheritance_validator.go │ │ │ │ ├── kind_validator.go │ │ │ │ └── known_resource_validator.go │ │ │ ├── metadata │ │ │ │ ├── annotation_validator.go │ │ │ │ ├── doc.go │ │ │ │ ├── label_validator.go │ │ │ │ ├── name_validator.go │ │ │ │ └── namespace_validator.go │ │ │ ├── nonhierarchical │ │ │ │ ├── crd_name_validator.go │ │ │ │ ├── crd_removal_validator.go │ │ │ │ ├── deprecated_group_kind_validator.go │ │ │ │ ├── duplicate_name_validator.go │ │ │ │ ├── hierarchical_kind_validator.go │ │ │ │ ├── illegal_crd_validator.go │ │ │ │ ├── illegal_namespace_validator.go │ │ │ │ ├── managed_namespace_validator.go │ │ │ │ ├── management_annotation_validator.go │ │ │ │ ├── name_validator.go │ │ │ │ ├── namespace_validator.go │ │ │ │ ├── scope_validator.go │ │ │ │ └── selector_annotation_validator.go │ │ │ ├── scope.go │ │ │ ├── semantic │ │ │ │ ├── abstract_resource_validator.go │ │ │ │ └── doc.go │ │ │ ├── syntax │ │ │ │ ├── disallow_system_objects_validator.go │ │ │ │ ├── disallowed_fields_validator.go │ │ │ │ ├── doc.go │ │ │ │ └── namespaces_kind_validator.go │ │ │ ├── system │ │ │ │ ├── max_object_count_validator.go │ │ │ │ ├── missing_repo_validator.go │ │ │ │ └── version_validator.go │ │ │ └── validationvisitor.go │ │ └── vet │ │ │ └── vettesting │ │ │ └── errors.go │ ├── customresources │ │ ├── customresources.go │ │ ├── customresources_test.go │ │ └── main_test.go │ ├── filesystem │ │ ├── cmpath │ │ │ ├── absolute.go │ │ │ ├── doc.go │ │ │ └── relative.go │ │ ├── config_parser.go │ │ ├── fake │ │ │ └── config_parser.go │ │ ├── filesystemtest │ │ │ └── test_dir.go │ │ ├── filter.go │ │ ├── filter_test.go │ │ ├── main_test.go │ │ ├── parser.go │ │ ├── parser_read_files_test.go │ │ └── source_format.go │ ├── id │ │ ├── doc.go │ │ ├── field.go │ │ ├── path.go │ │ └── tree_node.go │ ├── metrics.go │ └── reader │ │ ├── invalid_annotations_error.go │ │ ├── main_test.go │ │ ├── parse_file.go │ │ ├── parse_file_test.go │ │ ├── reader.go │ │ └── reader_test.go ├── kinds │ ├── cast.go │ ├── convert.go │ ├── convert_test.go │ ├── kinds.go │ ├── lists.go │ ├── lookup.go │ ├── lookup_test.go │ ├── main_test.go │ ├── new.go │ ├── resources.go │ └── strings.go ├── kmetrics │ ├── exec.go │ ├── exec_test.go │ ├── fieldcount.go │ ├── fieldcount_test.go │ ├── main_test.go │ ├── metrics.go │ ├── record.go │ ├── register.go │ └── testdata │ │ ├── complex │ │ ├── base │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ └── overlay │ │ │ └── kustomization.yaml │ │ ├── component │ │ ├── components │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ │ ├── deprecatingfields │ │ └── kustomization.yaml │ │ ├── invalidkustomization │ │ ├── deployment.yaml │ │ └── kustomization.yaml │ │ ├── k8smetadata │ │ ├── base │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ │ ├── missingkustomization │ │ └── deployment.yaml │ │ ├── missingkustomizationinbase │ │ ├── base │ │ │ └── deployment.yaml │ │ ├── kustomization.yaml │ │ └── overlay │ │ │ └── kustomization.yaml │ │ ├── multiplekustomizationfiles │ │ ├── kustomization.yaml │ │ └── kustomization.yml │ │ ├── simple │ │ ├── deployment.yaml │ │ └── kustomization.yaml │ │ ├── simplificationUsage │ │ ├── kustomization.yaml │ │ └── my-replacement.yaml │ │ ├── withgenerator │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml │ │ └── withhelmcharts │ │ └── kustomization.yaml ├── lifecycle │ └── constants.go ├── metadata │ ├── annotation_deletion_propagation_policy.go │ ├── annotation_management_mode.go │ ├── annotations.go │ ├── applyset.go │ ├── doc.go │ ├── finalizers.go │ ├── labels.go │ ├── main_test.go │ ├── metadata.go │ └── metadata_test.go ├── metrics │ ├── metrics.go │ ├── otel_collector_config.go │ ├── record.go │ ├── register.go │ └── tagkeys.go ├── oci │ ├── authenticator.go │ ├── fetcher.go │ └── fetcher_test.go ├── parse │ ├── annotations.go │ ├── annotations_test.go │ ├── cache.go │ ├── event_handler.go │ ├── events │ │ ├── builder.go │ │ ├── doc.go │ │ ├── events.go │ │ ├── funnel.go │ │ ├── funnel_test.go │ │ └── publisher.go │ ├── large_request.go │ ├── large_request_test.go │ ├── main_test.go │ ├── opts.go │ ├── parser.go │ ├── reconciler.go │ ├── repo_sync_client.go │ ├── repo_sync_parser.go │ ├── repository_scope.go │ ├── repository_scope_test.go │ ├── root_reconciler_test.go │ ├── root_sync_client.go │ ├── root_sync_client_test.go │ ├── root_sync_parser.go │ ├── run.go │ ├── run_test.go │ ├── source.go │ ├── source_test.go │ ├── state.go │ ├── status.go │ ├── sync_status_cache.go │ ├── sync_status_client.go │ └── updater.go ├── policycontroller │ └── constants.go ├── profiler │ └── profile.go ├── reconciler │ ├── doc.go │ ├── finalizer │ │ ├── base_finalizer.go │ │ ├── controller.go │ │ ├── finalizer.go │ │ ├── main_test.go │ │ ├── predicates.go │ │ ├── reposync_finalizer.go │ │ ├── reposync_finalizer_test.go │ │ ├── rootsync_finalizer.go │ │ └── rootsync_finalizer_test.go │ ├── namespacecontroller │ │ ├── namespace_controller.go │ │ ├── namespace_predicate.go │ │ ├── state.go │ │ └── state_test.go │ └── reconciler.go ├── reconcilermanager │ ├── constants.go │ └── controllers │ │ ├── build_names.go │ │ ├── constants.go │ │ ├── controller.go │ │ ├── crd_controller.go │ │ ├── create_or_update.go │ │ ├── errors.go │ │ ├── garbage_collector.go │ │ ├── gcenode_askpass_sidecar.go │ │ ├── gitsync_env.go │ │ ├── gitsync_env_test.go │ │ ├── hash.go │ │ ├── helm_value_files.go │ │ ├── jsonpath.go │ │ ├── jsonpath_test.go │ │ ├── logging_controller.go │ │ ├── main_test.go │ │ ├── otel_base_controller.go │ │ ├── otel_controller.go │ │ ├── otel_controller_test.go │ │ ├── otel_sa_controller.go │ │ ├── parse.go │ │ ├── permissions.go │ │ ├── permissions_test.go │ │ ├── reconciler_base.go │ │ ├── reconciler_base_test.go │ │ ├── reconciler_container_log_level.go │ │ ├── reconciler_container_log_level_test.go │ │ ├── reconciler_container_resources.go │ │ ├── reconciler_finalizer_handler.go │ │ ├── reposync_controller.go │ │ ├── reposync_controller_manager_test.go │ │ ├── reposync_controller_test.go │ │ ├── rootsync_controller.go │ │ ├── rootsync_controller_manager_test.go │ │ ├── rootsync_controller_test.go │ │ ├── secret.go │ │ ├── secret_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── validate_secret.go │ │ ├── validate_secret_test.go │ │ └── volumes.go ├── remediator │ ├── conflict │ │ └── handler.go │ ├── fake │ │ └── remediator.go │ ├── queue │ │ ├── deleted.go │ │ ├── deleted_test.go │ │ ├── main_test.go │ │ ├── queue.go │ │ └── queue_test.go │ ├── reconcile │ │ ├── main_test.go │ │ ├── reconciler.go │ │ ├── reconciler_test.go │ │ ├── worker.go │ │ └── worker_test.go │ ├── remediator.go │ └── watch │ │ ├── filteredwatcher.go │ │ ├── filteredwatcher_test.go │ │ ├── listwatch.go │ │ ├── main_test.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ └── watcher.go ├── reposync │ ├── conditions.go │ ├── conditions_test.go │ ├── constants.go │ ├── errors.go │ ├── errors_test.go │ └── main_test.go ├── resourcegroup │ ├── constants.go │ ├── controllers │ │ ├── handler │ │ │ ├── crd_event_handler.go │ │ │ ├── event_handler.go │ │ │ ├── handler_test.go │ │ │ ├── throttler.go │ │ │ └── throttler_test.go │ │ ├── log │ │ │ └── setup.go │ │ ├── metrics │ │ │ ├── metrics.go │ │ │ ├── record.go │ │ │ ├── register.go │ │ │ └── tagkeys.go │ │ ├── profiler │ │ │ └── profile.go │ │ ├── resourcegroup │ │ │ ├── condition.go │ │ │ ├── condition_test.go │ │ │ ├── constants.go │ │ │ ├── main_test.go │ │ │ ├── resourcegroup_controller.go │ │ │ └── resourcegroup_controller_test.go │ │ ├── resourcemap │ │ │ ├── resourcemap.go │ │ │ ├── resourcemap_test.go │ │ │ └── update_metrics_test.go │ │ ├── root │ │ │ ├── main_test.go │ │ │ ├── root_controller.go │ │ │ ├── root_controller_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── runner │ │ │ └── run.go │ │ ├── status │ │ │ └── status.go │ │ ├── typeresolver │ │ │ ├── fake_discovery.go │ │ │ ├── fakeresolver.go │ │ │ ├── main_test.go │ │ │ ├── typeresolver.go │ │ │ └── typeresolver_test.go │ │ └── watch │ │ │ ├── filteredwatcher.go │ │ │ ├── manager.go │ │ │ ├── manager_test.go │ │ │ └── watcher.go │ ├── resourcegroup.go │ └── resourcegroup_test.go ├── resourcequota │ └── comparison.go ├── rootsync │ ├── conditions.go │ ├── conditions_test.go │ ├── constants.go │ ├── errors.go │ ├── errors_test.go │ └── main_test.go ├── status │ ├── api_server_error.go │ ├── declared_field_error.go │ ├── empty_source_error.go │ ├── error.go │ ├── error_builder.go │ ├── error_impl.go │ ├── error_test.go │ ├── fake_errors.go │ ├── fight_error.go │ ├── hydration.go │ ├── internal_error.go │ ├── main_test.go │ ├── management_conflict_error.go │ ├── message_error_impl.go │ ├── multierror.go │ ├── multierror_test.go │ ├── multiple_singletons_error.go │ ├── object_parse_error.go │ ├── os_error.go │ ├── panic_on_misuse.go │ ├── path_error.go │ ├── path_error_impl.go │ ├── resource_error.go │ ├── resource_error_impl.go │ ├── source_error.go │ ├── transient_error.go │ ├── undocumented_error.go │ ├── unknown_kind_error.go │ └── wrapped_error_impl.go ├── syncer │ ├── client │ │ ├── client.go │ │ ├── client_test.go │ │ ├── err.go │ │ ├── main_test.go │ │ └── retriable_errors.go │ ├── differ │ │ ├── decorations.go │ │ ├── differ.go │ │ ├── differ_test.go │ │ ├── main_test.go │ │ ├── special_namespaces.go │ │ └── special_namespaces_test.go │ ├── metrics │ │ └── metrics.go │ ├── reconcile │ │ ├── apply.go │ │ ├── apply_test.go │ │ ├── as_unstructured.go │ │ ├── as_unstructured_test.go │ │ ├── doc.go │ │ ├── fight │ │ │ ├── detector.go │ │ │ ├── detector_test.go │ │ │ ├── handler.go │ │ │ ├── logger.go │ │ │ └── main_test.go │ │ └── main_test.go │ └── syncertest │ │ ├── fake │ │ ├── applier.go │ │ ├── cache.go │ │ ├── client.go │ │ ├── client_set.go │ │ ├── common.go │ │ ├── conflict_handler.go │ │ ├── convert.go │ │ ├── discovery_client.go │ │ ├── dynamic_client.go │ │ ├── error_client.go │ │ ├── fields.go │ │ ├── fight_handler.go │ │ ├── main_test.go │ │ ├── storage.go │ │ ├── subresource_storage.go │ │ └── watcher.go │ │ └── reconcile.go ├── testing │ ├── discoverytest │ │ └── discovery_client.go │ ├── openapitest │ │ ├── doc.go │ │ └── openapi_v2.txt │ ├── testcontroller │ │ └── testcontroller.go │ ├── testerrors │ │ └── testerrors.go │ ├── testmetrics │ │ └── testexporter.go │ └── testwatch │ │ └── testwatch.go ├── util │ ├── autopilot.go │ ├── clusterconfig │ │ ├── crd.go │ │ ├── crd_test.go │ │ └── main_test.go │ ├── compare │ │ ├── comparer.go │ │ ├── comparer_test.go │ │ └── main_test.go │ ├── customresource │ │ ├── customresource.go │ │ └── customresource_test.go │ ├── discovery │ │ ├── core_scoper.generated.go │ │ ├── main_test.go │ │ ├── scoper.go │ │ ├── scoper_builder.go │ │ ├── scoper_test.go │ │ └── server_resourcer.go │ ├── env.go │ ├── large_request.go │ ├── log │ │ ├── error.go │ │ ├── logging.go │ │ ├── main_test.go │ │ ├── setup.go │ │ ├── stringer.go │ │ └── stringer_test.go │ ├── mutate │ │ ├── main_test.go │ │ ├── mutate.go │ │ └── mutate_test.go │ ├── repo │ │ └── default.go │ ├── retry.go │ ├── retry_test.go │ └── watch │ │ ├── controllerbuilder.go │ │ ├── delete.go │ │ ├── dynamic_lister_watcher.go │ │ ├── manager.go │ │ ├── mapper.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── typed_informer_factory.go │ │ ├── typed_lister_watcher.go │ │ └── until.go ├── validate │ ├── fileobjects │ │ ├── main_test.go │ │ ├── raw.go │ │ ├── scoped.go │ │ ├── tree.go │ │ └── tree_test.go │ ├── final │ │ ├── final.go │ │ └── validate │ │ │ ├── duplicate_name_validator.go │ │ │ ├── duplicate_name_validator_test.go │ │ │ ├── main_test.go │ │ │ ├── max_object_count_validator.go │ │ │ ├── unmanaged_namespace_validator.go │ │ │ └── unmanaged_namespace_validator_test.go │ ├── main_test.go │ ├── raw │ │ ├── hydrate │ │ │ ├── cluster_name_hydrator.go │ │ │ ├── cluster_name_hydrator_test.go │ │ │ ├── cluster_selector_hydrator.go │ │ │ ├── cluster_selector_hydrator_test.go │ │ │ ├── declared_field_hydrator.go │ │ │ ├── declared_field_hydrator_raw_test.go │ │ │ ├── declared_field_hydrator_test.go │ │ │ ├── declared_version_hydrator.go │ │ │ ├── declared_version_hydrator_test.go │ │ │ ├── filepath_hydrator.go │ │ │ ├── filepath_hydrator_test.go │ │ │ ├── hnc_depth_hydrator.go │ │ │ ├── hnc_depth_hydrator_test.go │ │ │ ├── main_test.go │ │ │ ├── object_namespace_hydrator.go │ │ │ ├── object_namespace_hydrator_test.go │ │ │ ├── prevent_deletion_hydrator.go │ │ │ └── prevent_deletion_hydrator_test.go │ │ ├── raw.go │ │ └── validate │ │ │ ├── annotation_validator.go │ │ │ ├── annotation_validator_test.go │ │ │ ├── cluster_selector_validator.go │ │ │ ├── cluster_selector_validator_test.go │ │ │ ├── crd_name.go │ │ │ ├── crd_removal_validator.go │ │ │ ├── crd_removal_validator_test.go │ │ │ ├── deprecated_kind_validator.go │ │ │ ├── deprecated_kind_validator_test.go │ │ │ ├── directory_validator.go │ │ │ ├── directory_validator_test.go │ │ │ ├── disallowed_fields_validator.go │ │ │ ├── disallowed_fields_validator_test.go │ │ │ ├── hnc_validator.go │ │ │ ├── hnc_validator_test.go │ │ │ ├── illegal_crd_validator.go │ │ │ ├── illegal_crd_validator_test.go │ │ │ ├── illegal_kind_validator.go │ │ │ ├── illegal_kind_validator_test.go │ │ │ ├── label_validator.go │ │ │ ├── label_validator_test.go │ │ │ ├── main_test.go │ │ │ ├── management_annotation.go │ │ │ ├── management_annotation_test.go │ │ │ ├── name_validator.go │ │ │ ├── name_validator_test.go │ │ │ ├── namespace_validator.go │ │ │ ├── namespace_validator_test.go │ │ │ ├── repo_validator.go │ │ │ ├── repo_validator_test.go │ │ │ └── self_reconcile_validator.go │ ├── rsync │ │ └── validate │ │ │ ├── deletion_propagation_validator.go │ │ │ ├── deletion_propagation_validator_test.go │ │ │ ├── source_spec_validator.go │ │ │ └── source_spec_validator_test.go │ ├── scoped │ │ ├── hydrate │ │ │ ├── main_test.go │ │ │ ├── namespace_hydrator.go │ │ │ ├── namespace_hydrator_test.go │ │ │ ├── unknown_scope_hydrator.go │ │ │ └── unknown_scope_hydrator_test.go │ │ ├── scoped.go │ │ └── validate │ │ │ ├── main_test.go │ │ │ ├── namespace_selector_validator.go │ │ │ ├── namespace_selector_validator_test.go │ │ │ ├── scope_validator.go │ │ │ └── scope_validator_test.go │ ├── tree │ │ ├── hydrate │ │ │ ├── inheritance_hydrator.go │ │ │ ├── inheritance_hydrator_test.go │ │ │ ├── main_test.go │ │ │ ├── namespace_selector_hydrator.go │ │ │ └── namespace_selector_hydrator_test.go │ │ ├── tree.go │ │ └── validate │ │ │ ├── hierarchy_config_validator.go │ │ │ ├── hierarchy_config_validator_test.go │ │ │ ├── inheritance_validator.go │ │ │ ├── inheritance_validator_test.go │ │ │ ├── main_test.go │ │ │ ├── namespace_selector_validator.go │ │ │ └── namespace_selector_validator_test.go │ ├── validate.go │ └── validate_test.go ├── version │ └── version.go ├── vet │ ├── api_resources.go │ ├── api_resources_test.go │ └── main_test.go └── webhook │ ├── auth.go │ ├── auth_test.go │ ├── cert.go │ ├── configuration │ ├── constants.go │ ├── main_test.go │ ├── merge.go │ ├── merge_test.go │ ├── rules.go │ ├── rules_test.go │ └── update.go │ ├── doc.go │ ├── fields.go │ ├── fields_test.go │ ├── main_test.go │ ├── resource_group.go │ ├── validate.go │ └── validate_test.go ├── scripts ├── build-status.sh ├── build.sh ├── docker-registry.sh ├── e2e.sh ├── fail-if-dirty-repo.sh ├── fmt-bash.sh ├── generate-clientset.sh ├── generate-test-loggers.sh ├── get-branch-or-sha.sh ├── install-helm.sh ├── install-kustomize.sh ├── lib │ └── manifests.sh ├── license-headers.sh ├── lint-bash.sh ├── lint-go.sh ├── lint-yaml.sh ├── package-test-helm-chart.sh ├── prepare-licenses.sh ├── pull-postsubmit-retry.sh ├── set-up-kcc-configs.sh ├── tag-promotion.sh ├── tag-release-candidate.sh ├── test-kustomization.sh ├── test-unit.sh └── vulnerabilities.sh ├── test ├── docker │ ├── http-git-server │ │ ├── Dockerfile │ │ ├── nginx.conf │ │ └── start.sh │ └── presync-webhook-server │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ └── oci-signature-verification-server.go └── kustomization │ ├── expected.yaml │ └── kustomization.yaml ├── tools └── tools.go └── vendor ├── al.essio.dev └── pkg │ └── shellescape │ ├── .gitignore │ ├── .golangci.yml │ ├── .goreleaser.yml │ ├── AUTHORS │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── shellescape.go ├── cloud.google.com └── go │ ├── .gitignore │ ├── .release-please-manifest-individual.json │ ├── .release-please-manifest-submodules.json │ ├── .release-please-manifest.json │ ├── CHANGES.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY.md │ ├── auth │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── credentials │ │ ├── compute.go │ │ ├── detect.go │ │ ├── doc.go │ │ ├── filetypes.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws_provider.go │ │ │ │ ├── executable_provider.go │ │ │ │ ├── externalaccount.go │ │ │ │ ├── file_provider.go │ │ │ │ ├── info.go │ │ │ │ ├── programmatic_provider.go │ │ │ │ ├── url_provider.go │ │ │ │ └── x509_provider.go │ │ │ ├── externalaccountuser │ │ │ │ └── externalaccountuser.go │ │ │ ├── gdch │ │ │ │ └── gdch.go │ │ │ ├── impersonate │ │ │ │ ├── idtoken.go │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── grpctransport │ │ ├── dial_socketopt.go │ │ ├── directpath.go │ │ ├── grpctransport.go │ │ └── pool.go │ ├── httptransport │ │ ├── httptransport.go │ │ └── transport.go │ ├── internal │ │ ├── compute │ │ │ ├── compute.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── credsfile │ │ │ ├── credsfile.go │ │ │ ├── filetype.go │ │ │ └── parse.go │ │ ├── internal.go │ │ ├── jwt │ │ │ └── jwt.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── transport │ │ │ ├── cba.go │ │ │ ├── cert │ │ │ │ ├── default_cert.go │ │ │ │ ├── enterprise_cert.go │ │ │ │ ├── secureconnect_cert.go │ │ │ │ └── workload_cert.go │ │ │ ├── headers │ │ │ │ └── headers.go │ │ │ ├── s2a.go │ │ │ └── transport.go │ │ ├── trustboundary │ │ │ ├── external_accounts_config_providers.go │ │ │ └── trust_boundary.go │ │ └── version.go │ ├── oauth2adapt │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ └── oauth2adapt.go │ └── threelegged.go │ ├── compute │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go │ ├── debug.md │ ├── doc.go │ ├── go.work │ ├── go.work.sum │ ├── iam │ ├── LICENSE │ └── apiv1 │ │ └── iampb │ │ ├── iam_policy.pb.go │ │ ├── options.pb.go │ │ ├── policy.pb.go │ │ └── resource_policy_member.pb.go │ ├── logging │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── apiv2 │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── config_client.go │ │ ├── doc.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── info.go │ │ ├── logging_client.go │ │ ├── loggingpb │ │ │ ├── log_entry.pb.go │ │ │ ├── logging.pb.go │ │ │ ├── logging_config.pb.go │ │ │ ├── logging_config_grpc.pb.go │ │ │ ├── logging_grpc.pb.go │ │ │ ├── logging_metrics.pb.go │ │ │ └── logging_metrics_grpc.pb.go │ │ ├── metrics_client.go │ │ ├── path_funcs.go │ │ └── version.go │ ├── doc.go │ ├── instrumentation.go │ ├── internal │ │ ├── common.go │ │ ├── environment.go │ │ └── version.go │ ├── logadmin │ │ ├── logadmin.go │ │ ├── metrics.go │ │ ├── resources.go │ │ └── sinks.go │ ├── loggeroption.go │ ├── logging.go │ └── resource.go │ ├── longrunning │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── from_conn.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── info.go │ │ ├── longrunningpb │ │ │ └── operations.pb.go │ │ └── operations_client.go │ ├── longrunning.go │ └── tidyfix.go │ ├── migration.md │ ├── monitoring │ ├── LICENSE │ ├── apiv3 │ │ └── v2 │ │ │ ├── alert_policy_client.go │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ ├── group_client.go │ │ │ ├── helpers.go │ │ │ ├── metric_client.go │ │ │ ├── monitoringpb │ │ │ ├── alert.pb.go │ │ │ ├── alert_service.pb.go │ │ │ ├── alert_service_grpc.pb.go │ │ │ ├── common.pb.go │ │ │ ├── dropped_labels.pb.go │ │ │ ├── group.pb.go │ │ │ ├── group_service.pb.go │ │ │ ├── group_service_grpc.pb.go │ │ │ ├── metric.pb.go │ │ │ ├── metric_service.pb.go │ │ │ ├── metric_service_grpc.pb.go │ │ │ ├── mutation_record.pb.go │ │ │ ├── notification.pb.go │ │ │ ├── notification_service.pb.go │ │ │ ├── notification_service_grpc.pb.go │ │ │ ├── query_service.pb.go │ │ │ ├── query_service_grpc.pb.go │ │ │ ├── service.pb.go │ │ │ ├── service_service.pb.go │ │ │ ├── service_service_grpc.pb.go │ │ │ ├── snooze.pb.go │ │ │ ├── snooze_service.pb.go │ │ │ ├── snooze_service_grpc.pb.go │ │ │ ├── span_context.pb.go │ │ │ ├── uptime.pb.go │ │ │ ├── uptime_service.pb.go │ │ │ └── uptime_service_grpc.pb.go │ │ │ ├── notification_channel_client.go │ │ │ ├── query_client.go │ │ │ ├── service_monitoring_client.go │ │ │ ├── snooze_client.go │ │ │ ├── uptime_check_client.go │ │ │ └── version.go │ └── internal │ │ └── version.go │ ├── release-please-config-individual.json │ ├── release-please-config-yoshi-submodules.json │ ├── release-please-config.json │ ├── testing.md │ └── trace │ ├── LICENSE │ ├── apiv2 │ ├── auxiliary.go │ ├── auxiliary_go123.go │ ├── doc.go │ ├── gapic_metadata.json │ ├── helpers.go │ ├── path_funcs.go │ ├── trace_client.go │ ├── tracepb │ │ ├── trace.pb.go │ │ ├── tracing.pb.go │ │ └── tracing_grpc.pb.go │ └── version.go │ └── internal │ └── version.go ├── github.com ├── Azure │ └── go-ansiterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm │ │ ├── ansi.go │ │ ├── api.go │ │ ├── attr_translation.go │ │ ├── cursor_helpers.go │ │ ├── erase_helpers.go │ │ ├── scroll_helper.go │ │ ├── utilities.go │ │ └── win_event_handler.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── GoogleContainerTools │ ├── kpt-functions-catalog │ │ └── functions │ │ │ └── go │ │ │ └── set-namespace │ │ │ ├── LICENSE │ │ │ └── transformer │ │ │ ├── consts.go │ │ │ └── namespace.go │ └── kpt-functions-sdk │ │ └── go │ │ └── fn │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── const.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── functionrunner.go │ │ ├── internal │ │ ├── document.go │ │ ├── map.go │ │ ├── maphelpers.go │ │ ├── namespace.go │ │ ├── scalar.go │ │ ├── slice.go │ │ └── variant.go │ │ ├── io.go │ │ ├── log.go │ │ ├── object.go │ │ ├── origin.go │ │ ├── resourcelist.go │ │ ├── result.go │ │ ├── run.go │ │ └── runnerProcessor.go ├── MakeNowJust │ └── heredoc │ │ ├── LICENSE │ │ ├── README.md │ │ └── heredoc.go ├── Masterminds │ └── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ ├── v3 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ └── version.go │ │ ├── version.go │ │ └── version_fuzz.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── bmatcuk │ └── doublestar │ │ └── v4 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── doublestar.go │ │ ├── glob.go │ │ ├── globwalk.go │ │ ├── match.go │ │ ├── utils.go │ │ └── validate.go ├── cenkalti │ └── backoff │ │ └── v5 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── error.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── timer.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── chai2010 │ └── gettext-go │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_json.go │ │ ├── fs_os.go │ │ ├── fs_zip.go │ │ ├── gettext.go │ │ ├── locale.go │ │ ├── mo │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── file.go │ │ ├── header.go │ │ ├── message.go │ │ └── util.go │ │ ├── plural │ │ ├── doc.go │ │ ├── formula.go │ │ └── table.go │ │ ├── po │ │ ├── comment.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── header.go │ │ ├── line_reader.go │ │ ├── message.go │ │ ├── re.go │ │ └── util.go │ │ ├── tr.go │ │ └── util.go ├── containerd │ └── stargz-snapshotter │ │ └── estargz │ │ ├── LICENSE │ │ ├── build.go │ │ ├── errorutil │ │ └── errors.go │ │ ├── estargz.go │ │ ├── gzip.go │ │ ├── testutil.go │ │ └── types.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── distribution │ └── reference │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── distribution-logo.svg │ │ ├── helpers.go │ │ ├── normalize.go │ │ ├── reference.go │ │ ├── regexp.go │ │ └── sort.go ├── docker │ ├── cli │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── cli │ │ │ └── config │ │ │ ├── config.go │ │ │ ├── configfile │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ └── file_windows.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── default_store.go │ │ │ ├── default_store_darwin.go │ │ │ ├── default_store_linux.go │ │ │ ├── default_store_unsupported.go │ │ │ ├── default_store_windows.go │ │ │ ├── file_store.go │ │ │ └── native_store.go │ │ │ ├── memorystore │ │ │ └── store.go │ │ │ └── types │ │ │ └── authconfig.go │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── client │ │ │ └── auth │ │ │ └── challenge │ │ │ ├── addr.go │ │ │ └── authchallenge.go │ └── docker-credential-helpers │ │ ├── LICENSE │ │ ├── client │ │ ├── client.go │ │ └── command.go │ │ └── credentials │ │ ├── credentials.go │ │ ├── error.go │ │ ├── helper.go │ │ └── version.go ├── elliotchance │ └── orderedmap │ │ └── v2 │ │ ├── LICENSE │ │ ├── iterator.go │ │ ├── list.go │ │ └── orderedmap.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── .goconvey │ │ ├── .travis.yml │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── Srcfile │ │ ├── bench_test.sh │ │ ├── compress.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── cors_filter.go │ │ ├── coverage.sh │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── custom_verb.go │ │ ├── doc.go │ │ ├── entity_accessors.go │ │ ├── extensions.go │ │ ├── filter.go │ │ ├── filter_adapter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── ettle │ └── strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .readme.tmpl │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── assert.go │ │ ├── caser.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── initialism.go │ │ ├── split.go │ │ ├── strcase.go │ │ └── unicode.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── v5 │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── internal │ │ └── json │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── merge.go │ │ └── patch.go ├── exponent-io │ └── jsonpath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decoder.go │ │ ├── path.go │ │ └── pathaction.go ├── fatih │ ├── camelcase │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── camelcase.go │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── fxamacker │ └── cbor │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bytestring.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── decode.go │ │ ├── diagnose.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_map.go │ │ ├── omitzero_go124.go │ │ ├── omitzero_pre_go124.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ ├── slogr │ │ │ └── slogr.go │ │ ├── slogsink.go │ │ └── testr │ │ │ └── testr.go │ ├── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go │ └── zapr │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── slogzapr.go │ │ ├── zapr.go │ │ ├── zapr_noslog.go │ │ └── zapr_slog.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── initialism_index.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── split.go │ │ ├── string_bytes.go │ │ ├── util.go │ │ └── yaml.go ├── gobuffalo │ └── flect │ │ ├── .gitignore │ │ ├── .gometalinter.json │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── acronyms.go │ │ ├── camelize.go │ │ ├── capitalize.go │ │ ├── custom_data.go │ │ ├── dasherize.go │ │ ├── flect.go │ │ ├── humanize.go │ │ ├── ident.go │ │ ├── lower_upper.go │ │ ├── ordinalize.go │ │ ├── pascalize.go │ │ ├── plural_rules.go │ │ ├── pluralize.go │ │ ├── rule.go │ │ ├── singular_rules.go │ │ ├── singularize.go │ │ ├── titleize.go │ │ ├── underscore.go │ │ └── version.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go │ │ └── ptypes │ │ └── timestamp │ │ └── timestamp.pb.go ├── google │ ├── addlicense │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .goreleaser.yaml │ │ ├── .pre-commit-hooks.yaml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── main.go │ │ └── tmpl.go │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-containerregistry │ │ ├── LICENSE │ │ ├── cmd │ │ │ └── crane │ │ │ │ ├── README.md │ │ │ │ ├── cmd │ │ │ │ ├── append.go │ │ │ │ ├── auth.go │ │ │ │ ├── blob.go │ │ │ │ ├── catalog.go │ │ │ │ ├── config.go │ │ │ │ ├── copy.go │ │ │ │ ├── delete.go │ │ │ │ ├── digest.go │ │ │ │ ├── export.go │ │ │ │ ├── flatten.go │ │ │ │ ├── gc.go │ │ │ │ ├── index.go │ │ │ │ ├── list.go │ │ │ │ ├── manifest.go │ │ │ │ ├── mutate.go │ │ │ │ ├── pull.go │ │ │ │ ├── push.go │ │ │ │ ├── rebase.go │ │ │ │ ├── root.go │ │ │ │ ├── serve.go │ │ │ │ ├── tag.go │ │ │ │ ├── util.go │ │ │ │ ├── validate.go │ │ │ │ └── version.go │ │ │ │ ├── main.go │ │ │ │ ├── rebase.md │ │ │ │ ├── rebase.png │ │ │ │ ├── rebase_test.sh │ │ │ │ └── recipes.md │ │ ├── internal │ │ │ ├── and │ │ │ │ └── and_closer.go │ │ │ ├── cmd │ │ │ │ └── edit.go │ │ │ ├── compression │ │ │ │ └── compression.go │ │ │ ├── editor │ │ │ │ └── editor.go │ │ │ ├── estargz │ │ │ │ └── estargz.go │ │ │ ├── gzip │ │ │ │ └── zip.go │ │ │ ├── httptest │ │ │ │ └── httptest.go │ │ │ ├── redact │ │ │ │ └── redact.go │ │ │ ├── retry │ │ │ │ ├── retry.go │ │ │ │ └── wait │ │ │ │ │ └── kubernetes_apimachinery_wait.go │ │ │ ├── verify │ │ │ │ └── verify.go │ │ │ ├── windows │ │ │ │ └── windows.go │ │ │ └── zstd │ │ │ │ └── zstd.go │ │ └── pkg │ │ │ ├── authn │ │ │ ├── README.md │ │ │ ├── anon.go │ │ │ ├── auth.go │ │ │ ├── authn.go │ │ │ ├── basic.go │ │ │ ├── bearer.go │ │ │ ├── doc.go │ │ │ ├── keychain.go │ │ │ └── multikeychain.go │ │ │ ├── compression │ │ │ └── compression.go │ │ │ ├── crane │ │ │ ├── append.go │ │ │ ├── catalog.go │ │ │ ├── config.go │ │ │ ├── copy.go │ │ │ ├── delete.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── export.go │ │ │ ├── filemap.go │ │ │ ├── get.go │ │ │ ├── list.go │ │ │ ├── manifest.go │ │ │ ├── options.go │ │ │ ├── pull.go │ │ │ ├── push.go │ │ │ └── tag.go │ │ │ ├── legacy │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ └── tarball │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ └── write.go │ │ │ ├── logs │ │ │ └── logs.go │ │ │ ├── name │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── ref.go │ │ │ ├── registry.go │ │ │ ├── repository.go │ │ │ └── tag.go │ │ │ ├── registry │ │ │ ├── README.md │ │ │ ├── blobs.go │ │ │ ├── blobs_disk.go │ │ │ ├── error.go │ │ │ ├── manifest.go │ │ │ ├── registry.go │ │ │ └── tls.go │ │ │ └── v1 │ │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── fs.go │ │ │ └── ro.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── empty │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ └── index.go │ │ │ ├── hash.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── layout │ │ │ ├── README.md │ │ │ ├── blob.go │ │ │ ├── doc.go │ │ │ ├── gc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layoutpath.go │ │ │ ├── options.go │ │ │ ├── read.go │ │ │ └── write.go │ │ │ ├── manifest.go │ │ │ ├── match │ │ │ └── match.go │ │ │ ├── mutate │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── mutate.go │ │ │ └── rebase.go │ │ │ ├── partial │ │ │ ├── README.md │ │ │ ├── compressed.go │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── uncompressed.go │ │ │ └── with.go │ │ │ ├── platform.go │ │ │ ├── progress.go │ │ │ ├── remote │ │ │ ├── README.md │ │ │ ├── catalog.go │ │ │ ├── check.go │ │ │ ├── delete.go │ │ │ ├── descriptor.go │ │ │ ├── doc.go │ │ │ ├── fetcher.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── list.go │ │ │ ├── mount.go │ │ │ ├── multi_write.go │ │ │ ├── options.go │ │ │ ├── progress.go │ │ │ ├── puller.go │ │ │ ├── pusher.go │ │ │ ├── referrers.go │ │ │ ├── schema1.go │ │ │ ├── transport │ │ │ │ ├── README.md │ │ │ │ ├── basic.go │ │ │ │ ├── bearer.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── logger.go │ │ │ │ ├── ping.go │ │ │ │ ├── retry.go │ │ │ │ ├── schemer.go │ │ │ │ ├── scope.go │ │ │ │ ├── transport.go │ │ │ │ └── useragent.go │ │ │ └── write.go │ │ │ ├── static │ │ │ └── layer.go │ │ │ ├── stream │ │ │ ├── README.md │ │ │ └── layer.go │ │ │ ├── tarball │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── layer.go │ │ │ └── write.go │ │ │ ├── types │ │ │ └── types.go │ │ │ ├── validate │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ └── options.go │ │ │ └── zz_deepcopy_generated.go │ ├── go-licenses │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── csv.go │ │ │ ├── internal │ │ │ └── third_party │ │ │ │ └── pkgsite │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── derrors │ │ │ │ └── derrors.go │ │ │ │ ├── source │ │ │ │ ├── meta-tags.go │ │ │ │ ├── source.go │ │ │ │ └── source_patch.go │ │ │ │ ├── stdlib │ │ │ │ └── stdlib.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ │ ├── licenses │ │ │ ├── classifier.go │ │ │ ├── find.go │ │ │ ├── library.go │ │ │ ├── module.go │ │ │ ├── restrictiveness.go │ │ │ └── types.go │ │ │ ├── main.go │ │ │ ├── report.go │ │ │ └── save.go │ ├── licenseclassifier │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ ├── Header │ │ │ │ ├── AFL-1.1 │ │ │ │ │ └── header.txt │ │ │ │ ├── AFL-1.2 │ │ │ │ │ └── header.txt │ │ │ │ ├── AFL-2.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── AFL-2.1 │ │ │ │ │ └── header.txt │ │ │ │ ├── AFL-3.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── AGPL-3.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── APSL-1.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── APSL-1.1 │ │ │ │ │ └── header.txt │ │ │ │ ├── APSL-1.2 │ │ │ │ │ └── header.txt │ │ │ │ ├── APSL-2.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── Apache-2.0 │ │ │ │ │ ├── header.txt │ │ │ │ │ ├── nourl.txt │ │ │ │ │ └── short.txt │ │ │ │ ├── BSD-3-Clause-LBNL │ │ │ │ │ └── header.txt │ │ │ │ ├── BSD-3-Clause │ │ │ │ │ ├── a.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── BitTorrent-1.1 │ │ │ │ │ └── header.txt │ │ │ │ ├── CDDL-1.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── CPAL-1.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── Elastic-2.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── GPL-1.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── b.txt │ │ │ │ ├── GPL-2.0-with-autoconf-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── GPL-2.0-with-classpath-exception │ │ │ │ │ └── header.txt │ │ │ │ ├── GPL-2.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ ├── c.txt │ │ │ │ │ ├── d.txt │ │ │ │ │ ├── e.txt │ │ │ │ │ ├── f.txt │ │ │ │ │ ├── g.txt │ │ │ │ │ ├── h.txt │ │ │ │ │ ├── header.txt │ │ │ │ │ ├── i.txt │ │ │ │ │ ├── j.txt │ │ │ │ │ └── k.txt │ │ │ │ ├── GPL-3.0-with-autoconf-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── GPL-3.0-with-bison-exception │ │ │ │ │ └── header.txt │ │ │ │ ├── GPL-3.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── ImageMagick │ │ │ │ │ └── header.txt │ │ │ │ ├── LGPL-2.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── LGPL-2.1 │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ ├── c.txt │ │ │ │ │ ├── d.txt │ │ │ │ │ ├── header.txt │ │ │ │ │ ├── qt_dual.txt │ │ │ │ │ └── qt_toolkit.txt │ │ │ │ ├── LGPL-3.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ └── header.txt │ │ │ │ ├── Lattice-Semiconductor │ │ │ │ │ └── copyright.txt │ │ │ │ ├── MIT │ │ │ │ │ └── header.txt │ │ │ │ ├── MPL-1.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── MPL-1.1 │ │ │ │ │ └── header.txt │ │ │ │ ├── MPL-2.0-no-copyleft-exception │ │ │ │ │ └── header.txt │ │ │ │ ├── MPL-2.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── MTK │ │ │ │ │ └── header.txt │ │ │ │ ├── OSL-3.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── OpenSSL │ │ │ │ │ └── header.txt │ │ │ │ ├── SGI-B-1.0 │ │ │ │ │ └── header.txt │ │ │ │ ├── SGI-B-1.1 │ │ │ │ │ └── header.txt │ │ │ │ ├── SISSL-1.2 │ │ │ │ │ └── header.txt │ │ │ │ ├── SISSL │ │ │ │ │ └── header.txt │ │ │ │ ├── SSPL-1.0 │ │ │ │ │ └── header.txt │ │ │ │ └── W3C │ │ │ │ │ └── header.txt │ │ │ ├── License │ │ │ │ ├── AFL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── AFL-1.2 │ │ │ │ │ └── license.txt │ │ │ │ ├── AFL-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── AFL-2.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── AFL-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── AGPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── AGPL-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── AML │ │ │ │ │ └── license.txt │ │ │ │ ├── AMPAS │ │ │ │ │ └── license.txt │ │ │ │ ├── ANTLR │ │ │ │ │ └── license.txt │ │ │ │ ├── APSL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── APSL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── APSL-1.2 │ │ │ │ │ └── license.txt │ │ │ │ ├── APSL-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── AdColony-SDK │ │ │ │ │ └── license.txt │ │ │ │ ├── Android-SDK │ │ │ │ │ ├── 20090410.txt │ │ │ │ │ └── 20161209.txt │ │ │ │ ├── Apache-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Apache-1.1 │ │ │ │ │ ├── license.txt │ │ │ │ │ └── log4j.txt │ │ │ │ ├── Apache-2.0-Modified │ │ │ │ │ └── license.txt │ │ │ │ ├── Apache-2.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ ├── beri.txt │ │ │ │ │ ├── no-header.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── Apache-with-LLVM-Exception │ │ │ │ │ └── license.txt │ │ │ │ ├── Apache-with-Runtime-Exception │ │ │ │ │ └── license.txt │ │ │ │ ├── Artistic-1.0-Perl │ │ │ │ │ └── license.txt │ │ │ │ ├── Artistic-1.0-cl8 │ │ │ │ │ └── license.txt │ │ │ │ ├── Artistic-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Artistic-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Atmel │ │ │ │ │ └── license.txt │ │ │ │ ├── Autodesk-3D-Studio-File-Toolkit │ │ │ │ │ └── license.txt │ │ │ │ ├── BCL │ │ │ │ │ └── license.txt │ │ │ │ ├── BLAS │ │ │ │ │ └── pristine.txt │ │ │ │ ├── BSD-0-Clause │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-2-Clause-Flex │ │ │ │ │ └── pristine.txt │ │ │ │ ├── BSD-2-Clause-FreeBSD │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-2-Clause-NetBSD │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-2-Clause-Patent │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-2-Clause │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── pristine.txt │ │ │ │ │ └── tcpdump.txt │ │ │ │ ├── BSD-3-Clause-Attribution │ │ │ │ │ ├── generic.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-3-Clause-Clear │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── BSD-3-Clause-LBNL │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-3-Clause-OpenMPI │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-3-Clause │ │ │ │ │ ├── JDOM.txt │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── juniper.txt │ │ │ │ │ ├── libcap.txt │ │ │ │ │ ├── libcap2.txt │ │ │ │ │ ├── libpcap.txt │ │ │ │ │ ├── mtk_pcap.txt │ │ │ │ │ ├── pristine.txt │ │ │ │ │ └── sun.txt │ │ │ │ ├── BSD-4-Clause-UC │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-4-Clause │ │ │ │ │ ├── kitware.txt │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── pristine.txt │ │ │ │ │ └── vovida.txt │ │ │ │ ├── BSD-FatFs │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-No-Other-Rights │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-Protection │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-Rice │ │ │ │ │ └── license.txt │ │ │ │ ├── BSD-Source-Code │ │ │ │ │ └── license.txt │ │ │ │ ├── BSL-1.0 │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── BabelstoneIDS │ │ │ │ │ └── license.txt │ │ │ │ ├── BeOpen │ │ │ │ │ └── license.txt │ │ │ │ ├── Beerware │ │ │ │ │ └── license.txt │ │ │ │ ├── BitTorrent-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── Bitstream │ │ │ │ │ └── license.txt │ │ │ │ ├── Boost-original │ │ │ │ │ └── variant1.txt │ │ │ │ ├── Business-Source-License-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── CAL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-2.5 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-4.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-2.5 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-4.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-ND-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-ND-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-ND-2.5 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-ND-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-ND-4.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-SA-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-SA-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-SA-2.5 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-SA-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-NC-SA-4.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-ND-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-ND-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-ND-2.5 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-ND-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-ND-4.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-SA-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-SA-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-SA-2.5 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-SA-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC-BY-SA-4.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CC0-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CDDL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CDDL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── CDLA-Permissive-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CECILL-2.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── CERN-OHL-WR-v2 │ │ │ │ │ └── license.txt │ │ │ │ ├── CERN-OHL-v1.2 │ │ │ │ │ └── license.txt │ │ │ │ ├── CLIPS │ │ │ │ │ └── pristine.txt │ │ │ │ ├── CNRI-Python-GPL-Compatible │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── CPAL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── CPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Cloud-Pre-GA │ │ │ │ │ └── license.txt │ │ │ │ ├── Commons-Clause │ │ │ │ │ └── license.txt │ │ │ │ ├── DBAD │ │ │ │ │ └── license.txt │ │ │ │ ├── DRL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── EPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── EPL-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── EUPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── EUPL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── Elastic-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Entenssa │ │ │ │ │ └── license.txt │ │ │ │ ├── FFT2D │ │ │ │ │ └── pristine.txt │ │ │ │ ├── FTL │ │ │ │ │ └── license.txt │ │ │ │ ├── Facebook-2-Clause │ │ │ │ │ └── license.txt │ │ │ │ ├── Facebook-3-Clause │ │ │ │ │ └── license.txt │ │ │ │ ├── Facebook-Examples │ │ │ │ │ └── license.txt │ │ │ │ ├── FreeImage │ │ │ │ │ └── license.txt │ │ │ │ ├── GD-Graphic-Library │ │ │ │ │ └── license.txt │ │ │ │ ├── GIAJWTOU-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── GIF-Encoder │ │ │ │ │ └── license.txt │ │ │ │ ├── GNU-All-permissive-Copying-License │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-2.0-with-GCC-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-2.0-with-autoconf-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-2.0-with-bison-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-2.0-with-classpath-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-2.0-with-font-exception │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-2.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-3.0-with-GCC-exception │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-3.0-with-autoconf-exception │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-3.0-with-bison-exception │ │ │ │ │ └── license.txt │ │ │ │ ├── GPL-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── GUST-Font-License │ │ │ │ │ └── license.txt │ │ │ │ ├── GenericIntel │ │ │ │ │ └── license.txt │ │ │ │ ├── HDF5 │ │ │ │ │ └── pristine.txt │ │ │ │ ├── HPND-sell-variant │ │ │ │ │ ├── license.txt │ │ │ │ │ └── vecmath.txt │ │ │ │ ├── HTK │ │ │ │ │ └── license.txt │ │ │ │ ├── ICU │ │ │ │ │ └── license.txt │ │ │ │ ├── IDA │ │ │ │ │ └── license.txt │ │ │ │ ├── IJG │ │ │ │ │ └── license.txt │ │ │ │ ├── IPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── ISC │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── ImageMagick │ │ │ │ │ ├── license.txt │ │ │ │ │ └── summary.txt │ │ │ │ ├── Info-ZIP │ │ │ │ │ └── license.txt │ │ │ │ ├── InnerNet │ │ │ │ │ └── license.txt │ │ │ │ ├── JSON │ │ │ │ │ └── license.txt │ │ │ │ ├── JTidy │ │ │ │ │ └── pristine.txt │ │ │ │ ├── JasPer │ │ │ │ │ └── license.txt │ │ │ │ ├── KUKA │ │ │ │ │ └── pristine.txt │ │ │ │ ├── Khronos │ │ │ │ │ └── license.txt │ │ │ │ ├── Khronos_OpenCL │ │ │ │ │ └── pristine.txt │ │ │ │ ├── LGPL-2.0 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── LGPL-2.1 │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── LGPL-3.0 │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── LGPLLR │ │ │ │ │ └── license.txt │ │ │ │ ├── LPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── LPL-1.02 │ │ │ │ │ └── license.txt │ │ │ │ ├── LPPL-1.3c │ │ │ │ │ └── license.txt │ │ │ │ ├── LZMA │ │ │ │ │ └── license.txt │ │ │ │ ├── Lattice-Semiconductor │ │ │ │ │ └── license.txt │ │ │ │ ├── Libpng │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-C-Ares │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-MIT-Lucent │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-Nordic-binary │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-SendMail │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-iccjpeg │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-nacl │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-takuya-ooura │ │ │ │ │ └── license.txt │ │ │ │ ├── LicenseRef-uthash │ │ │ │ │ └── license.txt │ │ │ │ ├── Lil-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Linux-OpenIB │ │ │ │ │ └── license.txt │ │ │ │ ├── MIT-Modern-Variant │ │ │ │ │ └── pristine.txt │ │ │ │ ├── MIT │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── dec.txt │ │ │ │ │ ├── pristine.txt │ │ │ │ │ └── xfig.txt │ │ │ │ ├── MPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── MPL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── MPL-2.0 │ │ │ │ │ ├── license.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── MS-PL │ │ │ │ │ └── license.txt │ │ │ │ ├── MS-RL │ │ │ │ │ └── license.txt │ │ │ │ ├── MTK │ │ │ │ │ ├── a.txt │ │ │ │ │ └── pristine.txt │ │ │ │ ├── NAIST-2003 │ │ │ │ │ └── license.txt │ │ │ │ ├── NCBI │ │ │ │ │ └── license.txt │ │ │ │ ├── NCSA │ │ │ │ │ └── license.txt │ │ │ │ ├── NGPL │ │ │ │ │ └── license.txt │ │ │ │ ├── NPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── NPL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── NREL │ │ │ │ │ └── license.txt │ │ │ │ ├── OFL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── OROMatcher │ │ │ │ │ └── license.txt │ │ │ │ ├── OSL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── OSL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── OSL-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── OSL-2.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── OSL-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Open-Game-License-1.0a │ │ │ │ │ └── pristine.txt │ │ │ │ ├── OpenLDAP │ │ │ │ │ └── license.txt │ │ │ │ ├── OpenSSL │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── OpenVision │ │ │ │ │ └── license.txt │ │ │ │ ├── Oracle-Open-Symphony │ │ │ │ │ └── license.txt │ │ │ │ ├── PHP-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── PHP-3.01 │ │ │ │ │ └── license.txt │ │ │ │ ├── PIL │ │ │ │ │ └── license.txt │ │ │ │ ├── PNG │ │ │ │ │ └── pristine.txt │ │ │ │ ├── PPP │ │ │ │ │ └── pristine.txt │ │ │ │ ├── PostgreSQL │ │ │ │ │ └── license.txt │ │ │ │ ├── Python-2.0-complete │ │ │ │ │ └── license.txt │ │ │ │ ├── Python-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── QPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Qhull │ │ │ │ │ └── license.txt │ │ │ │ ├── RCSB-PDB │ │ │ │ │ └── license.txt │ │ │ │ ├── RSA │ │ │ │ │ └── pristine.txt │ │ │ │ ├── Rijndael-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Ruby │ │ │ │ │ └── license.txt │ │ │ │ ├── SGI-B-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── SGI-B-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── SGI-B-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── SISSL-1.2 │ │ │ │ │ └── license.txt │ │ │ │ ├── SISSL │ │ │ │ │ └── license.txt │ │ │ │ ├── SPL-SQRT-FLOOR │ │ │ │ │ └── license.txt │ │ │ │ ├── SQLite │ │ │ │ │ └── license.txt │ │ │ │ ├── SSPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Sflow │ │ │ │ │ └── license.txt │ │ │ │ ├── Sleepycat │ │ │ │ │ └── license.txt │ │ │ │ ├── Spencer-86 │ │ │ │ │ ├── license.txt │ │ │ │ │ └── revised.txt │ │ │ │ ├── SunPro │ │ │ │ │ └── license.txt │ │ │ │ ├── TPM-2 │ │ │ │ │ └── license.txt │ │ │ │ ├── Tensilica │ │ │ │ │ └── pristine.txt │ │ │ │ ├── UFL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── UPL-1.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── USGovernment │ │ │ │ │ └── license.txt │ │ │ │ ├── Unicode-DFS-2015 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── Unicode-DFS-2016 │ │ │ │ │ ├── a.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── Unicode-TOU │ │ │ │ │ └── license.txt │ │ │ │ ├── Unlicense │ │ │ │ │ └── license.txt │ │ │ │ ├── VMAC │ │ │ │ │ └── license.txt │ │ │ │ ├── Vim │ │ │ │ │ └── license.txt │ │ │ │ ├── W3C-19980720 │ │ │ │ │ └── license.txt │ │ │ │ ├── W3C-20150513 │ │ │ │ │ └── license.txt │ │ │ │ ├── W3C │ │ │ │ │ └── license.txt │ │ │ │ ├── WTFPL │ │ │ │ │ ├── license.txt │ │ │ │ │ └── v2.txt │ │ │ │ ├── Waymo1P │ │ │ │ │ └── notice.txt │ │ │ │ ├── Windows-SDK-10 │ │ │ │ │ └── license.txt │ │ │ │ ├── WordNet-3.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── X11-Lucent │ │ │ │ │ └── license.txt │ │ │ │ ├── X11 │ │ │ │ │ └── license.txt │ │ │ │ ├── XZ │ │ │ │ │ ├── java.txt │ │ │ │ │ └── license.txt │ │ │ │ ├── Xcode │ │ │ │ │ └── license.txt │ │ │ │ ├── Xnet │ │ │ │ │ └── license.txt │ │ │ │ ├── ZPL-1.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── ZPL-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── ZPL-2.1 │ │ │ │ │ └── license.txt │ │ │ │ ├── Zend-2.0 │ │ │ │ │ └── license.txt │ │ │ │ ├── Zendesk │ │ │ │ │ └── license.txt │ │ │ │ ├── Zlib │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── pristine.txt │ │ │ │ │ └── roelofs.txt │ │ │ │ ├── aopalliance │ │ │ │ │ └── license.txt │ │ │ │ ├── blessing │ │ │ │ │ └── license.txt │ │ │ │ ├── bzip2 │ │ │ │ │ ├── 1.0.3.txt │ │ │ │ │ ├── 1.0.4.txt │ │ │ │ │ ├── 1.0.5.txt │ │ │ │ │ ├── 1.0.6.txt │ │ │ │ │ ├── 1.0.8.txt │ │ │ │ │ └── 1.0.txt │ │ │ │ ├── cURL │ │ │ │ │ └── pristine.txt │ │ │ │ ├── dso │ │ │ │ │ └── license.txt │ │ │ │ ├── eGenix │ │ │ │ │ └── license.txt │ │ │ │ ├── geant4 │ │ │ │ │ └── license.txt │ │ │ │ ├── getopt │ │ │ │ │ └── license.txt │ │ │ │ ├── hdparm │ │ │ │ │ └── license.txt │ │ │ │ ├── libtiff │ │ │ │ │ ├── license.txt │ │ │ │ │ └── singular.txt │ │ │ │ ├── pffft │ │ │ │ │ └── license.txt │ │ │ │ ├── re2c │ │ │ │ │ └── license.txt │ │ │ │ ├── tcl_tk │ │ │ │ │ └── pristine.txt │ │ │ │ ├── unicode_org │ │ │ │ │ └── pristine.txt │ │ │ │ ├── wxWindows-3.1 │ │ │ │ │ └── license.txt │ │ │ │ └── zlib-acknowledgement │ │ │ │ │ └── license.txt │ │ │ ├── Supplement │ │ │ │ ├── Apache-2.0 │ │ │ │ │ ├── apr.txt │ │ │ │ │ ├── contributions.txt │ │ │ │ │ ├── openssl.txt │ │ │ │ │ └── openssl_debian.txt │ │ │ │ ├── Artistic-1.0-Perl │ │ │ │ │ └── mjd_cpan_org.txt │ │ │ │ ├── BSD-2-Clause │ │ │ │ │ ├── laodict.txt │ │ │ │ │ └── litex.txt │ │ │ │ ├── BSD-3-Clause │ │ │ │ │ ├── cjdict.txt │ │ │ │ │ ├── preface-chrome.txt │ │ │ │ │ ├── preface-libtabe.txt │ │ │ │ │ ├── preface-pcre.txt │ │ │ │ │ ├── protobuf.txt │ │ │ │ │ ├── uc-unix-a.txt │ │ │ │ │ └── uc-unix-b.txt │ │ │ │ ├── BSD-4-Clause-UC │ │ │ │ │ └── apr.txt │ │ │ │ ├── BSD-Source-Code │ │ │ │ │ └── neon2sse.txt │ │ │ │ ├── CC-BY-4.0 │ │ │ │ │ └── preface.txt │ │ │ │ ├── CC-BY-NC-4.0 │ │ │ │ │ └── preface.txt │ │ │ │ ├── CC-BY-NC-ND-4.0 │ │ │ │ │ └── preface.txt │ │ │ │ ├── CC-BY-NC-SA-4.0 │ │ │ │ │ └── preface.txt │ │ │ │ ├── CC-BY-ND-4.0 │ │ │ │ │ └── preface.txt │ │ │ │ ├── CC-BY-SA-4.0 │ │ │ │ │ └── preface.txt │ │ │ │ ├── Entenssa │ │ │ │ │ └── minpack.txt │ │ │ │ ├── GPL-2.0 │ │ │ │ │ └── syscall.txt │ │ │ │ ├── GPL-3.0 │ │ │ │ │ └── application-a.txt │ │ │ │ ├── ICU │ │ │ │ │ └── timezone.txt │ │ │ │ ├── ImageMagick │ │ │ │ │ └── usage.txt │ │ │ │ ├── MIT │ │ │ │ │ ├── checker-framework.txt │ │ │ │ │ └── preface-a.txt │ │ │ │ ├── NCSA │ │ │ │ │ └── llvm.txt │ │ │ │ ├── OROMatcher │ │ │ │ │ └── preface.txt │ │ │ │ ├── Python-2.0 │ │ │ │ │ └── history.txt │ │ │ │ ├── X11-Lucent │ │ │ │ │ └── utf8.txt │ │ │ │ ├── XZ │ │ │ │ │ └── liblzma.txt │ │ │ │ └── Zlib │ │ │ │ │ ├── extracted-readme.txt │ │ │ │ │ ├── fastcopy-emails.txt │ │ │ │ │ └── requests.txt │ │ │ └── embed.go │ │ │ ├── classifier.go │ │ │ ├── diff.go │ │ │ ├── document.go │ │ │ ├── frequencies.go │ │ │ ├── scoring.go │ │ │ ├── searchset.go │ │ │ ├── tokenizer.go │ │ │ └── trace.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ └── stream │ │ │ └── s2a_stream.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── internallog │ │ ├── grpclog │ │ │ └── grpclog.go │ │ ├── internal │ │ │ └── internal.go │ │ └── internallog.go │ │ ├── invoke.go │ │ ├── iterator │ │ └── iterator.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ └── util.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jonboulle │ └── clockwork │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── clockwork.go │ │ ├── context.go │ │ ├── ticker.go │ │ └── timer.go ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── jstemmer │ └── go-junit-report │ │ └── v2 │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── gtr │ │ └── gtr.go │ │ ├── internal │ │ └── gojunitreport │ │ │ └── go-junit-report.go │ │ ├── junit │ │ └── junit.go │ │ ├── main.go │ │ └── parser │ │ └── gotest │ │ ├── benchmark.go │ │ ├── event.go │ │ ├── gotest.go │ │ ├── internal │ │ ├── collector │ │ │ └── collector.go │ │ └── reader │ │ │ └── reader.go │ │ ├── json.go │ │ └── report_builder.go ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ ├── le │ │ │ ├── le.go │ │ │ ├── unsafe_disabled.go │ │ │ └── unsafe_enabled.go │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── simple_go124.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ └── diff │ │ └── diff.go ├── liggitt │ └── tabwriter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── tabwriter.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ └── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ └── go-wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go ├── moby │ ├── spdystream │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── connection.go │ │ ├── handlers.go │ │ ├── priority.go │ │ ├── spdy │ │ │ ├── dictionary.go │ │ │ ├── read.go │ │ │ ├── types.go │ │ │ └── write.go │ │ ├── stream.go │ │ └── utils.go │ └── term │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ ├── doc.go │ │ ├── proxy.go │ │ ├── term.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── termios_bsd.go │ │ ├── termios_nonbsd.go │ │ ├── termios_unix.go │ │ ├── termios_windows.go │ │ └── windows │ │ ├── ansi_reader.go │ │ ├── ansi_writer.go │ │ ├── console.go │ │ └── doc.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── mxk │ └── go-flowrate │ │ ├── LICENSE │ │ └── flowrate │ │ ├── flowrate.go │ │ ├── io.go │ │ └── util.go ├── onsi │ └── gomega │ │ ├── LICENSE │ │ └── format │ │ └── format.go ├── open-policy-agent │ └── cert-controller │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ └── rotator │ │ └── rotator.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ └── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ ├── v1 │ │ ├── annotations.go │ │ ├── config.go │ │ ├── descriptor.go │ │ ├── index.go │ │ ├── layout.go │ │ ├── manifest.go │ │ └── mediatype.go │ │ ├── version.go │ │ └── versioned.go ├── otiai10 │ └── copy │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copy.go │ │ ├── copy_namedpipes.go │ │ ├── copy_namedpipes_x.go │ │ ├── fileinfo_go1.15.go │ │ ├── fileinfo_go1.16.go │ │ ├── options.go │ │ ├── permission_control.go │ │ ├── preserve_ltimes.go │ │ ├── preserve_ltimes_x.go │ │ ├── preserve_owner.go │ │ ├── preserve_owner_x.go │ │ ├── preserve_times.go │ │ ├── stat_times.go │ │ ├── stat_times_darwin.go │ │ ├── stat_times_freebsd.go │ │ ├── stat_times_js.go │ │ ├── stat_times_windows.go │ │ ├── stat_times_x.go │ │ ├── test_setup.go │ │ └── test_setup_x.go ├── pelletier │ └── go-toml │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── azure-pipelines.yml │ │ ├── benchmark.sh │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── localtime.go │ │ ├── marshal.go │ │ ├── marshal_OrderPreserve_test.toml │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomlpub.go │ │ ├── tomltree_create.go │ │ ├── tomltree_write.go │ │ └── tomltree_writepub.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ ├── client.go │ │ │ └── prometheus │ │ │ │ └── v1 │ │ │ │ └── api.go │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── sergi │ └── go-diff │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── diffmatchpatch │ │ ├── diff.go │ │ ├── diffmatchpatch.go │ │ ├── index.go │ │ ├── match.go │ │ ├── mathutil.go │ │ ├── operation_string.go │ │ ├── patch.go │ │ └── stringutil.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ ├── afero │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ └── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go ├── spyzhov │ └── ajson │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── buffer.go │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── errors.go │ │ ├── internal │ │ └── state.go │ │ ├── jsonpath.go │ │ ├── math.go │ │ ├── node.go │ │ ├── node_mutations.go │ │ ├── quote.go │ │ └── unquote.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── vbatts │ └── tar-split │ │ ├── LICENSE │ │ └── archive │ │ └── tar │ │ ├── common.go │ │ ├── format.go │ │ ├── reader.go │ │ ├── stat_actime1.go │ │ ├── stat_actime2.go │ │ ├── stat_unix.go │ │ ├── strconv.go │ │ └── writer.go ├── x448 │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go └── xlab │ └── treeprint │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── helpers.go │ ├── struct.go │ └── treeprint.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ └── resource.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ ├── gen.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go ├── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY-INSIGHTS.yml │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── exporters │ │ └── otlp │ │ │ └── otlpmetric │ │ │ └── otlpmetricgrpc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── internal │ │ │ ├── envconfig │ │ │ │ └── envconfig.go │ │ │ ├── gen.go │ │ │ ├── oconf │ │ │ │ ├── envconfig.go │ │ │ │ ├── options.go │ │ │ │ ├── optiontypes.go │ │ │ │ └── tls.go │ │ │ ├── partialsuccess.go │ │ │ ├── retry │ │ │ │ └── retry.go │ │ │ └── transform │ │ │ │ ├── attribute.go │ │ │ │ ├── error.go │ │ │ │ └── metricdata.go │ │ │ └── version.go │ ├── handler.go │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── instrumentation │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── library.go │ │ │ └── scope.go │ │ ├── internal │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ ├── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aggregation.go │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── exemplar.go │ │ │ ├── exemplar │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── filter.go │ │ │ │ ├── fixed_size_reservoir.go │ │ │ │ ├── histogram_reservoir.go │ │ │ │ ├── reservoir.go │ │ │ │ ├── storage.go │ │ │ │ └── value.go │ │ │ ├── exporter.go │ │ │ ├── instrument.go │ │ │ ├── instrumentkind_string.go │ │ │ ├── internal │ │ │ │ ├── aggregate │ │ │ │ │ ├── aggregate.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── drop.go │ │ │ │ │ ├── exemplar.go │ │ │ │ │ ├── exponential_histogram.go │ │ │ │ │ ├── filtered_reservoir.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── lastvalue.go │ │ │ │ │ ├── limit.go │ │ │ │ │ └── sum.go │ │ │ │ ├── reuse_slice.go │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── manual_reader.go │ │ │ ├── meter.go │ │ │ ├── metricdata │ │ │ │ ├── README.md │ │ │ │ ├── data.go │ │ │ │ ├── temporality.go │ │ │ │ └── temporality_string.go │ │ │ ├── periodic_reader.go │ │ │ ├── pipeline.go │ │ │ ├── provider.go │ │ │ ├── reader.go │ │ │ ├── version.go │ │ │ └── view.go │ │ ├── resource │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── builtin.go │ │ │ ├── config.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── host_id.go │ │ │ ├── host_id_bsd.go │ │ │ ├── host_id_darwin.go │ │ │ ├── host_id_exec.go │ │ │ ├── host_id_linux.go │ │ │ ├── host_id_readfile.go │ │ │ ├── host_id_unsupported.go │ │ │ ├── host_id_windows.go │ │ │ ├── os.go │ │ │ ├── os_release_darwin.go │ │ │ ├── os_release_unix.go │ │ │ ├── os_unix.go │ │ │ ├── os_unsupported.go │ │ │ ├── os_windows.go │ │ │ ├── process.go │ │ │ └── resource.go │ │ └── version.go │ ├── semconv │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ ├── v1.30.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ └── v1.37.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── collector │ └── metrics │ │ └── v1 │ │ ├── metrics_service.pb.go │ │ ├── metrics_service.pb.gw.go │ │ └── metrics_service_grpc.pb.go │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── metrics │ └── v1 │ │ └── metrics.pb.go │ └── resource │ └── v1 │ └── resource.pb.go ├── go.uber.org ├── atomic │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bool.go │ ├── bool_ext.go │ ├── doc.go │ ├── duration.go │ ├── duration_ext.go │ ├── error.go │ ├── error_ext.go │ ├── float32.go │ ├── float32_ext.go │ ├── float64.go │ ├── float64_ext.go │ ├── gen.go │ ├── int32.go │ ├── int64.go │ ├── nocmp.go │ ├── pointer_go118.go │ ├── pointer_go118_pre119.go │ ├── pointer_go119.go │ ├── string.go │ ├── string_ext.go │ ├── time.go │ ├── time_ext.go │ ├── uint32.go │ ├── uint64.go │ ├── uintptr.go │ ├── unsafe_pointer.go │ └── value.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ ├── level_enabler.go │ ├── pool │ │ └── pool.go │ └── stacktrace │ │ └── stack.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ └── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go ├── go.yaml.in └── yaml │ ├── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ └── xchacha20poly1305.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── hkdf │ │ └── hkdf.go │ └── internal │ │ ├── alias │ │ ├── alias.go │ │ └── alias_purego.go │ │ └── poly1305 │ │ ├── mac_noasm.go │ │ ├── poly1305.go │ │ ├── sum_amd64.s │ │ ├── sum_asm.go │ │ ├── sum_generic.go │ │ ├── sum_loong64.s │ │ ├── sum_ppc64x.s │ │ ├── sum_s390x.go │ │ └── sum_s390x.s │ ├── exp │ ├── LICENSE │ ├── PATENTS │ └── maps │ │ └── maps.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── ctxhttp │ │ │ └── ctxhttp.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ └── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── encoding │ │ ├── encoding.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ ├── ast │ │ ├── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ ├── imports │ └── forward.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── gopathwalk │ └── walk.go │ ├── imports │ ├── fix.go │ ├── imports.go │ ├── mod.go │ ├── mod_cache.go │ ├── sortimports.go │ ├── source.go │ ├── source_env.go │ └── source_modindex.go │ ├── modindex │ ├── directories.go │ ├── index.go │ ├── lookup.go │ ├── modindex.go │ └── symbols.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ ├── varkind_go124.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── support │ │ └── bundler │ │ │ └── bundler.go │ └── transport │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ └── dial.go ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ ├── distribution │ │ │ └── distribution.pb.go │ │ ├── httpbody │ │ │ └── httpbody.pb.go │ │ ├── label │ │ │ └── label.pb.go │ │ ├── launch_stage.pb.go │ │ ├── metric │ │ │ └── metric.pb.go │ │ └── monitoredres │ │ │ └── monitored_resource.pb.go │ │ ├── appengine │ │ └── logging │ │ │ └── v1 │ │ │ └── request_log.pb.go │ │ ├── cloud │ │ └── audit │ │ │ ├── audit_log.pb.go │ │ │ └── bigquery_audit_metadata.pb.go │ │ ├── iam │ │ └── v1 │ │ │ └── alias.go │ │ ├── logging │ │ └── type │ │ │ ├── http_request.pb.go │ │ │ └── log_severity.pb.go │ │ ├── rpc │ │ ├── LICENSE │ │ ├── code │ │ │ └── code.pb.go │ │ ├── context │ │ │ └── attribute_context │ │ │ │ └── attribute_context.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ ├── calendarperiod │ │ └── calendar_period.pb.go │ │ ├── expr │ │ └── expr.pb.go │ │ └── timeofday │ │ └── timeofday.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── oauth │ │ │ └── oauth.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ └── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ ├── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ │ └── xds │ │ │ ├── clients │ │ │ ├── config.go │ │ │ └── transport_builder.go │ │ │ └── xds.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── evanphx │ └── json-patch.v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apidiscovery │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── certificates │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── lifecycle.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── well_known_taints.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── discovery │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── events │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.validations.go │ ├── flowcontrol │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta3 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── node │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── policy │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── rbac │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── resource │ │ ├── v1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha3 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── scheduling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── storage │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ └── storagemigration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.prerelease-lifecycle.go ├── apiextensions-apiserver │ ├── LICENSE │ └── pkg │ │ ├── apis │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── client │ │ ├── applyconfiguration │ │ │ └── apiextensions │ │ │ │ ├── v1 │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ ├── webhookclientconfig.go │ │ │ │ └── webhookconversion.go │ │ │ │ └── v1beta1 │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ └── webhookclientconfig.go │ │ └── clientset │ │ │ └── clientset │ │ │ ├── clientset.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ └── features │ │ ├── OWNERS │ │ └── kube_features.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_restmapper.go │ │ │ ├── operation │ │ │ │ └── operation.go │ │ │ ├── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── safe │ │ │ │ └── safe.go │ │ │ ├── validate │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── constraints │ │ │ │ │ └── constraints.go │ │ │ │ ├── content │ │ │ │ │ └── errors.go │ │ │ │ ├── doc.go │ │ │ │ ├── each.go │ │ │ │ ├── enum.go │ │ │ │ ├── equality.go │ │ │ │ ├── immutable.go │ │ │ │ ├── item.go │ │ │ │ ├── limits.go │ │ │ │ ├── required.go │ │ │ │ ├── subfield.go │ │ │ │ ├── testing.go │ │ │ │ ├── union.go │ │ │ │ └── zeroorone.go │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_fuzz.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ └── scheme.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── allocator.go │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── mapper.go │ │ │ ├── negotiate.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── serializer │ │ │ │ ├── cbor │ │ │ │ │ ├── cbor.go │ │ │ │ │ ├── direct │ │ │ │ │ │ └── direct.go │ │ │ │ │ ├── framer.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── modes │ │ │ │ │ │ │ ├── buffers.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ └── transcoding.go │ │ │ │ │ └── raw.go │ │ │ │ ├── codec_factory.go │ │ │ │ ├── json │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── splice.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── expiring.go │ │ │ │ └── lruexpirecache.go │ │ │ ├── diff │ │ │ │ ├── cmp.go │ │ │ │ ├── diff.go │ │ │ │ └── legacy_diff.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── duration │ │ │ │ └── duration.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── httpstream │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── spdy │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ └── upgrade.go │ │ │ │ └── wsstream │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stream.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── jsonmergepatch │ │ │ │ └── patch.go │ │ │ ├── managedfields │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── extract.go │ │ │ │ ├── fieldmanager.go │ │ │ │ ├── gvkparser.go │ │ │ │ ├── internal │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ ├── conflict.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ ├── managedfields.go │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── pathelement.go │ │ │ │ │ ├── runtimetypeconverter.go │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ ├── versioncheck.go │ │ │ │ │ └── versionconverter.go │ │ │ │ ├── node.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── scalehandler.go │ │ │ │ └── typeconverter.go │ │ │ ├── mergepatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── portforward │ │ │ │ └── constants.go │ │ │ ├── proxy │ │ │ │ ├── dial.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ └── upgradeaware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── remotecommand │ │ │ │ └── constants.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── field │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ ├── ip.go │ │ │ │ └── validation.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ ├── decoder.go │ │ │ │ └── stream_reader.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ ├── netutil │ │ └── addr.go │ │ └── reflect │ │ └── deep_equal.go ├── apiserver │ ├── LICENSE │ └── pkg │ │ ├── features │ │ ├── OWNERS │ │ └── kube_features.go │ │ └── util │ │ └── feature │ │ └── feature_gate.go ├── cli-runtime │ ├── LICENSE │ └── pkg │ │ ├── genericclioptions │ │ ├── builder_flags.go │ │ ├── builder_flags_fake.go │ │ ├── client_config.go │ │ ├── command_headers.go │ │ ├── config_flags.go │ │ ├── config_flags_fake.go │ │ ├── doc.go │ │ ├── filename_flags.go │ │ ├── io_options.go │ │ ├── json_yaml_flags.go │ │ ├── jsonpath_flags.go │ │ ├── kube_template_flags.go │ │ ├── name_flags.go │ │ ├── print_flags.go │ │ ├── record_flags.go │ │ └── template_flags.go │ │ ├── genericiooptions │ │ └── io_options.go │ │ ├── printers │ │ ├── discard.go │ │ ├── doc.go │ │ ├── interface.go │ │ ├── json.go │ │ ├── jsonpath.go │ │ ├── kyaml.go │ │ ├── managedfields.go │ │ ├── name.go │ │ ├── sourcechecker.go │ │ ├── tableprinter.go │ │ ├── tabwriter.go │ │ ├── template.go │ │ ├── terminal.go │ │ ├── typesetter.go │ │ ├── warningprinter.go │ │ └── yaml.go │ │ └── resource │ │ ├── builder.go │ │ ├── client.go │ │ ├── crd_finder.go │ │ ├── doc.go │ │ ├── fake.go │ │ ├── fallback_query_param_verifier.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── kustomizevisitor.go │ │ ├── mapper.go │ │ ├── metadata_decoder.go │ │ ├── query_param_verifier.go │ │ ├── query_param_verifier_v3.go │ │ ├── result.go │ │ ├── scheme.go │ │ ├── selector.go │ │ └── visitor.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── OWNERS │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validation.go │ │ │ │ └── variable.go │ │ │ └── v1beta1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── serverstorageversion.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── storageversioncondition.go │ │ │ │ └── storageversionstatus.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── scale.go │ │ │ │ ├── scalespec.go │ │ │ │ └── scalestatus.go │ │ │ ├── v2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── v2beta1 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ └── v2beta2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ ├── job.go │ │ │ │ ├── jobcondition.go │ │ │ │ ├── jobspec.go │ │ │ │ ├── jobstatus.go │ │ │ │ ├── jobtemplatespec.go │ │ │ │ ├── podfailurepolicy.go │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ ├── successpolicy.go │ │ │ │ ├── successpolicyrule.go │ │ │ │ └── uncountedterminatedpods.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ └── jobtemplatespec.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── clustertrustbundlespec.go │ │ │ │ ├── podcertificaterequest.go │ │ │ │ ├── podcertificaterequestspec.go │ │ │ │ └── podcertificaterequeststatus.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ ├── certificatesigningrequeststatus.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── clustertrustbundlespec.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── leasecandidatespec.go │ │ │ │ └── leasespec.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── affinity.go │ │ │ │ ├── apparmorprofile.go │ │ │ │ ├── attachedvolume.go │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ ├── capabilities.go │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ ├── cindervolumesource.go │ │ │ │ ├── clientipconfig.go │ │ │ │ ├── clustertrustbundleprojection.go │ │ │ │ ├── componentcondition.go │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── configmapenvsource.go │ │ │ │ ├── configmapkeyselector.go │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ ├── configmapprojection.go │ │ │ │ ├── configmapvolumesource.go │ │ │ │ ├── container.go │ │ │ │ ├── containerextendedresourcerequest.go │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.go │ │ │ │ ├── containerrestartrule.go │ │ │ │ ├── containerrestartruleonexitcodes.go │ │ │ │ ├── containerstate.go │ │ │ │ ├── containerstaterunning.go │ │ │ │ ├── containerstateterminated.go │ │ │ │ ├── containerstatewaiting.go │ │ │ │ ├── containerstatus.go │ │ │ │ ├── containeruser.go │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ ├── csivolumesource.go │ │ │ │ ├── daemonendpoint.go │ │ │ │ ├── downwardapiprojection.go │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ ├── endpointaddress.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpointsubset.go │ │ │ │ ├── envfromsource.go │ │ │ │ ├── envvar.go │ │ │ │ ├── envvarsource.go │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ ├── event.go │ │ │ │ ├── eventseries.go │ │ │ │ ├── eventsource.go │ │ │ │ ├── execaction.go │ │ │ │ ├── fcvolumesource.go │ │ │ │ ├── filekeyselector.go │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ ├── flexvolumesource.go │ │ │ │ ├── flockervolumesource.go │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ ├── grpcaction.go │ │ │ │ ├── hostalias.go │ │ │ │ ├── hostip.go │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ ├── httpgetaction.go │ │ │ │ ├── httpheader.go │ │ │ │ ├── imagevolumesource.go │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ ├── iscsivolumesource.go │ │ │ │ ├── keytopath.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecyclehandler.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── limitrangeitem.go │ │ │ │ ├── limitrangespec.go │ │ │ │ ├── linuxcontaineruser.go │ │ │ │ ├── loadbalanceringress.go │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ ├── localobjectreference.go │ │ │ │ ├── localvolumesource.go │ │ │ │ ├── modifyvolumestatus.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespacecondition.go │ │ │ │ ├── namespacespec.go │ │ │ │ ├── namespacestatus.go │ │ │ │ ├── nfsvolumesource.go │ │ │ │ ├── node.go │ │ │ │ ├── nodeaddress.go │ │ │ │ ├── nodeaffinity.go │ │ │ │ ├── nodecondition.go │ │ │ │ ├── nodeconfigsource.go │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ ├── nodefeatures.go │ │ │ │ ├── noderuntimehandler.go │ │ │ │ ├── noderuntimehandlerfeatures.go │ │ │ │ ├── nodeselector.go │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ ├── nodeselectorterm.go │ │ │ │ ├── nodespec.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── nodeswapstatus.go │ │ │ │ ├── nodesysteminfo.go │ │ │ │ ├── objectfieldselector.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ ├── persistentvolumesource.go │ │ │ │ ├── persistentvolumespec.go │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ ├── pod.go │ │ │ │ ├── podaffinity.go │ │ │ │ ├── podaffinityterm.go │ │ │ │ ├── podantiaffinity.go │ │ │ │ ├── podcertificateprojection.go │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ ├── podextendedresourceclaimstatus.go │ │ │ │ ├── podip.go │ │ │ │ ├── podos.go │ │ │ │ ├── podreadinessgate.go │ │ │ │ ├── podresourceclaim.go │ │ │ │ ├── podresourceclaimstatus.go │ │ │ │ ├── podschedulinggate.go │ │ │ │ ├── podsecuritycontext.go │ │ │ │ ├── podspec.go │ │ │ │ ├── podstatus.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── podtemplatespec.go │ │ │ │ ├── portstatus.go │ │ │ │ ├── portworxvolumesource.go │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ ├── probe.go │ │ │ │ ├── probehandler.go │ │ │ │ ├── projectedvolumesource.go │ │ │ │ ├── quobytevolumesource.go │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ ├── rbdvolumesource.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourcefieldselector.go │ │ │ │ ├── resourcehealth.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── resourcequotaspec.go │ │ │ │ ├── resourcequotastatus.go │ │ │ │ ├── resourcerequirements.go │ │ │ │ ├── resourcestatus.go │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ ├── scopeselector.go │ │ │ │ ├── seccompprofile.go │ │ │ │ ├── secret.go │ │ │ │ ├── secretenvsource.go │ │ │ │ ├── secretkeyselector.go │ │ │ │ ├── secretprojection.go │ │ │ │ ├── secretreference.go │ │ │ │ ├── secretvolumesource.go │ │ │ │ ├── securitycontext.go │ │ │ │ ├── selinuxoptions.go │ │ │ │ ├── service.go │ │ │ │ ├── serviceaccount.go │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ ├── serviceport.go │ │ │ │ ├── servicespec.go │ │ │ │ ├── servicestatus.go │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ ├── sleepaction.go │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ ├── storageosvolumesource.go │ │ │ │ ├── sysctl.go │ │ │ │ ├── taint.go │ │ │ │ ├── tcpsocketaction.go │ │ │ │ ├── toleration.go │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ ├── topologyselectorterm.go │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ ├── typedobjectreference.go │ │ │ │ ├── volume.go │ │ │ │ ├── volumedevice.go │ │ │ │ ├── volumemount.go │ │ │ │ ├── volumemountstatus.go │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ ├── volumeprojection.go │ │ │ │ ├── volumeresourcerequirements.go │ │ │ │ ├── volumesource.go │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ └── windowssecuritycontextoptions.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ └── scale.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta2 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ └── v1beta3 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ ├── imagepolicy │ │ │ └── v1alpha1 │ │ │ │ ├── imagereview.go │ │ │ │ ├── imagereviewcontainerspec.go │ │ │ │ ├── imagereviewspec.go │ │ │ │ └── imagereviewstatus.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── meta │ │ │ └── v1 │ │ │ │ ├── condition.go │ │ │ │ ├── deleteoptions.go │ │ │ │ ├── labelselector.go │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ ├── managedfieldsentry.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── ownerreference.go │ │ │ │ ├── preconditions.go │ │ │ │ ├── typemeta.go │ │ │ │ └── unstructured.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressservicebackend.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicebackendport.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ │ ├── v1alpha1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ ├── runtimeclassspec.go │ │ │ │ └── scheduling.go │ │ │ └── v1beta1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ ├── v1alpha1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ └── v1beta1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ ├── v1alpha3 │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ └── devicetaintselector.go │ │ │ ├── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ └── v1beta2 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ └── volumeerror.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── storagemigration │ │ │ └── v1alpha1 │ │ │ │ ├── groupversionresource.go │ │ │ │ ├── migrationcondition.go │ │ │ │ ├── storageversionmigration.go │ │ │ │ ├── storageversionmigrationspec.go │ │ │ │ └── storageversionmigrationstatus.go │ │ └── utils.go │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── cached │ │ │ ├── disk │ │ │ │ ├── cached_discovery.go │ │ │ │ └── round_tripper.go │ │ │ └── memory │ │ │ │ └── memcache.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ ├── fake │ │ │ └── discovery.go │ │ └── helper.go │ ├── dynamic │ │ ├── fake │ │ │ └── simple.go │ │ ├── interface.go │ │ ├── scheme.go │ │ └── simple.go │ ├── features │ │ ├── envvar.go │ │ ├── features.go │ │ └── known_features.go │ ├── gentype │ │ ├── fake.go │ │ └── type.go │ ├── informers │ │ ├── admissionregistration │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── storageversion.go │ │ ├── apps │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ ├── autoscaling │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── v2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── v2beta1 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ └── v2beta2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ ├── batch │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── interface.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ ├── certificates │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── interface.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── interface.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ ├── extensions │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ ├── factory.go │ │ ├── flowcontrol │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ ├── rbac │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── resource │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ └── interface.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── storageversionmigration.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ └── fake_validatingadmissionpolicybinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ └── fake_storageversion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ └── fake_selfsubjectreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ ├── fake_cronjob.go │ │ │ │ │ └── fake_job.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ └── generated_expansion.go │ │ │ ├── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_clustertrustbundle.go │ │ │ │ │ └── fake_podcertificaterequest.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ ├── fake_certificatesigningrequest_expansion.go │ │ │ │ └── fake_clustertrustbundle.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_lease.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_coordination_client.go │ │ │ │ ├── fake_lease.go │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_componentstatus.go │ │ │ │ ├── fake_configmap.go │ │ │ │ ├── fake_core_client.go │ │ │ │ ├── fake_endpoints.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ ├── fake_limitrange.go │ │ │ │ ├── fake_namespace.go │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ ├── fake_node.go │ │ │ │ ├── fake_node_expansion.go │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ ├── fake_pod.go │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ ├── fake_podtemplate.go │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ ├── fake_resourcequota.go │ │ │ │ ├── fake_secret.go │ │ │ │ ├── fake_service.go │ │ │ │ ├── fake_service_expansion.go │ │ │ │ └── fake_serviceaccount.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_discovery_client.go │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ ├── fake_extensions_client.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ └── fake_replicaset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ ├── fake_flowschema.go │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_ingressclass.go │ │ │ │ ├── fake_ipaddress.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_node_client.go │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_devicetaintrule.go │ │ │ │ │ └── fake_resource_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── resource_client.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_deviceclass.go │ │ │ │ ├── fake_resource_client.go │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_priorityclass.go │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_storagemigration_client.go │ │ │ └── fake_storageversionmigration.go │ │ │ ├── generated_expansion.go │ │ │ ├── storagemigration_client.go │ │ │ └── storageversionmigration.go │ ├── listers │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageversion.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── expansion_generated.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ └── replicaset_expansion.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic_helpers.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── storageversionmigration.go │ ├── metadata │ │ ├── interface.go │ │ └── metadata.go │ ├── openapi │ │ ├── OWNERS │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ ├── groupversion.go │ │ ├── openapitest │ │ │ ├── fakeclient.go │ │ │ ├── fileclient.go │ │ │ └── testdata │ │ │ │ ├── api__v1_openapi.json │ │ │ │ ├── apis__apps__v1_openapi.json │ │ │ │ ├── apis__batch__v1_openapi.json │ │ │ │ ├── apis__discovery.k8s.io__v1_openapi.json │ │ │ │ └── apis__networking.k8s.io__v1alpha1_openapi.json │ │ └── typeconverter.go │ ├── openapi3 │ │ └── root.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── OWNERS │ │ │ ├── azure │ │ │ └── azure_stub.go │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ ├── gcp │ │ │ └── gcp_stub.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ ├── plugins.go │ │ │ └── plugins_providers.go │ ├── rest │ │ ├── .mockery.yaml │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── restmapper │ │ ├── category_expansion.go │ │ ├── discovery.go │ │ └── shortcut.go │ ├── scale │ │ ├── client.go │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── scheme │ │ │ ├── appsint │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── appsv1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── appsv1beta2 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── autoscalingv1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── doc.go │ │ │ ├── extensionsint │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── extensionsv1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── util.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── template │ │ │ ├── exec.go │ │ │ └── funcs.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── object-names.go │ │ │ ├── reflector.go │ │ │ ├── reflector_data_consistency_detector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── synctrack │ │ │ │ ├── lazy.go │ │ │ │ └── synctrack.go │ │ │ ├── the_real_fifo.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merge.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── internal │ │ │ └── events │ │ │ │ └── interfaces.go │ │ ├── leaderelection │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── leasecandidate.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ ├── reference │ │ │ └── ref.go │ │ ├── remotecommand │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── errorstream.go │ │ │ ├── fallback.go │ │ │ ├── reader.go │ │ │ ├── remotecommand.go │ │ │ ├── resize.go │ │ │ ├── spdy.go │ │ │ ├── v1.go │ │ │ ├── v2.go │ │ │ ├── v3.go │ │ │ ├── v4.go │ │ │ ├── v5.go │ │ │ └── websocket.go │ │ └── watch │ │ │ ├── informerwatcher.go │ │ │ ├── retrywatcher.go │ │ │ └── until.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── spdy │ │ │ └── spdy.go │ │ ├── token_source.go │ │ ├── transport.go │ │ └── websocket │ │ │ └── roundtripper.go │ └── util │ │ ├── apply │ │ └── apply.go │ │ ├── cert │ │ ├── OWNERS │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ ├── pem.go │ │ └── server_inspection.go │ │ ├── certificate │ │ └── csr │ │ │ └── csr.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── consistencydetector │ │ └── data_consistency_detector.go │ │ ├── csaupgrade │ │ ├── OWNERS │ │ ├── options.go │ │ └── upgrade.go │ │ ├── exec │ │ └── exec.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── jsonpath │ │ ├── doc.go │ │ ├── jsonpath.go │ │ ├── node.go │ │ └── parser.go │ │ ├── keyutil │ │ ├── OWNERS │ │ └── key.go │ │ ├── retry │ │ ├── OWNERS │ │ └── util.go │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go ├── cluster-registry │ ├── LICENSE │ └── pkg │ │ └── apis │ │ └── clusterregistry │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.kubebuilder.go ├── code-generator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── cmd │ │ ├── applyconfiguration-gen │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ └── externaltypes.go │ │ │ ├── generators │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── internal.go │ │ │ │ ├── jsontagutil.go │ │ │ │ ├── openapi.go │ │ │ │ ├── refgraph.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── util.go │ │ │ └── main.go │ │ ├── client-gen │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ ├── gvpackages.go │ │ │ │ └── gvtype.go │ │ │ ├── generators │ │ │ │ ├── client_generator.go │ │ │ │ ├── fake │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ ├── generator_for_clientset.go │ │ │ │ ├── generator_for_expansion.go │ │ │ │ ├── generator_for_group.go │ │ │ │ ├── generator_for_type.go │ │ │ │ ├── scheme │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ └── util │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ ├── main.go │ │ │ └── types │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ ├── conversion-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── conversion.go │ │ │ └── main.go │ │ ├── deepcopy-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── deepcopy.go │ │ │ └── main.go │ │ ├── defaulter-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── defaulter.go │ │ │ └── main.go │ │ ├── go-to-protobuf │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ ├── main.go │ │ │ └── protobuf │ │ │ │ ├── cmd.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── namer.go │ │ │ │ ├── package.go │ │ │ │ ├── parser.go │ │ │ │ └── tags.go │ │ ├── informer-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── factory.go │ │ │ │ ├── factoryinterface.go │ │ │ │ ├── generic.go │ │ │ │ ├── groupinterface.go │ │ │ │ ├── informer.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── versioninterface.go │ │ │ └── main.go │ │ ├── lister-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── expansion.go │ │ │ │ └── lister.go │ │ │ └── main.go │ │ ├── register-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── register_external.go │ │ │ │ └── targets.go │ │ │ └── main.go │ │ └── validation-gen │ │ │ ├── lint.go │ │ │ ├── lint_rules.go │ │ │ ├── main.go │ │ │ ├── targets.go │ │ │ ├── util │ │ │ └── util.go │ │ │ ├── validation.go │ │ │ └── validators │ │ │ ├── common.go │ │ │ ├── each.go │ │ │ ├── enum.go │ │ │ ├── equality.go │ │ │ ├── immutable.go │ │ │ ├── item.go │ │ │ ├── limits.go │ │ │ ├── opaque.go │ │ │ ├── registry.go │ │ │ ├── required.go │ │ │ ├── subfield.go │ │ │ ├── testing.go │ │ │ ├── union.go │ │ │ ├── validators.go │ │ │ └── zeroorone.go │ ├── code-of-conduct.md │ ├── doc.go │ ├── generate-groups.sh │ ├── generate-internal-groups.sh │ ├── kube_codegen.sh │ ├── pkg │ │ ├── namer │ │ │ └── tag-override.go │ │ └── util │ │ │ ├── comments.go │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── component-base │ ├── LICENSE │ ├── featuregate │ │ ├── OWNERS │ │ └── feature_gate.go │ ├── metrics │ │ ├── OWNERS │ │ ├── buckets.go │ │ ├── collector.go │ │ ├── counter.go │ │ ├── desc.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ ├── http.go │ │ ├── labels.go │ │ ├── legacyregistry │ │ │ └── registry.go │ │ ├── metric.go │ │ ├── options.go │ │ ├── opts.go │ │ ├── processstarttime.go │ │ ├── processstarttime_others.go │ │ ├── processstarttime_windows.go │ │ ├── prometheus │ │ │ └── feature │ │ │ │ └── metrics.go │ │ ├── prometheusextension │ │ │ ├── timing_histogram.go │ │ │ ├── timing_histogram_vec.go │ │ │ ├── weighted_histogram.go │ │ │ └── weighted_histogram_vec.go │ │ ├── registry.go │ │ ├── summary.go │ │ ├── timing_histogram.go │ │ ├── value.go │ │ ├── version.go │ │ ├── version_parser.go │ │ └── wrappers.go │ ├── version │ │ ├── OWNERS │ │ ├── base.go │ │ ├── dynamic.go │ │ └── version.go │ └── zpages │ │ └── features │ │ ├── doc.go │ │ └── kube_features.go ├── component-helpers │ ├── LICENSE │ └── resource │ │ ├── OWNERS │ │ └── helpers.go ├── controller-manager │ ├── LICENSE │ └── pkg │ │ └── features │ │ ├── OWNERS │ │ └── kube_features.go ├── gengo │ └── v2 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codetags │ │ ├── extractor.go │ │ ├── parser.go │ │ ├── scanner.go │ │ └── types.go │ │ ├── comments.go │ │ ├── execute.go │ │ ├── generator │ │ ├── doc.go │ │ ├── error_tracker.go │ │ ├── execute.go │ │ ├── generator.go │ │ ├── go_generator.go │ │ ├── import_tracker.go │ │ ├── simple_target.go │ │ └── snippet_writer.go │ │ ├── namer │ │ ├── doc.go │ │ ├── import_tracker.go │ │ ├── namer.go │ │ ├── order.go │ │ └── plural_namer.go │ │ ├── parser │ │ ├── doc.go │ │ ├── parse.go │ │ ├── parse_122.go │ │ ├── parse_pre_122.go │ │ └── tags │ │ │ └── json.go │ │ └── types │ │ ├── doc.go │ │ └── types.go ├── klog │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── contextual_slog.go │ │ ├── exit.go │ │ ├── format.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ ├── keyvalues.go │ │ │ ├── keyvalues_no_slog.go │ │ │ └── keyvalues_slog.go │ │ ├── severity │ │ │ └── severity.go │ │ ├── sloghandler │ │ │ └── sloghandler_slog.go │ │ └── verbosity │ │ │ └── verbosity.go │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ ├── safeptr.go │ │ └── textlogger │ │ ├── options.go │ │ ├── textlogger.go │ │ └── textlogger_slog.go ├── kube-aggregator │ ├── LICENSE │ └── pkg │ │ └── apis │ │ └── apiregistration │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1 │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── zz_generated.conversion.go │ │ ├── zz_generated.deepcopy.go │ │ ├── zz_generated.defaults.go │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── zz_generated.deepcopy.go ├── kube-openapi │ ├── LICENSE │ ├── cmd │ │ └── openapi-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ └── openapi-gen.go │ └── pkg │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.go │ │ ├── generators │ │ ├── README.md │ │ ├── api_linter.go │ │ ├── config.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── markers.go │ │ ├── openapi.go │ │ ├── rules │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── idl_tag.go │ │ │ ├── list_type_streaming_tags.go │ │ │ ├── names_match.go │ │ │ └── omitempty_match_case.go │ │ └── union.go │ │ ├── handler3 │ │ └── handler.go │ │ ├── internal │ │ ├── flags.go │ │ ├── serialization.go │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arshal.go │ │ │ ├── arshal_any.go │ │ │ ├── arshal_default.go │ │ │ ├── arshal_funcs.go │ │ │ ├── arshal_inlined.go │ │ │ ├── arshal_methods.go │ │ │ ├── arshal_time.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── fold.go │ │ │ ├── intern.go │ │ │ ├── pools.go │ │ │ ├── state.go │ │ │ ├── token.go │ │ │ └── value.go │ │ ├── schemaconv │ │ ├── openapi.go │ │ ├── proto_models.go │ │ └── smd.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── fuzz.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ ├── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ ├── openapi.go │ │ │ ├── testing │ │ │ │ ├── openapi.go │ │ │ │ └── openapi_v3.go │ │ │ └── validation │ │ │ │ ├── errors.go │ │ │ │ ├── types.go │ │ │ │ └── validation.go │ │ ├── sets │ │ │ ├── empty.go │ │ │ └── string.go │ │ ├── trie.go │ │ └── util.go │ │ └── validation │ │ └── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go ├── kubectl │ ├── LICENSE │ └── pkg │ │ ├── apps │ │ └── kind_visitor.go │ │ ├── cmd │ │ ├── apiresources │ │ │ ├── apiresources.go │ │ │ ├── apiversions.go │ │ │ └── print_flags.go │ │ ├── apply │ │ │ ├── apply.go │ │ │ ├── apply_edit_last_applied.go │ │ │ ├── apply_set_last_applied.go │ │ │ ├── apply_view_last_applied.go │ │ │ ├── applyset.go │ │ │ ├── applyset_pruner.go │ │ │ ├── patcher.go │ │ │ └── prune.go │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── delete_flags.go │ │ ├── get │ │ │ ├── customcolumn.go │ │ │ ├── customcolumn_flags.go │ │ │ ├── get.go │ │ │ ├── get_flags.go │ │ │ ├── humanreadable_flags.go │ │ │ ├── skip_printer.go │ │ │ ├── sorter.go │ │ │ └── table_printer.go │ │ ├── testing │ │ │ ├── fake.go │ │ │ ├── interfaces.go │ │ │ ├── util.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── util │ │ │ ├── caching_verifier.go │ │ │ ├── editor │ │ │ │ ├── crlf │ │ │ │ │ └── crlf.go │ │ │ │ ├── editoptions.go │ │ │ │ ├── editor.go │ │ │ │ ├── launcher_others.go │ │ │ │ └── launcher_windows.go │ │ │ ├── env_file.go │ │ │ ├── factory.go │ │ │ ├── factory_client_access.go │ │ │ ├── helpers.go │ │ │ ├── kubectl_match_version.go │ │ │ ├── override_options.go │ │ │ ├── podcmd │ │ │ │ └── podcmd.go │ │ │ └── printing.go │ │ └── wait │ │ │ ├── condition.go │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── json.go │ │ │ └── wait.go │ │ ├── describe │ │ ├── describe.go │ │ └── interface.go │ │ ├── polymorphichelpers │ │ ├── attachablepodforobject.go │ │ ├── canbeexposed.go │ │ ├── helpers.go │ │ ├── history.go │ │ ├── historyviewer.go │ │ ├── interface.go │ │ ├── logsforobject.go │ │ ├── mapbasedselectorforobject.go │ │ ├── multiprotocolsforobject.go │ │ ├── objectpauser.go │ │ ├── objectrestarter.go │ │ ├── objectresumer.go │ │ ├── portsforobject.go │ │ ├── protocolsforobject.go │ │ ├── rollback.go │ │ ├── rollbacker.go │ │ ├── rollout_status.go │ │ ├── statusviewer.go │ │ └── updatepodspec.go │ │ ├── rawhttp │ │ └── raw.go │ │ ├── scheme │ │ ├── install.go │ │ └── scheme.go │ │ ├── util │ │ ├── apply.go │ │ ├── certificate │ │ │ └── certificate.go │ │ ├── completion │ │ │ └── completion.go │ │ ├── deployment │ │ │ └── deployment.go │ │ ├── event │ │ │ └── sorted_event_list.go │ │ ├── fieldpath │ │ │ └── fieldpath.go │ │ ├── i18n │ │ │ ├── i18n.go │ │ │ └── translations │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── extract.py │ │ │ │ ├── kubectl │ │ │ │ ├── OWNERS │ │ │ │ ├── de_DE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── default │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── en_US │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── fr_FR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── it_IT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── ja_JP │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── ko_KR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── template.pot │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── test │ │ │ │ ├── default │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── en_US │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── k8s.mo │ │ │ │ └── k8s.po │ │ ├── interrupt │ │ │ └── interrupt.go │ │ ├── openapi │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── openapi.go │ │ │ ├── openapi_getter.go │ │ │ └── testing │ │ │ │ └── openapi.go │ │ ├── pod_port.go │ │ ├── podutils │ │ │ └── podutils.go │ │ ├── prune │ │ │ └── prune.go │ │ ├── qos │ │ │ └── qos.go │ │ ├── rbac │ │ │ └── rbac.go │ │ ├── resource │ │ │ └── resource.go │ │ ├── service_port.go │ │ ├── slice │ │ │ └── slice.go │ │ ├── storage │ │ │ └── storage.go │ │ ├── templates │ │ │ ├── command_groups.go │ │ │ ├── help_flags_printer.go │ │ │ ├── markdown.go │ │ │ ├── normalizers.go │ │ │ ├── templater.go │ │ │ └── templates.go │ │ ├── term │ │ │ ├── resize.go │ │ │ ├── resizeevents.go │ │ │ ├── resizeevents_windows.go │ │ │ ├── term.go │ │ │ └── term_writer.go │ │ ├── umask.go │ │ ├── umask_windows.go │ │ └── util.go │ │ └── validation │ │ ├── schema.go │ │ └── validation.go ├── kubernetes │ ├── LICENSE │ └── pkg │ │ ├── api │ │ └── v1 │ │ │ └── service │ │ │ └── util.go │ │ ├── apis │ │ ├── admission │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── OWNERS │ │ │ ├── annotations.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── core │ │ │ ├── OWNERS │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── helper │ │ │ │ └── helpers.go │ │ │ ├── json.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper │ │ │ │ │ └── helpers.go │ │ │ │ ├── register.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.defaults.go │ │ │ │ └── zz_generated.validations.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ └── rbac │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── evaluation_helpers.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ ├── v1beta1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── features │ │ ├── OWNERS │ │ ├── client_adapter.go │ │ └── kube_features.go │ │ └── util │ │ └── parsers │ │ └── parsers.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ ├── clock.go │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_clock.go │ ├── exec │ ├── README.md │ ├── doc.go │ ├── exec.go │ ├── fixup_go118.go │ └── fixup_go119.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── golang-lru │ │ └── lru.go │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ ├── lru │ └── lru.go │ ├── net │ ├── ipfamily.go │ ├── ipnet.go │ ├── multi_listen.go │ ├── net.go │ ├── parse.go │ └── port.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt └── sigs.k8s.io ├── cli-utils ├── LICENSE ├── LICENSE_TEMPLATE ├── LICENSE_TEMPLATE_GO └── pkg │ ├── apis │ └── actuation │ │ ├── doc.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ ├── apply │ ├── applier.go │ ├── applier_builder.go │ ├── builder.go │ ├── cache │ │ ├── resource_cache.go │ │ └── resource_cache_map.go │ ├── destroyer.go │ ├── destroyer_builder.go │ ├── error │ │ └── error.go │ ├── event │ │ ├── actiongroupeventstatus_string.go │ │ ├── applyeventstatus_string.go │ │ ├── deleteeventstatus_string.go │ │ ├── event.go │ │ ├── pruneeventstatus_string.go │ │ ├── resourceaction_string.go │ │ ├── type_string.go │ │ └── waiteventstatus_string.go │ ├── filter │ │ ├── current-uids-filter.go │ │ ├── dependency-filter.go │ │ ├── fatal_error.go │ │ ├── filter.go │ │ ├── inventory-policy-apply-filter.go │ │ ├── inventory-policy-prune-filter.go │ │ ├── local-namespaces-filter.go │ │ ├── phase_string.go │ │ ├── prevent-remove-filter.go │ │ ├── prevent-update-filter.go │ │ └── relationship_string.go │ ├── info │ │ └── helper.go │ ├── mutator │ │ ├── apply_time_mutator.go │ │ └── mutator.go │ ├── prune │ │ ├── event-factory.go │ │ └── prune.go │ ├── solver │ │ └── solver.go │ ├── task │ │ ├── apply_task.go │ │ ├── inv_add_task.go │ │ ├── inv_set_task.go │ │ ├── printer_adapter.go │ │ ├── prune_task.go │ │ └── send_event_task.go │ └── taskrunner │ │ ├── condition.go │ │ ├── context.go │ │ ├── runner.go │ │ └── task.go │ ├── common │ ├── common.go │ ├── dryrunstrategy_string.go │ └── path.go │ ├── flowcontrol │ └── flowcontrol.go │ ├── inventory │ ├── configmap-client-factory.go │ ├── fake-builder.go │ ├── fake-inventory-client.go │ ├── idmatchstatus_string.go │ ├── inventory-client.go │ ├── inventory_error.go │ ├── inventorycm.go │ ├── manager.go │ ├── policy.go │ ├── policy_string.go │ ├── storage.go │ └── type-conv.go │ ├── jsonpath │ └── jsonpath.go │ ├── kstatus │ ├── polling │ │ ├── clusterreader │ │ │ ├── caching_reader.go │ │ │ ├── direct_reader.go │ │ │ └── dynamic_reader.go │ │ ├── engine │ │ │ ├── engine.go │ │ │ ├── reader.go │ │ │ └── status_reader.go │ │ ├── event │ │ │ ├── event.go │ │ │ └── type_string.go │ │ └── statusreaders │ │ │ ├── common.go │ │ │ ├── default.go │ │ │ ├── deployment.go │ │ │ ├── generic.go │ │ │ ├── pod_controller.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ ├── status │ │ ├── core.go │ │ ├── doc.go │ │ ├── generic.go │ │ ├── status.go │ │ └── util.go │ └── watcher │ │ ├── blind_status_watcher.go │ │ ├── default_status_watcher.go │ │ ├── doc.go │ │ ├── dynamic_informer_factory.go │ │ ├── event_funnel.go │ │ ├── object_filter.go │ │ ├── object_status_reporter.go │ │ ├── restscopestrategy_string.go │ │ ├── unschedulable.go │ │ └── watcher.go │ ├── multierror │ └── multierror.go │ ├── object │ ├── dependson │ │ ├── annotation.go │ │ ├── strings.go │ │ └── types.go │ ├── error.go │ ├── field.go │ ├── graph │ │ ├── depends.go │ │ ├── edge.go │ │ ├── error.go │ │ └── graph.go │ ├── infos.go │ ├── mutation │ │ ├── annotation.go │ │ └── types.go │ ├── object_status_set.go │ ├── objmetadata.go │ ├── objmetadata_set.go │ ├── strings.go │ ├── unstructured.go │ ├── unstructured_set.go │ └── validation │ │ ├── collector.go │ │ ├── error.go │ │ ├── policy.go │ │ ├── policy_string.go │ │ └── validate.go │ ├── ordering │ └── sort.go │ └── testutil │ ├── asserter.go │ ├── events.go │ ├── matcher.go │ ├── object.go │ ├── restmapper.go │ └── test-filesystem.go ├── controller-runtime ├── .gitignore ├── .golangci.yml ├── .gomodcheck.yaml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── TMP-LOGGING.md ├── VERSIONING.md ├── alias.go ├── code-of-conduct.md ├── doc.go ├── pkg │ ├── builder │ │ ├── controller.go │ │ ├── doc.go │ │ ├── options.go │ │ └── webhook.go │ ├── cache │ │ ├── cache.go │ │ ├── delegating_by_gvk_cache.go │ │ ├── doc.go │ │ ├── informer_cache.go │ │ ├── internal │ │ │ ├── cache_reader.go │ │ │ ├── informers.go │ │ │ └── selector.go │ │ └── multi_namespace_cache.go │ ├── certwatcher │ │ ├── certwatcher.go │ │ ├── doc.go │ │ └── metrics │ │ │ └── metrics.go │ ├── client │ │ ├── apiutil │ │ │ ├── apimachinery.go │ │ │ ├── errors.go │ │ │ └── restmapper.go │ │ ├── applyconfigurations.go │ │ ├── client.go │ │ ├── client_rest_resources.go │ │ ├── codec.go │ │ ├── config │ │ │ ├── config.go │ │ │ └── doc.go │ │ ├── doc.go │ │ ├── dryrun.go │ │ ├── fake │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ └── typeconverter.go │ │ ├── fieldowner.go │ │ ├── fieldvalidation.go │ │ ├── interceptor │ │ │ └── intercept.go │ │ ├── interfaces.go │ │ ├── metadata_client.go │ │ ├── namespaced_client.go │ │ ├── object.go │ │ ├── options.go │ │ ├── patch.go │ │ ├── typed_client.go │ │ ├── unstructured_client.go │ │ └── watch.go │ ├── cluster │ │ ├── cluster.go │ │ └── internal.go │ ├── config │ │ └── controller.go │ ├── controller │ │ ├── controller.go │ │ ├── controllerutil │ │ │ ├── controllerutil.go │ │ │ └── doc.go │ │ ├── doc.go │ │ ├── name.go │ │ └── priorityqueue │ │ │ ├── metrics.go │ │ │ └── priorityqueue.go │ ├── conversion │ │ └── conversion.go │ ├── envtest │ │ ├── binaries.go │ │ ├── crd.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── server.go │ │ └── webhook.go │ ├── event │ │ ├── doc.go │ │ └── event.go │ ├── handler │ │ ├── doc.go │ │ ├── enqueue.go │ │ ├── enqueue_mapped.go │ │ ├── enqueue_owner.go │ │ └── eventhandler.go │ ├── healthz │ │ ├── doc.go │ │ └── healthz.go │ ├── internal │ │ ├── controller │ │ │ ├── controller.go │ │ │ └── metrics │ │ │ │ └── metrics.go │ │ ├── field │ │ │ └── selector │ │ │ │ └── utils.go │ │ ├── flock │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── flock_other.go │ │ │ └── flock_unix.go │ │ ├── httpserver │ │ │ └── server.go │ │ ├── log │ │ │ └── log.go │ │ ├── metrics │ │ │ └── workqueue.go │ │ ├── objectutil │ │ │ └── objectutil.go │ │ ├── recorder │ │ │ └── recorder.go │ │ ├── source │ │ │ ├── event_handler.go │ │ │ └── kind.go │ │ ├── syncs │ │ │ └── syncs.go │ │ └── testing │ │ │ ├── addr │ │ │ └── manager.go │ │ │ ├── certs │ │ │ └── tinyca.go │ │ │ ├── controlplane │ │ │ ├── apiserver.go │ │ │ ├── auth.go │ │ │ ├── etcd.go │ │ │ ├── kubectl.go │ │ │ └── plane.go │ │ │ └── process │ │ │ ├── arguments.go │ │ │ ├── bin_path_finder.go │ │ │ ├── procattr_other.go │ │ │ ├── procattr_unix.go │ │ │ └── process.go │ ├── leaderelection │ │ ├── doc.go │ │ └── leader_election.go │ ├── log │ │ ├── deleg.go │ │ ├── log.go │ │ ├── null.go │ │ └── warning_handler.go │ ├── manager │ │ ├── doc.go │ │ ├── internal.go │ │ ├── manager.go │ │ ├── runnable_group.go │ │ ├── server.go │ │ └── signals │ │ │ ├── doc.go │ │ │ ├── signal.go │ │ │ ├── signal_posix.go │ │ │ └── signal_windows.go │ ├── metrics │ │ ├── client_go_adapter.go │ │ ├── doc.go │ │ ├── leaderelection.go │ │ ├── registry.go │ │ ├── server │ │ │ ├── doc.go │ │ │ └── server.go │ │ └── workqueue.go │ ├── predicate │ │ ├── doc.go │ │ └── predicate.go │ ├── reconcile │ │ ├── doc.go │ │ └── reconcile.go │ ├── recorder │ │ └── recorder.go │ ├── scheme │ │ └── scheme.go │ ├── source │ │ ├── doc.go │ │ └── source.go │ └── webhook │ │ ├── admission │ │ ├── decode.go │ │ ├── defaulter_custom.go │ │ ├── doc.go │ │ ├── http.go │ │ ├── metrics │ │ │ └── metrics.go │ │ ├── multi.go │ │ ├── response.go │ │ ├── validator_custom.go │ │ └── webhook.go │ │ ├── alias.go │ │ ├── conversion │ │ ├── conversion.go │ │ ├── decoder.go │ │ └── metrics │ │ │ └── metrics.go │ │ ├── doc.go │ │ ├── internal │ │ └── metrics │ │ │ └── metrics.go │ │ └── server.go └── tools │ └── setup-envtest │ ├── LICENSE │ ├── README.md │ ├── env │ ├── env.go │ ├── exit.go │ └── helpers.go │ ├── main.go │ ├── remote │ └── client.go │ ├── store │ ├── helpers.go │ └── store.go │ ├── versions │ ├── parse.go │ ├── platform.go │ └── version.go │ └── workflows │ └── workflows.go ├── controller-tools ├── LICENSE ├── cmd │ └── controller-gen │ │ └── main.go └── pkg │ ├── applyconfiguration │ ├── doc.go │ ├── gen.go │ └── zz_generated.markerhelp.go │ ├── crd │ ├── conv.go │ ├── desc_visitor.go │ ├── doc.go │ ├── flatten.go │ ├── gen.go │ ├── known_types.go │ ├── markers │ │ ├── crd.go │ │ ├── doc.go │ │ ├── package.go │ │ ├── priority.go │ │ ├── register.go │ │ ├── topology.go │ │ ├── validation.go │ │ └── zz_generated.markerhelp.go │ ├── parser.go │ ├── schema.go │ ├── schema_visitor.go │ ├── spec.go │ └── zz_generated.markerhelp.go │ ├── deepcopy │ ├── doc.go │ ├── gen.go │ ├── traverse.go │ └── zz_generated.markerhelp.go │ ├── genall │ ├── doc.go │ ├── genall.go │ ├── help │ │ ├── doc.go │ │ ├── pretty │ │ │ ├── doc.go │ │ │ ├── help.go │ │ │ ├── print.go │ │ │ └── table.go │ │ ├── sort.go │ │ └── types.go │ ├── input.go │ ├── options.go │ ├── output.go │ └── zz_generated.markerhelp.go │ ├── loader │ ├── doc.go │ ├── errors.go │ ├── loader.go │ ├── paths.go │ ├── refs.go │ └── visit.go │ ├── markers │ ├── collect.go │ ├── doc.go │ ├── help.go │ ├── parse.go │ ├── reg.go │ ├── regutil.go │ └── zip.go │ ├── rbac │ ├── parser.go │ └── zz_generated.markerhelp.go │ ├── schemapatcher │ ├── gen.go │ ├── internal │ │ └── yaml │ │ │ ├── convert.go │ │ │ ├── nested.go │ │ │ └── set.go │ └── zz_generated.markerhelp.go │ ├── version │ └── version.go │ └── webhook │ ├── parser.go │ └── zz_generated.markerhelp.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── internal │ └── golang │ │ └── encoding │ │ └── json │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── kubernetes_patch.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go └── json.go ├── kind ├── .gitignore ├── .go-version ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── cmd │ └── kind │ │ └── app │ │ └── main.go ├── code-of-conduct.md ├── main.go ├── netlify.toml └── pkg │ ├── apis │ └── config │ │ ├── defaults │ │ └── image.go │ │ └── v1alpha4 │ │ ├── default.go │ │ ├── doc.go │ │ ├── types.go │ │ ├── yaml.go │ │ └── zz_generated.deepcopy.go │ ├── build │ └── nodeimage │ │ ├── build.go │ │ ├── buildcontext.go │ │ ├── const.go │ │ ├── const_cni.go │ │ ├── const_storage.go │ │ ├── containerd.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── imageimporter.go │ │ ├── internal │ │ ├── container │ │ │ └── docker │ │ │ │ ├── archive.go │ │ │ │ ├── doc.go │ │ │ │ ├── exec.go │ │ │ │ ├── image.go │ │ │ │ ├── pull.go │ │ │ │ ├── run.go │ │ │ │ └── save.go │ │ └── kube │ │ │ ├── bits.go │ │ │ ├── builder.go │ │ │ ├── builder_docker.go │ │ │ ├── builder_remote.go │ │ │ ├── builder_tarball.go │ │ │ ├── doc.go │ │ │ ├── source.go │ │ │ └── tar.go │ │ └── options.go │ ├── cluster │ ├── constants │ │ └── constants.go │ ├── createoption.go │ ├── doc.go │ ├── internal │ │ ├── create │ │ │ ├── actions │ │ │ │ ├── action.go │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── installcni │ │ │ │ │ └── cni.go │ │ │ │ ├── installstorage │ │ │ │ │ └── storage.go │ │ │ │ ├── kubeadminit │ │ │ │ │ └── init.go │ │ │ │ ├── kubeadmjoin │ │ │ │ │ └── join.go │ │ │ │ ├── loadbalancer │ │ │ │ │ └── loadbalancer.go │ │ │ │ └── waitforready │ │ │ │ │ └── waitforready.go │ │ │ └── create.go │ │ ├── delete │ │ │ └── delete.go │ │ ├── kubeadm │ │ │ ├── config.go │ │ │ ├── const.go │ │ │ └── doc.go │ │ ├── kubeconfig │ │ │ ├── internal │ │ │ │ └── kubeconfig │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── lock.go │ │ │ │ │ ├── merge.go │ │ │ │ │ ├── paths.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── remove.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── write.go │ │ │ └── kubeconfig.go │ │ ├── loadbalancer │ │ │ ├── config.go │ │ │ ├── const.go │ │ │ └── doc.go │ │ ├── logs │ │ │ ├── doc.go │ │ │ └── logs.go │ │ └── providers │ │ │ ├── common │ │ │ ├── cgroups.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── getport.go │ │ │ ├── images.go │ │ │ ├── logs.go │ │ │ ├── namer.go │ │ │ └── proxy.go │ │ │ ├── docker │ │ │ ├── OWNERS │ │ │ ├── constants.go │ │ │ ├── images.go │ │ │ ├── network.go │ │ │ ├── node.go │ │ │ ├── provider.go │ │ │ ├── provision.go │ │ │ └── util.go │ │ │ ├── nerdctl │ │ │ ├── OWNERS │ │ │ ├── constants.go │ │ │ ├── images.go │ │ │ ├── network.go │ │ │ ├── node.go │ │ │ ├── provider.go │ │ │ ├── provision.go │ │ │ └── util.go │ │ │ ├── podman │ │ │ ├── OWNERS │ │ │ ├── constants.go │ │ │ ├── images.go │ │ │ ├── network.go │ │ │ ├── node.go │ │ │ ├── provider.go │ │ │ ├── provision.go │ │ │ └── util.go │ │ │ └── provider.go │ ├── nodes │ │ ├── doc.go │ │ └── types.go │ ├── nodeutils │ │ ├── doc.go │ │ ├── roles.go │ │ └── util.go │ └── provider.go │ ├── cmd │ ├── doc.go │ ├── iostreams.go │ ├── kind │ │ ├── build │ │ │ ├── build.go │ │ │ └── nodeimage │ │ │ │ └── nodeimage.go │ │ ├── completion │ │ │ ├── bash │ │ │ │ └── bash.go │ │ │ ├── completion.go │ │ │ ├── fish │ │ │ │ └── fish.go │ │ │ ├── powershell │ │ │ │ └── powershell.go │ │ │ └── zsh │ │ │ │ └── zsh.go │ │ ├── create │ │ │ ├── cluster │ │ │ │ └── createcluster.go │ │ │ └── create.go │ │ ├── delete │ │ │ ├── cluster │ │ │ │ └── deletecluster.go │ │ │ ├── clusters │ │ │ │ └── deleteclusters.go │ │ │ └── delete.go │ │ ├── export │ │ │ ├── export.go │ │ │ ├── kubeconfig │ │ │ │ └── kubeconfig.go │ │ │ └── logs │ │ │ │ └── logs.go │ │ ├── get │ │ │ ├── clusters │ │ │ │ └── clusters.go │ │ │ ├── get.go │ │ │ ├── kubeconfig │ │ │ │ └── kubeconfig.go │ │ │ └── nodes │ │ │ │ └── nodes.go │ │ ├── load │ │ │ ├── docker-image │ │ │ │ └── docker-image.go │ │ │ ├── image-archive │ │ │ │ └── image-archive.go │ │ │ └── load.go │ │ ├── root.go │ │ └── version │ │ │ └── version.go │ └── logger.go │ ├── errors │ ├── aggregate.go │ ├── aggregate_forked.go │ ├── concurrent.go │ ├── doc.go │ └── errors.go │ ├── exec │ ├── default.go │ ├── doc.go │ ├── helpers.go │ ├── local.go │ └── types.go │ ├── fs │ └── fs.go │ ├── internal │ ├── apis │ │ └── config │ │ │ ├── cluster_util.go │ │ │ ├── convert_v1alpha4.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ └── load.go │ │ │ ├── types.go │ │ │ ├── validate.go │ │ │ └── zz_generated.deepcopy.go │ ├── cli │ │ ├── logger.go │ │ ├── override.go │ │ ├── spinner.go │ │ └── status.go │ ├── env │ │ └── term.go │ ├── patch │ │ ├── doc.go │ │ ├── json6902patch.go │ │ ├── kubeyaml.go │ │ ├── matchinfo.go │ │ ├── mergepatch.go │ │ ├── resource.go │ │ └── toml.go │ ├── runtime │ │ └── runtime.go │ ├── sets │ │ ├── doc.go │ │ ├── empty.go │ │ └── string.go │ └── version │ │ ├── doc.go │ │ └── version.go │ └── log │ ├── doc.go │ ├── noop.go │ └── types.go ├── kustomize ├── api │ ├── LICENSE │ ├── filters │ │ ├── annotations │ │ │ ├── annotations.go │ │ │ └── doc.go │ │ ├── fieldspec │ │ │ ├── doc.go │ │ │ └── fieldspec.go │ │ ├── filtersutil │ │ │ └── setters.go │ │ ├── fsslice │ │ │ ├── doc.go │ │ │ └── fsslice.go │ │ ├── iampolicygenerator │ │ │ ├── doc.go │ │ │ └── iampolicygenerator.go │ │ ├── imagetag │ │ │ ├── doc.go │ │ │ ├── imagetag.go │ │ │ ├── legacy.go │ │ │ └── updater.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── nameref │ │ │ ├── doc.go │ │ │ ├── nameref.go │ │ │ └── seqfilter.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ └── namespace.go │ │ ├── patchjson6902 │ │ │ ├── doc.go │ │ │ └── patchjson6902.go │ │ ├── patchstrategicmerge │ │ │ ├── doc.go │ │ │ └── patchstrategicmerge.go │ │ ├── prefix │ │ │ ├── doc.go │ │ │ └── prefix.go │ │ ├── refvar │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ └── refvar.go │ │ ├── replacement │ │ │ ├── doc.go │ │ │ └── replacement.go │ │ ├── replicacount │ │ │ ├── doc.go │ │ │ └── replicacount.go │ │ ├── suffix │ │ │ ├── doc.go │ │ │ └── suffix.go │ │ └── valueadd │ │ │ └── valueadd.go │ ├── hasher │ │ └── hasher.go │ ├── ifc │ │ └── ifc.go │ ├── internal │ │ ├── accumulator │ │ │ ├── loadconfigfromcrds.go │ │ │ ├── namereferencetransformer.go │ │ │ ├── refvartransformer.go │ │ │ └── resaccumulator.go │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── IAMPolicyGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixTransformer.go │ │ │ ├── ReplacementTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── SortOrderTransformer.go │ │ │ ├── SuffixTransformer.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── generators │ │ │ ├── configmap.go │ │ │ ├── secret.go │ │ │ └── utils.go │ │ ├── git │ │ │ ├── cloner.go │ │ │ ├── gitrunner.go │ │ │ └── repospec.go │ │ ├── image │ │ │ └── image.go │ │ ├── konfig │ │ │ └── builtinpluginconsts │ │ │ │ ├── commonannotations.go │ │ │ │ ├── commonlabels.go │ │ │ │ ├── defaultconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── images.go │ │ │ │ ├── metadatalabels.go │ │ │ │ ├── nameprefix.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namesuffix.go │ │ │ │ ├── replicas.go │ │ │ │ ├── templatelabels.go │ │ │ │ └── varreference.go │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── loader │ │ │ ├── errors.go │ │ │ ├── fileloader.go │ │ │ ├── loader.go │ │ │ └── loadrestrictions.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ ├── execplugin.go │ │ │ │ └── shlex.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ ├── load_go_plugin.go │ │ │ │ ├── load_go_plugin_disabled.go │ │ │ │ └── loader.go │ │ │ └── utils │ │ │ │ └── utils.go │ │ ├── target │ │ │ ├── errmissingkustomization.go │ │ │ ├── kusttarget.go │ │ │ ├── kusttarget_configplugin.go │ │ │ └── multitransformer.go │ │ ├── utils │ │ │ ├── annotations.go │ │ │ ├── errtimeout.go │ │ │ ├── makeResIds.go │ │ │ ├── stringslice.go │ │ │ └── timedcall.go │ │ └── validate │ │ │ └── fieldvalidator.go │ ├── konfig │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── provenance │ │ └── provenance.go │ ├── provider │ │ └── depprovider.go │ ├── resmap │ │ ├── factory.go │ │ ├── resmap.go │ │ └── reswrangler.go │ ├── resource │ │ ├── doc.go │ │ ├── factory.go │ │ ├── idset.go │ │ ├── origin.go │ │ └── resource.go │ └── types │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchargs.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── sortoptions.go │ │ ├── typemeta.go │ │ └── var.go └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── copyutil │ └── copyutil.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ └── runtime │ │ ├── container │ │ └── container.go │ │ ├── exec │ │ ├── doc.go │ │ └── exec.go │ │ └── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── filters │ │ ├── filters.go │ │ ├── fmtr.go │ │ ├── grep.go │ │ ├── local.go │ │ ├── merge.go │ │ ├── merge3.go │ │ ├── modify.go │ │ └── stripcomments.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1_21_2 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── runfn │ └── runfn.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── merge3 │ ├── merge3.go │ └── visitor.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go ├── randfill ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY_CONTACTS ├── bytesource │ └── bytesource.go ├── code-of-conduct.md └── randfill.go ├── structured-merge-diff └── v6 │ ├── LICENSE │ ├── fieldpath │ ├── doc.go │ ├── element.go │ ├── fromvalue.go │ ├── managers.go │ ├── path.go │ ├── pathelementmap.go │ ├── serialize-pe.go │ ├── serialize.go │ └── set.go │ ├── merge │ ├── conflict.go │ └── update.go │ ├── schema │ ├── doc.go │ ├── elements.go │ ├── equals.go │ └── schemaschema.go │ ├── typed │ ├── compare.go │ ├── doc.go │ ├── helpers.go │ ├── merge.go │ ├── parser.go │ ├── reconcile_schema.go │ ├── remove.go │ ├── tofieldset.go │ ├── typed.go │ └── validate.go │ └── value │ ├── allocator.go │ ├── doc.go │ ├── fields.go │ ├── jsontagutil.go │ ├── list.go │ ├── listreflect.go │ ├── listunstructured.go │ ├── map.go │ ├── mapreflect.go │ ├── mapunstructured.go │ ├── reflectcache.go │ ├── scalar.go │ ├── structreflect.go │ ├── value.go │ ├── valuereflect.go │ └── valueunstructured.go └── yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── kyaml └── kyaml.go └── yaml.go /.aiexclude: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.github/ISSUE_TEMPLATE/question.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/LICENSE_TEMPLATE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.build -------------------------------------------------------------------------------- /Makefile.e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.e2e -------------------------------------------------------------------------------- /Makefile.e2e.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.e2e.ci -------------------------------------------------------------------------------- /Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.gen -------------------------------------------------------------------------------- /Makefile.oss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.oss -------------------------------------------------------------------------------- /Makefile.oss.prow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.oss.prow -------------------------------------------------------------------------------- /Makefile.reconcilermanager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.reconcilermanager -------------------------------------------------------------------------------- /Makefile.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/Makefile.release -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/admission-webhook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/admission-webhook/main.go -------------------------------------------------------------------------------- /cmd/gcenode-askpass-sidecar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/gcenode-askpass-sidecar/main.go -------------------------------------------------------------------------------- /cmd/gen-core-scoper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/gen-core-scoper/main.go -------------------------------------------------------------------------------- /cmd/helm-sync/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/helm-sync/main.go -------------------------------------------------------------------------------- /cmd/hydration-controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/hydration-controller/main.go -------------------------------------------------------------------------------- /cmd/junit-report/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/junit-report/main.go -------------------------------------------------------------------------------- /cmd/nomos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/README.md -------------------------------------------------------------------------------- /cmd/nomos/bugreport/bugreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/bugreport/bugreport.go -------------------------------------------------------------------------------- /cmd/nomos/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/flags/flags.go -------------------------------------------------------------------------------- /cmd/nomos/hydrate/hydrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/hydrate/hydrate.go -------------------------------------------------------------------------------- /cmd/nomos/initialize/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/initialize/init.go -------------------------------------------------------------------------------- /cmd/nomos/initialize/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/initialize/init_test.go -------------------------------------------------------------------------------- /cmd/nomos/initialize/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/initialize/main_test.go -------------------------------------------------------------------------------- /cmd/nomos/migrate/configmanagement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/migrate/configmanagement.go -------------------------------------------------------------------------------- /cmd/nomos/migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/migrate/migrate.go -------------------------------------------------------------------------------- /cmd/nomos/migrate/monorepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/migrate/monorepo.go -------------------------------------------------------------------------------- /cmd/nomos/nomos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/nomos.go -------------------------------------------------------------------------------- /cmd/nomos/parse/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/parse/constants.go -------------------------------------------------------------------------------- /cmd/nomos/parse/find_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/parse/find_files.go -------------------------------------------------------------------------------- /cmd/nomos/parse/find_files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/parse/find_files_test.go -------------------------------------------------------------------------------- /cmd/nomos/parse/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/parse/main_test.go -------------------------------------------------------------------------------- /cmd/nomos/status/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/status/client.go -------------------------------------------------------------------------------- /cmd/nomos/status/cluster_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/status/cluster_state.go -------------------------------------------------------------------------------- /cmd/nomos/status/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/status/main_test.go -------------------------------------------------------------------------------- /cmd/nomos/status/resource_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/status/resource_status.go -------------------------------------------------------------------------------- /cmd/nomos/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/status/status.go -------------------------------------------------------------------------------- /cmd/nomos/status/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/status/status_test.go -------------------------------------------------------------------------------- /cmd/nomos/util/configmanagement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/util/configmanagement.go -------------------------------------------------------------------------------- /cmd/nomos/util/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/util/constants.go -------------------------------------------------------------------------------- /cmd/nomos/util/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/util/errors.go -------------------------------------------------------------------------------- /cmd/nomos/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/util/util.go -------------------------------------------------------------------------------- /cmd/nomos/util/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/util/write.go -------------------------------------------------------------------------------- /cmd/nomos/util/write_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/util/write_object.go -------------------------------------------------------------------------------- /cmd/nomos/version/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/version/main_test.go -------------------------------------------------------------------------------- /cmd/nomos/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/version/version.go -------------------------------------------------------------------------------- /cmd/nomos/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/version/version_test.go -------------------------------------------------------------------------------- /cmd/nomos/vet/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/vet/main_test.go -------------------------------------------------------------------------------- /cmd/nomos/vet/vet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/vet/vet.go -------------------------------------------------------------------------------- /cmd/nomos/vet/vet_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/vet/vet_impl.go -------------------------------------------------------------------------------- /cmd/nomos/vet/vet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomos/vet/vet_test.go -------------------------------------------------------------------------------- /cmd/nomoserrors/examples/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomoserrors/examples/examples.go -------------------------------------------------------------------------------- /cmd/nomoserrors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/nomoserrors/main.go -------------------------------------------------------------------------------- /cmd/oci-sync/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/oci-sync/main.go -------------------------------------------------------------------------------- /cmd/reconciler-manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/reconciler-manager/main.go -------------------------------------------------------------------------------- /cmd/reconciler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/reconciler/main.go -------------------------------------------------------------------------------- /cmd/resource-group/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/cmd/resource-group/main.go -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /docs/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/code-of-conduct.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/custom-metric-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/custom-metric-filter.md -------------------------------------------------------------------------------- /docs/deletion-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/deletion-propagation.md -------------------------------------------------------------------------------- /docs/design-docs/00-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/design-docs/00-template.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/memory-usage-reduce-1160-1180.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/memory-usage-reduce-1160-1180.md -------------------------------------------------------------------------------- /docs/metric-resource-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/metric-resource-attributes.md -------------------------------------------------------------------------------- /docs/performance-boost-111-vs-112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/performance-boost-111-vs-112.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/watch-filtering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/docs/watch-filtering/README.md -------------------------------------------------------------------------------- /e2e/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/doc.go -------------------------------------------------------------------------------- /e2e/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/flags.go -------------------------------------------------------------------------------- /e2e/nomostest/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/clean.go -------------------------------------------------------------------------------- /e2e/nomostest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/client.go -------------------------------------------------------------------------------- /e2e/nomostest/clusters/gke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/clusters/gke.go -------------------------------------------------------------------------------- /e2e/nomostest/clusters/kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/clusters/kind.go -------------------------------------------------------------------------------- /e2e/nomostest/config-connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/config-connector.go -------------------------------------------------------------------------------- /e2e/nomostest/config_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/config_sync.go -------------------------------------------------------------------------------- /e2e/nomostest/config_sync_sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/config_sync_sources.go -------------------------------------------------------------------------------- /e2e/nomostest/crds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/crds.go -------------------------------------------------------------------------------- /e2e/nomostest/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/docker.go -------------------------------------------------------------------------------- /e2e/nomostest/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/docker/docker.go -------------------------------------------------------------------------------- /e2e/nomostest/git-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/git-server.go -------------------------------------------------------------------------------- /e2e/nomostest/gitproviders/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/gitproviders/github.go -------------------------------------------------------------------------------- /e2e/nomostest/gitproviders/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/gitproviders/gitlab.go -------------------------------------------------------------------------------- /e2e/nomostest/gitproviders/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/gitproviders/local.go -------------------------------------------------------------------------------- /e2e/nomostest/iam/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/iam/account.go -------------------------------------------------------------------------------- /e2e/nomostest/metrics/expectations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/metrics/expectations.go -------------------------------------------------------------------------------- /e2e/nomostest/metrics/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/metrics/validate.go -------------------------------------------------------------------------------- /e2e/nomostest/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/name.go -------------------------------------------------------------------------------- /e2e/nomostest/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/new.go -------------------------------------------------------------------------------- /e2e/nomostest/nt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/nt.go -------------------------------------------------------------------------------- /e2e/nomostest/ntopts/multi_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/ntopts/multi_repo.go -------------------------------------------------------------------------------- /e2e/nomostest/ntopts/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/ntopts/new.go -------------------------------------------------------------------------------- /e2e/nomostest/ntopts/test_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/ntopts/test_type.go -------------------------------------------------------------------------------- /e2e/nomostest/policy/reposync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/policy/reposync.go -------------------------------------------------------------------------------- /e2e/nomostest/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/prometheus.go -------------------------------------------------------------------------------- /e2e/nomostest/prometheus_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/prometheus_metrics.go -------------------------------------------------------------------------------- /e2e/nomostest/registry_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/registry_server.go -------------------------------------------------------------------------------- /e2e/nomostest/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/reset.go -------------------------------------------------------------------------------- /e2e/nomostest/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/retry/retry.go -------------------------------------------------------------------------------- /e2e/nomostest/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/ssh.go -------------------------------------------------------------------------------- /e2e/nomostest/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/sync.go -------------------------------------------------------------------------------- /e2e/nomostest/syncsource/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/syncsource/set.go -------------------------------------------------------------------------------- /e2e/nomostest/taskgroup/taskgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/taskgroup/taskgroup.go -------------------------------------------------------------------------------- /e2e/nomostest/testing/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testing/env.go -------------------------------------------------------------------------------- /e2e/nomostest/testing/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testing/feature.go -------------------------------------------------------------------------------- /e2e/nomostest/testing/ntb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testing/ntb.go -------------------------------------------------------------------------------- /e2e/nomostest/testing/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testing/wrapper.go -------------------------------------------------------------------------------- /e2e/nomostest/testshell/gcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testshell/gcloud.go -------------------------------------------------------------------------------- /e2e/nomostest/testshell/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testshell/kubectl.go -------------------------------------------------------------------------------- /e2e/nomostest/testshell/oci_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testshell/oci_client.go -------------------------------------------------------------------------------- /e2e/nomostest/testshell/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testshell/shell.go -------------------------------------------------------------------------------- /e2e/nomostest/testutils/finalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testutils/finalizer.go -------------------------------------------------------------------------------- /e2e/nomostest/testutils/log_levels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testutils/log_levels.go -------------------------------------------------------------------------------- /e2e/nomostest/testwatcher/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/testwatcher/watch.go -------------------------------------------------------------------------------- /e2e/nomostest/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/validate.go -------------------------------------------------------------------------------- /e2e/nomostest/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/wait.go -------------------------------------------------------------------------------- /e2e/nomostest/wait_for_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/wait_for_sync.go -------------------------------------------------------------------------------- /e2e/nomostest/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/nomostest/webhook.go -------------------------------------------------------------------------------- /e2e/testcases/acme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/acme_test.go -------------------------------------------------------------------------------- /e2e/testcases/admission_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/admission_test.go -------------------------------------------------------------------------------- /e2e/testcases/apiservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/apiservice_test.go -------------------------------------------------------------------------------- /e2e/testcases/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/basic_test.go -------------------------------------------------------------------------------- /e2e/testcases/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/cli_test.go -------------------------------------------------------------------------------- /e2e/testcases/composition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/composition_test.go -------------------------------------------------------------------------------- /e2e/testcases/declared_fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/declared_fields_test.go -------------------------------------------------------------------------------- /e2e/testcases/gatekeeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/gatekeeper_test.go -------------------------------------------------------------------------------- /e2e/testcases/gcenode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/gcenode_test.go -------------------------------------------------------------------------------- /e2e/testcases/git_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/git_sync_test.go -------------------------------------------------------------------------------- /e2e/testcases/github_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/github_test.go -------------------------------------------------------------------------------- /e2e/testcases/helm_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/helm_sync_test.go -------------------------------------------------------------------------------- /e2e/testcases/hydration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/hydration_test.go -------------------------------------------------------------------------------- /e2e/testcases/ignore_mutation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/ignore_mutation_test.go -------------------------------------------------------------------------------- /e2e/testcases/invalid_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/invalid_auth_test.go -------------------------------------------------------------------------------- /e2e/testcases/kcc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/kcc_test.go -------------------------------------------------------------------------------- /e2e/testcases/kptfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/kptfile_test.go -------------------------------------------------------------------------------- /e2e/testcases/local_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/local_config_test.go -------------------------------------------------------------------------------- /e2e/testcases/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/main_test.go -------------------------------------------------------------------------------- /e2e/testcases/multi_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/multi_sync_test.go -------------------------------------------------------------------------------- /e2e/testcases/multiversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/multiversion_test.go -------------------------------------------------------------------------------- /e2e/testcases/namespace_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/namespace_repo_test.go -------------------------------------------------------------------------------- /e2e/testcases/namespaces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/namespaces_test.go -------------------------------------------------------------------------------- /e2e/testcases/no_ssl_verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/no_ssl_verify_test.go -------------------------------------------------------------------------------- /e2e/testcases/oci_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/oci_sync_test.go -------------------------------------------------------------------------------- /e2e/testcases/otel_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/otel_collector_test.go -------------------------------------------------------------------------------- /e2e/testcases/policy_dir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/policy_dir_test.go -------------------------------------------------------------------------------- /e2e/testcases/preserve_fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/preserve_fields_test.go -------------------------------------------------------------------------------- /e2e/testcases/profiling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/profiling_test.go -------------------------------------------------------------------------------- /e2e/testcases/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/proxy_test.go -------------------------------------------------------------------------------- /e2e/testcases/remediator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/remediator_test.go -------------------------------------------------------------------------------- /e2e/testcases/root_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/root_sync_test.go -------------------------------------------------------------------------------- /e2e/testcases/ssh_known_hosts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/ssh_known_hosts_test.go -------------------------------------------------------------------------------- /e2e/testcases/stress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/stress_test.go -------------------------------------------------------------------------------- /e2e/testcases/sync_ordering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testcases/sync_ordering_test.go -------------------------------------------------------------------------------- /e2e/testdata/apiservice/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/apiservice/rbac.yaml -------------------------------------------------------------------------------- /e2e/testdata/clusterrole-create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/clusterrole-create.yaml -------------------------------------------------------------------------------- /e2e/testdata/clusterrole-modify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/clusterrole-modify.yaml -------------------------------------------------------------------------------- /e2e/testdata/configsync-kcc/kcc-empty/README.md: -------------------------------------------------------------------------------- 1 | # an empty directory 2 | -------------------------------------------------------------------------------- /e2e/testdata/dir-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/dir-namespace.yaml -------------------------------------------------------------------------------- /e2e/testdata/hydration/external-files/external-data.txt: -------------------------------------------------------------------------------- 1 | Foo -------------------------------------------------------------------------------- /e2e/testdata/junit-report-updated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/junit-report-updated.xml -------------------------------------------------------------------------------- /e2e/testdata/junit-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/junit-report.xml -------------------------------------------------------------------------------- /e2e/testdata/no-last-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/no-last-apply.yaml -------------------------------------------------------------------------------- /e2e/testdata/proxy/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/proxy/namespace.yaml -------------------------------------------------------------------------------- /e2e/testdata/robert-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/robert-rolebinding.yaml -------------------------------------------------------------------------------- /e2e/testdata/subdir-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testdata/subdir-namespace.yaml -------------------------------------------------------------------------------- /e2e/testinfra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testinfra/README.md -------------------------------------------------------------------------------- /e2e/testinfra/terraform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testinfra/terraform/Makefile -------------------------------------------------------------------------------- /e2e/testinfra/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testinfra/terraform/README.md -------------------------------------------------------------------------------- /e2e/testinfra/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testinfra/terraform/main.tf -------------------------------------------------------------------------------- /e2e/testinfra/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/e2e/testinfra/terraform/variables.tf -------------------------------------------------------------------------------- /examples/acme/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/acme/system/repo.yaml -------------------------------------------------------------------------------- /examples/errors/expected-errs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/errors/expected-errs.txt -------------------------------------------------------------------------------- /examples/errors/namespaces/dev/dev-namespace/illegal-child/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/errors/namespaces/dev/duplicate-dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/errors/namespaces/illegal.dir.name/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/errors/namespaces/prod/duplicate-dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/errors/namespaces/prod/reserved-namespace/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/errors/system/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/errors/system/rbac.yaml -------------------------------------------------------------------------------- /examples/foo-corp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/foo-corp/README.md -------------------------------------------------------------------------------- /examples/foo-corp/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/foo-corp/system/README.md -------------------------------------------------------------------------------- /examples/foo-corp/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/foo-corp/system/repo.yaml -------------------------------------------------------------------------------- /examples/kubevirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/kubevirt/README.md -------------------------------------------------------------------------------- /examples/kubevirt/kubevirt-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/kubevirt/kubevirt-cr.yaml -------------------------------------------------------------------------------- /examples/kubevirt/ns-bookstore1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/kubevirt/ns-bookstore1.yaml -------------------------------------------------------------------------------- /examples/kubevirt/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/kubevirt/vm.yaml -------------------------------------------------------------------------------- /examples/parse-errors/empty-system-dir/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/parse-errors/missing-system-dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/parse-errors/resources-without-namespace/namespaces/invalid-abstract/abstract-child/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/post-sync/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/.dockerignore -------------------------------------------------------------------------------- /examples/post-sync/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.output 3 | -------------------------------------------------------------------------------- /examples/post-sync/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/.golangci.yaml -------------------------------------------------------------------------------- /examples/post-sync/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/Dockerfile -------------------------------------------------------------------------------- /examples/post-sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/Makefile -------------------------------------------------------------------------------- /examples/post-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/README.md -------------------------------------------------------------------------------- /examples/post-sync/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/controller.go -------------------------------------------------------------------------------- /examples/post-sync/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/controller_test.go -------------------------------------------------------------------------------- /examples/post-sync/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/go.mod -------------------------------------------------------------------------------- /examples/post-sync/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/go.sum -------------------------------------------------------------------------------- /examples/post-sync/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/post-sync/main.go -------------------------------------------------------------------------------- /examples/repoless/backend-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/repoless/backend-ns.yaml -------------------------------------------------------------------------------- /examples/repoless/backend-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/examples/repoless/backend-role.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/installation/README.md -------------------------------------------------------------------------------- /installation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/installation/kustomization.yaml -------------------------------------------------------------------------------- /manifests/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/base/kustomization.yaml -------------------------------------------------------------------------------- /manifests/cluster-registry-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/cluster-registry-crd.yaml -------------------------------------------------------------------------------- /manifests/cluster-selector-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/cluster-selector-crd.yaml -------------------------------------------------------------------------------- /manifests/cs-namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/cs-namespaces.yaml -------------------------------------------------------------------------------- /manifests/hierarchyconfig-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/hierarchyconfig-crd.yaml -------------------------------------------------------------------------------- /manifests/namespace-selector-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/namespace-selector-crd.yaml -------------------------------------------------------------------------------- /manifests/operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/operator/kustomization.yaml -------------------------------------------------------------------------------- /manifests/oss/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/oss/kustomization.yaml -------------------------------------------------------------------------------- /manifests/otel-agent-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/otel-agent-cm.yaml -------------------------------------------------------------------------------- /manifests/patch/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/patch/kustomization.yaml -------------------------------------------------------------------------------- /manifests/reposync-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/reposync-crd.yaml -------------------------------------------------------------------------------- /manifests/resourcegroup-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/resourcegroup-crd.yaml -------------------------------------------------------------------------------- /manifests/rootsync-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/manifests/rootsync-crd.yaml -------------------------------------------------------------------------------- /pkg/api/configmanagement/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/configmanagement/register.go -------------------------------------------------------------------------------- /pkg/api/configmanagement/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/configmanagement/v1/doc.go -------------------------------------------------------------------------------- /pkg/api/configmanagement/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/configmanagement/v1/types.go -------------------------------------------------------------------------------- /pkg/api/configsync/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/configsync/register.go -------------------------------------------------------------------------------- /pkg/api/configsync/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/configsync/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/api/configsync/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/configsync/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/api/hub/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/hub/v1/doc.go -------------------------------------------------------------------------------- /pkg/api/hub/v1/membership_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/hub/v1/membership_types.go -------------------------------------------------------------------------------- /pkg/api/hub/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/hub/v1/register.go -------------------------------------------------------------------------------- /pkg/api/kpt.dev/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/api/kpt.dev/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/applier/applier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/applier.go -------------------------------------------------------------------------------- /pkg/applier/applier_err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/applier_err.go -------------------------------------------------------------------------------- /pkg/applier/applier_err_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/applier_err_test.go -------------------------------------------------------------------------------- /pkg/applier/applier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/applier_test.go -------------------------------------------------------------------------------- /pkg/applier/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/clientset.go -------------------------------------------------------------------------------- /pkg/applier/destroyer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/destroyer_test.go -------------------------------------------------------------------------------- /pkg/applier/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/doc.go -------------------------------------------------------------------------------- /pkg/applier/fake/applier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/fake/applier.go -------------------------------------------------------------------------------- /pkg/applier/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/main_test.go -------------------------------------------------------------------------------- /pkg/applier/stats/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/stats/main_test.go -------------------------------------------------------------------------------- /pkg/applier/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/stats/stats.go -------------------------------------------------------------------------------- /pkg/applier/stats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/stats/stats_test.go -------------------------------------------------------------------------------- /pkg/applier/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/status.go -------------------------------------------------------------------------------- /pkg/applier/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/status_test.go -------------------------------------------------------------------------------- /pkg/applier/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/utils.go -------------------------------------------------------------------------------- /pkg/applier/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applier/utils_test.go -------------------------------------------------------------------------------- /pkg/applyset/applyset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/applyset/applyset.go -------------------------------------------------------------------------------- /pkg/askpass/askpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/askpass/askpass.go -------------------------------------------------------------------------------- /pkg/askpass/askpass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/askpass/askpass_test.go -------------------------------------------------------------------------------- /pkg/auth/credential_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/auth/credential_provider.go -------------------------------------------------------------------------------- /pkg/auth/token_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/auth/token_provider.go -------------------------------------------------------------------------------- /pkg/bugreport/bugreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/bugreport.go -------------------------------------------------------------------------------- /pkg/bugreport/bugreport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/bugreport_test.go -------------------------------------------------------------------------------- /pkg/bugreport/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/constants.go -------------------------------------------------------------------------------- /pkg/bugreport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/doc.go -------------------------------------------------------------------------------- /pkg/bugreport/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/errors.go -------------------------------------------------------------------------------- /pkg/bugreport/logsource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/logsource.go -------------------------------------------------------------------------------- /pkg/bugreport/logsource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/logsource_test.go -------------------------------------------------------------------------------- /pkg/bugreport/logsources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/logsources.go -------------------------------------------------------------------------------- /pkg/bugreport/logsources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/logsources_test.go -------------------------------------------------------------------------------- /pkg/bugreport/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/main_test.go -------------------------------------------------------------------------------- /pkg/bugreport/readable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/bugreport/readable.go -------------------------------------------------------------------------------- /pkg/client/restconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/client/restconfig/config.go -------------------------------------------------------------------------------- /pkg/client/restconfig/restconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/client/restconfig/restconfig.go -------------------------------------------------------------------------------- /pkg/core/decorate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/decorate.go -------------------------------------------------------------------------------- /pkg/core/decorate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/decorate_test.go -------------------------------------------------------------------------------- /pkg/core/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/id.go -------------------------------------------------------------------------------- /pkg/core/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/id_test.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/build.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/container.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/crds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/crds.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/deployment.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/metadata.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/namespace.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/objects.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/pod.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/repo.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/reposync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/reposync.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/rootsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/rootsync.go -------------------------------------------------------------------------------- /pkg/core/k8sobjects/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/k8sobjects/secret.go -------------------------------------------------------------------------------- /pkg/core/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/main_test.go -------------------------------------------------------------------------------- /pkg/core/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/meta.go -------------------------------------------------------------------------------- /pkg/core/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/names.go -------------------------------------------------------------------------------- /pkg/core/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/core/scheme.go -------------------------------------------------------------------------------- /pkg/declared/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/doc.go -------------------------------------------------------------------------------- /pkg/declared/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/main_test.go -------------------------------------------------------------------------------- /pkg/declared/namespace_safeguard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/namespace_safeguard.go -------------------------------------------------------------------------------- /pkg/declared/resource_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/resource_manager.go -------------------------------------------------------------------------------- /pkg/declared/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/resources.go -------------------------------------------------------------------------------- /pkg/declared/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/resources_test.go -------------------------------------------------------------------------------- /pkg/declared/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/scope.go -------------------------------------------------------------------------------- /pkg/declared/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/declared/value.go -------------------------------------------------------------------------------- /pkg/diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/diff.go -------------------------------------------------------------------------------- /pkg/diff/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/diff_test.go -------------------------------------------------------------------------------- /pkg/diff/difftest/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/difftest/annotations.go -------------------------------------------------------------------------------- /pkg/diff/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/main_test.go -------------------------------------------------------------------------------- /pkg/diff/precedence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/precedence.go -------------------------------------------------------------------------------- /pkg/diff/precedence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/precedence_test.go -------------------------------------------------------------------------------- /pkg/diff/unknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/unknown.go -------------------------------------------------------------------------------- /pkg/diff/unknown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/diff/unknown_test.go -------------------------------------------------------------------------------- /pkg/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/helm/helm.go -------------------------------------------------------------------------------- /pkg/hydrate/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/clean.go -------------------------------------------------------------------------------- /pkg/hydrate/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/controller.go -------------------------------------------------------------------------------- /pkg/hydrate/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/controller_test.go -------------------------------------------------------------------------------- /pkg/hydrate/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/error.go -------------------------------------------------------------------------------- /pkg/hydrate/file_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/file_name.go -------------------------------------------------------------------------------- /pkg/hydrate/file_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/file_name_test.go -------------------------------------------------------------------------------- /pkg/hydrate/for_each_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/for_each_cluster.go -------------------------------------------------------------------------------- /pkg/hydrate/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/main_test.go -------------------------------------------------------------------------------- /pkg/hydrate/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/print.go -------------------------------------------------------------------------------- /pkg/hydrate/tool_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/tool_util.go -------------------------------------------------------------------------------- /pkg/hydrate/tool_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/hydrate/tool_util_test.go -------------------------------------------------------------------------------- /pkg/importer/analyzer/ast/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/analyzer/ast/doc.go -------------------------------------------------------------------------------- /pkg/importer/analyzer/ast/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/analyzer/ast/root.go -------------------------------------------------------------------------------- /pkg/importer/filesystem/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/filesystem/filter.go -------------------------------------------------------------------------------- /pkg/importer/filesystem/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/filesystem/parser.go -------------------------------------------------------------------------------- /pkg/importer/id/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/id/doc.go -------------------------------------------------------------------------------- /pkg/importer/id/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/id/field.go -------------------------------------------------------------------------------- /pkg/importer/id/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/id/path.go -------------------------------------------------------------------------------- /pkg/importer/id/tree_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/id/tree_node.go -------------------------------------------------------------------------------- /pkg/importer/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/metrics.go -------------------------------------------------------------------------------- /pkg/importer/reader/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/reader/main_test.go -------------------------------------------------------------------------------- /pkg/importer/reader/parse_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/reader/parse_file.go -------------------------------------------------------------------------------- /pkg/importer/reader/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/reader/reader.go -------------------------------------------------------------------------------- /pkg/importer/reader/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/importer/reader/reader_test.go -------------------------------------------------------------------------------- /pkg/kinds/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/cast.go -------------------------------------------------------------------------------- /pkg/kinds/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/convert.go -------------------------------------------------------------------------------- /pkg/kinds/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/convert_test.go -------------------------------------------------------------------------------- /pkg/kinds/kinds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/kinds.go -------------------------------------------------------------------------------- /pkg/kinds/lists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/lists.go -------------------------------------------------------------------------------- /pkg/kinds/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/lookup.go -------------------------------------------------------------------------------- /pkg/kinds/lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/lookup_test.go -------------------------------------------------------------------------------- /pkg/kinds/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/main_test.go -------------------------------------------------------------------------------- /pkg/kinds/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/new.go -------------------------------------------------------------------------------- /pkg/kinds/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/resources.go -------------------------------------------------------------------------------- /pkg/kinds/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kinds/strings.go -------------------------------------------------------------------------------- /pkg/kmetrics/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/exec.go -------------------------------------------------------------------------------- /pkg/kmetrics/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/exec_test.go -------------------------------------------------------------------------------- /pkg/kmetrics/fieldcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/fieldcount.go -------------------------------------------------------------------------------- /pkg/kmetrics/fieldcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/fieldcount_test.go -------------------------------------------------------------------------------- /pkg/kmetrics/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/main_test.go -------------------------------------------------------------------------------- /pkg/kmetrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/metrics.go -------------------------------------------------------------------------------- /pkg/kmetrics/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/record.go -------------------------------------------------------------------------------- /pkg/kmetrics/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/kmetrics/register.go -------------------------------------------------------------------------------- /pkg/lifecycle/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/lifecycle/constants.go -------------------------------------------------------------------------------- /pkg/metadata/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/annotations.go -------------------------------------------------------------------------------- /pkg/metadata/applyset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/applyset.go -------------------------------------------------------------------------------- /pkg/metadata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/doc.go -------------------------------------------------------------------------------- /pkg/metadata/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/finalizers.go -------------------------------------------------------------------------------- /pkg/metadata/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/labels.go -------------------------------------------------------------------------------- /pkg/metadata/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/main_test.go -------------------------------------------------------------------------------- /pkg/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/metadata.go -------------------------------------------------------------------------------- /pkg/metadata/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metadata/metadata_test.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/metrics/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metrics/record.go -------------------------------------------------------------------------------- /pkg/metrics/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metrics/register.go -------------------------------------------------------------------------------- /pkg/metrics/tagkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/metrics/tagkeys.go -------------------------------------------------------------------------------- /pkg/oci/authenticator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/oci/authenticator.go -------------------------------------------------------------------------------- /pkg/oci/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/oci/fetcher.go -------------------------------------------------------------------------------- /pkg/oci/fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/oci/fetcher_test.go -------------------------------------------------------------------------------- /pkg/parse/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/annotations.go -------------------------------------------------------------------------------- /pkg/parse/annotations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/annotations_test.go -------------------------------------------------------------------------------- /pkg/parse/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/cache.go -------------------------------------------------------------------------------- /pkg/parse/event_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/event_handler.go -------------------------------------------------------------------------------- /pkg/parse/events/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/events/builder.go -------------------------------------------------------------------------------- /pkg/parse/events/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/events/doc.go -------------------------------------------------------------------------------- /pkg/parse/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/events/events.go -------------------------------------------------------------------------------- /pkg/parse/events/funnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/events/funnel.go -------------------------------------------------------------------------------- /pkg/parse/events/funnel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/events/funnel_test.go -------------------------------------------------------------------------------- /pkg/parse/events/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/events/publisher.go -------------------------------------------------------------------------------- /pkg/parse/large_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/large_request.go -------------------------------------------------------------------------------- /pkg/parse/large_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/large_request_test.go -------------------------------------------------------------------------------- /pkg/parse/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/main_test.go -------------------------------------------------------------------------------- /pkg/parse/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/opts.go -------------------------------------------------------------------------------- /pkg/parse/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/parser.go -------------------------------------------------------------------------------- /pkg/parse/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/reconciler.go -------------------------------------------------------------------------------- /pkg/parse/repo_sync_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/repo_sync_client.go -------------------------------------------------------------------------------- /pkg/parse/repo_sync_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/repo_sync_parser.go -------------------------------------------------------------------------------- /pkg/parse/repository_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/repository_scope.go -------------------------------------------------------------------------------- /pkg/parse/repository_scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/repository_scope_test.go -------------------------------------------------------------------------------- /pkg/parse/root_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/root_reconciler_test.go -------------------------------------------------------------------------------- /pkg/parse/root_sync_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/root_sync_client.go -------------------------------------------------------------------------------- /pkg/parse/root_sync_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/root_sync_client_test.go -------------------------------------------------------------------------------- /pkg/parse/root_sync_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/root_sync_parser.go -------------------------------------------------------------------------------- /pkg/parse/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/run.go -------------------------------------------------------------------------------- /pkg/parse/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/run_test.go -------------------------------------------------------------------------------- /pkg/parse/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/source.go -------------------------------------------------------------------------------- /pkg/parse/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/source_test.go -------------------------------------------------------------------------------- /pkg/parse/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/state.go -------------------------------------------------------------------------------- /pkg/parse/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/status.go -------------------------------------------------------------------------------- /pkg/parse/sync_status_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/sync_status_cache.go -------------------------------------------------------------------------------- /pkg/parse/sync_status_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/sync_status_client.go -------------------------------------------------------------------------------- /pkg/parse/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/parse/updater.go -------------------------------------------------------------------------------- /pkg/policycontroller/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/policycontroller/constants.go -------------------------------------------------------------------------------- /pkg/profiler/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/profiler/profile.go -------------------------------------------------------------------------------- /pkg/reconciler/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reconciler/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reconciler/reconciler.go -------------------------------------------------------------------------------- /pkg/reconcilermanager/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reconcilermanager/constants.go -------------------------------------------------------------------------------- /pkg/remediator/conflict/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/conflict/handler.go -------------------------------------------------------------------------------- /pkg/remediator/fake/remediator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/fake/remediator.go -------------------------------------------------------------------------------- /pkg/remediator/queue/deleted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/queue/deleted.go -------------------------------------------------------------------------------- /pkg/remediator/queue/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/queue/main_test.go -------------------------------------------------------------------------------- /pkg/remediator/queue/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/queue/queue.go -------------------------------------------------------------------------------- /pkg/remediator/queue/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/queue/queue_test.go -------------------------------------------------------------------------------- /pkg/remediator/reconcile/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/reconcile/worker.go -------------------------------------------------------------------------------- /pkg/remediator/remediator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/remediator.go -------------------------------------------------------------------------------- /pkg/remediator/watch/listwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/watch/listwatch.go -------------------------------------------------------------------------------- /pkg/remediator/watch/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/watch/main_test.go -------------------------------------------------------------------------------- /pkg/remediator/watch/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/watch/manager.go -------------------------------------------------------------------------------- /pkg/remediator/watch/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/remediator/watch/watcher.go -------------------------------------------------------------------------------- /pkg/reposync/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reposync/conditions.go -------------------------------------------------------------------------------- /pkg/reposync/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reposync/conditions_test.go -------------------------------------------------------------------------------- /pkg/reposync/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reposync/constants.go -------------------------------------------------------------------------------- /pkg/reposync/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reposync/errors.go -------------------------------------------------------------------------------- /pkg/reposync/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reposync/errors_test.go -------------------------------------------------------------------------------- /pkg/reposync/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/reposync/main_test.go -------------------------------------------------------------------------------- /pkg/resourcegroup/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/resourcegroup/constants.go -------------------------------------------------------------------------------- /pkg/resourcegroup/resourcegroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/resourcegroup/resourcegroup.go -------------------------------------------------------------------------------- /pkg/resourcequota/comparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/resourcequota/comparison.go -------------------------------------------------------------------------------- /pkg/rootsync/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/rootsync/conditions.go -------------------------------------------------------------------------------- /pkg/rootsync/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/rootsync/conditions_test.go -------------------------------------------------------------------------------- /pkg/rootsync/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/rootsync/constants.go -------------------------------------------------------------------------------- /pkg/rootsync/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/rootsync/errors.go -------------------------------------------------------------------------------- /pkg/rootsync/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/rootsync/errors_test.go -------------------------------------------------------------------------------- /pkg/rootsync/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/rootsync/main_test.go -------------------------------------------------------------------------------- /pkg/status/api_server_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/api_server_error.go -------------------------------------------------------------------------------- /pkg/status/declared_field_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/declared_field_error.go -------------------------------------------------------------------------------- /pkg/status/empty_source_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/empty_source_error.go -------------------------------------------------------------------------------- /pkg/status/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/error.go -------------------------------------------------------------------------------- /pkg/status/error_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/error_builder.go -------------------------------------------------------------------------------- /pkg/status/error_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/error_impl.go -------------------------------------------------------------------------------- /pkg/status/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/error_test.go -------------------------------------------------------------------------------- /pkg/status/fake_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/fake_errors.go -------------------------------------------------------------------------------- /pkg/status/fight_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/fight_error.go -------------------------------------------------------------------------------- /pkg/status/hydration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/hydration.go -------------------------------------------------------------------------------- /pkg/status/internal_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/internal_error.go -------------------------------------------------------------------------------- /pkg/status/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/main_test.go -------------------------------------------------------------------------------- /pkg/status/message_error_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/message_error_impl.go -------------------------------------------------------------------------------- /pkg/status/multierror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/multierror.go -------------------------------------------------------------------------------- /pkg/status/multierror_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/multierror_test.go -------------------------------------------------------------------------------- /pkg/status/object_parse_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/object_parse_error.go -------------------------------------------------------------------------------- /pkg/status/os_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/os_error.go -------------------------------------------------------------------------------- /pkg/status/panic_on_misuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/panic_on_misuse.go -------------------------------------------------------------------------------- /pkg/status/path_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/path_error.go -------------------------------------------------------------------------------- /pkg/status/path_error_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/path_error_impl.go -------------------------------------------------------------------------------- /pkg/status/resource_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/resource_error.go -------------------------------------------------------------------------------- /pkg/status/resource_error_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/resource_error_impl.go -------------------------------------------------------------------------------- /pkg/status/source_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/source_error.go -------------------------------------------------------------------------------- /pkg/status/transient_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/transient_error.go -------------------------------------------------------------------------------- /pkg/status/undocumented_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/undocumented_error.go -------------------------------------------------------------------------------- /pkg/status/unknown_kind_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/unknown_kind_error.go -------------------------------------------------------------------------------- /pkg/status/wrapped_error_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/status/wrapped_error_impl.go -------------------------------------------------------------------------------- /pkg/syncer/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/client/client.go -------------------------------------------------------------------------------- /pkg/syncer/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/client/client_test.go -------------------------------------------------------------------------------- /pkg/syncer/client/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/client/err.go -------------------------------------------------------------------------------- /pkg/syncer/client/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/client/main_test.go -------------------------------------------------------------------------------- /pkg/syncer/differ/decorations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/differ/decorations.go -------------------------------------------------------------------------------- /pkg/syncer/differ/differ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/differ/differ.go -------------------------------------------------------------------------------- /pkg/syncer/differ/differ_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/differ/differ_test.go -------------------------------------------------------------------------------- /pkg/syncer/differ/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/differ/main_test.go -------------------------------------------------------------------------------- /pkg/syncer/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/syncer/reconcile/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/reconcile/apply.go -------------------------------------------------------------------------------- /pkg/syncer/reconcile/apply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/reconcile/apply_test.go -------------------------------------------------------------------------------- /pkg/syncer/reconcile/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/reconcile/doc.go -------------------------------------------------------------------------------- /pkg/syncer/reconcile/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/reconcile/main_test.go -------------------------------------------------------------------------------- /pkg/syncer/syncertest/fake/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/syncertest/fake/cache.go -------------------------------------------------------------------------------- /pkg/syncer/syncertest/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/syncer/syncertest/reconcile.go -------------------------------------------------------------------------------- /pkg/testing/openapitest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/testing/openapitest/doc.go -------------------------------------------------------------------------------- /pkg/testing/testwatch/testwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/testing/testwatch/testwatch.go -------------------------------------------------------------------------------- /pkg/util/autopilot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/autopilot.go -------------------------------------------------------------------------------- /pkg/util/clusterconfig/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/clusterconfig/crd.go -------------------------------------------------------------------------------- /pkg/util/clusterconfig/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/clusterconfig/crd_test.go -------------------------------------------------------------------------------- /pkg/util/clusterconfig/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/clusterconfig/main_test.go -------------------------------------------------------------------------------- /pkg/util/compare/comparer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/compare/comparer.go -------------------------------------------------------------------------------- /pkg/util/compare/comparer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/compare/comparer_test.go -------------------------------------------------------------------------------- /pkg/util/compare/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/compare/main_test.go -------------------------------------------------------------------------------- /pkg/util/discovery/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/discovery/main_test.go -------------------------------------------------------------------------------- /pkg/util/discovery/scoper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/discovery/scoper.go -------------------------------------------------------------------------------- /pkg/util/discovery/scoper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/discovery/scoper_test.go -------------------------------------------------------------------------------- /pkg/util/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/env.go -------------------------------------------------------------------------------- /pkg/util/large_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/large_request.go -------------------------------------------------------------------------------- /pkg/util/log/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/log/error.go -------------------------------------------------------------------------------- /pkg/util/log/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/log/logging.go -------------------------------------------------------------------------------- /pkg/util/log/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/log/main_test.go -------------------------------------------------------------------------------- /pkg/util/log/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/log/setup.go -------------------------------------------------------------------------------- /pkg/util/log/stringer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/log/stringer.go -------------------------------------------------------------------------------- /pkg/util/log/stringer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/log/stringer_test.go -------------------------------------------------------------------------------- /pkg/util/mutate/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/mutate/main_test.go -------------------------------------------------------------------------------- /pkg/util/mutate/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/mutate/mutate.go -------------------------------------------------------------------------------- /pkg/util/mutate/mutate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/mutate/mutate_test.go -------------------------------------------------------------------------------- /pkg/util/repo/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/repo/default.go -------------------------------------------------------------------------------- /pkg/util/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/retry.go -------------------------------------------------------------------------------- /pkg/util/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/retry_test.go -------------------------------------------------------------------------------- /pkg/util/watch/controllerbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/controllerbuilder.go -------------------------------------------------------------------------------- /pkg/util/watch/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/delete.go -------------------------------------------------------------------------------- /pkg/util/watch/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/manager.go -------------------------------------------------------------------------------- /pkg/util/watch/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/mapper.go -------------------------------------------------------------------------------- /pkg/util/watch/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/options.go -------------------------------------------------------------------------------- /pkg/util/watch/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/options_test.go -------------------------------------------------------------------------------- /pkg/util/watch/until.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/util/watch/until.go -------------------------------------------------------------------------------- /pkg/validate/fileobjects/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/fileobjects/raw.go -------------------------------------------------------------------------------- /pkg/validate/fileobjects/scoped.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/fileobjects/scoped.go -------------------------------------------------------------------------------- /pkg/validate/fileobjects/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/fileobjects/tree.go -------------------------------------------------------------------------------- /pkg/validate/final/final.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/final/final.go -------------------------------------------------------------------------------- /pkg/validate/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/main_test.go -------------------------------------------------------------------------------- /pkg/validate/raw/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/raw/raw.go -------------------------------------------------------------------------------- /pkg/validate/scoped/scoped.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/scoped/scoped.go -------------------------------------------------------------------------------- /pkg/validate/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/tree/tree.go -------------------------------------------------------------------------------- /pkg/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/validate.go -------------------------------------------------------------------------------- /pkg/validate/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/validate/validate_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/vet/api_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/vet/api_resources.go -------------------------------------------------------------------------------- /pkg/vet/api_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/vet/api_resources_test.go -------------------------------------------------------------------------------- /pkg/vet/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/vet/main_test.go -------------------------------------------------------------------------------- /pkg/webhook/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/auth.go -------------------------------------------------------------------------------- /pkg/webhook/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/auth_test.go -------------------------------------------------------------------------------- /pkg/webhook/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/cert.go -------------------------------------------------------------------------------- /pkg/webhook/configuration/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/configuration/merge.go -------------------------------------------------------------------------------- /pkg/webhook/configuration/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/configuration/rules.go -------------------------------------------------------------------------------- /pkg/webhook/configuration/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/configuration/update.go -------------------------------------------------------------------------------- /pkg/webhook/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/doc.go -------------------------------------------------------------------------------- /pkg/webhook/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/fields.go -------------------------------------------------------------------------------- /pkg/webhook/fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/fields_test.go -------------------------------------------------------------------------------- /pkg/webhook/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/main_test.go -------------------------------------------------------------------------------- /pkg/webhook/resource_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/resource_group.go -------------------------------------------------------------------------------- /pkg/webhook/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/validate.go -------------------------------------------------------------------------------- /pkg/webhook/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/pkg/webhook/validate_test.go -------------------------------------------------------------------------------- /scripts/build-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/build-status.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/docker-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/docker-registry.sh -------------------------------------------------------------------------------- /scripts/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/e2e.sh -------------------------------------------------------------------------------- /scripts/fail-if-dirty-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/fail-if-dirty-repo.sh -------------------------------------------------------------------------------- /scripts/fmt-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/fmt-bash.sh -------------------------------------------------------------------------------- /scripts/generate-clientset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/generate-clientset.sh -------------------------------------------------------------------------------- /scripts/generate-test-loggers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/generate-test-loggers.sh -------------------------------------------------------------------------------- /scripts/get-branch-or-sha.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/get-branch-or-sha.sh -------------------------------------------------------------------------------- /scripts/install-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/install-helm.sh -------------------------------------------------------------------------------- /scripts/install-kustomize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/install-kustomize.sh -------------------------------------------------------------------------------- /scripts/lib/manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/lib/manifests.sh -------------------------------------------------------------------------------- /scripts/license-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/license-headers.sh -------------------------------------------------------------------------------- /scripts/lint-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/lint-bash.sh -------------------------------------------------------------------------------- /scripts/lint-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/lint-go.sh -------------------------------------------------------------------------------- /scripts/lint-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/lint-yaml.sh -------------------------------------------------------------------------------- /scripts/package-test-helm-chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/package-test-helm-chart.sh -------------------------------------------------------------------------------- /scripts/prepare-licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/prepare-licenses.sh -------------------------------------------------------------------------------- /scripts/pull-postsubmit-retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/pull-postsubmit-retry.sh -------------------------------------------------------------------------------- /scripts/set-up-kcc-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/set-up-kcc-configs.sh -------------------------------------------------------------------------------- /scripts/tag-promotion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/tag-promotion.sh -------------------------------------------------------------------------------- /scripts/tag-release-candidate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/tag-release-candidate.sh -------------------------------------------------------------------------------- /scripts/test-kustomization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/test-kustomization.sh -------------------------------------------------------------------------------- /scripts/test-unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/test-unit.sh -------------------------------------------------------------------------------- /scripts/vulnerabilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/scripts/vulnerabilities.sh -------------------------------------------------------------------------------- /test/kustomization/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/test/kustomization/expected.yaml -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/tools/tools.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.121.6" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/cloud.google.com/go/debug.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/cloud.google.com/go/doc.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/cloud.google.com/go/go.work -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/camelcase/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.x 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ['all', 2 | '-U1000', # Don't complain about unused functions. 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/google/addlicense/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-licenses/v2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/licenseclassifier/v2/assets/Supplement/MIT/preface-a.txt: -------------------------------------------------------------------------------- 1 | MIT License: 2 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.15.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/jstemmer/go-junit-report/v2/.gitignore: -------------------------------------------------------------------------------- 1 | go-junit-report 2 | build/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/moby/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/github.com/moby/term/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/github.com/moby/term/doc.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/github.com/moby/term/term.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/open-policy-agent/cert-controller/NOTICE: -------------------------------------------------------------------------------- 1 | cert-controller 2 | Copyright 2018-2020 The Gatekeeper Authors 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | .idea 3 | **/**.iml 4 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubectl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/kubectl/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/apis/core/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - sig/apps 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/exec/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/exec/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/exec/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/cli-utils/LICENSE_TEMPLATE_GO: -------------------------------------------------------------------------------- 1 | // Copyright YEAR The Kubernetes Authors. 2 | // SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/kind/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/.go-version: -------------------------------------------------------------------------------- 1 | 1.24.6 2 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/kind/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/kind/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/kind/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/kind/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/kind/main.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/pkg/cluster/internal/providers/docker/OWNERS: -------------------------------------------------------------------------------- 1 | labels: 2 | - area/provider/docker 3 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/kind/pkg/cluster/internal/providers/nerdctl/OWNERS: -------------------------------------------------------------------------------- 1 | labels: 2 | - area/provider/nerdctl 3 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/randfill/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleContainerTools/config-sync/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------