├── .codecov.yaml ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE │ ├── breaking-change.md │ ├── bug-fix.md │ └── normal-change.md ├── dependabot.yml ├── issue-template.md └── workflows │ ├── knative-dependabot.yaml │ ├── knative-downstream.yaml │ ├── knative-go-build.yaml │ ├── knative-go-test.yaml │ ├── knative-security.yaml │ ├── knative-stale.yaml │ ├── knative-style.yaml │ └── knative-verify.yaml ├── .gitignore ├── .golangci.yaml ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE-LEADS.md ├── SECURITY.md ├── apiextensions └── storageversion │ ├── cmd │ └── migrate │ │ └── main.go │ ├── migrator.go │ └── migrator_test.go ├── apis ├── OWNERS ├── condition_set.go ├── condition_set_impl_test.go ├── condition_set_test.go ├── condition_types.go ├── condition_types_test.go ├── contexts.go ├── contexts_test.go ├── convert.go ├── convert_test.go ├── depcheck_test.go ├── deprecated.go ├── deprecated_test.go ├── doc.go ├── duck │ ├── ABOUT.md │ ├── OWNERS │ ├── README.md │ ├── cached.go │ ├── cached_test.go │ ├── const.go │ ├── doc.go │ ├── ducktypes │ │ └── ducktypes.go │ ├── enqueue.go │ ├── enqueue_test.go │ ├── images │ │ └── Knative-Duck0.png │ ├── interface.go │ ├── patch.go │ ├── patch_test.go │ ├── register.go │ ├── scale_test.go │ ├── typed.go │ ├── typed_test.go │ ├── unstructured.go │ ├── unstructured_test.go │ ├── v1 │ │ ├── addressable_types.go │ │ ├── addressable_types_test.go │ │ ├── auth_types.go │ │ ├── binding_types.go │ │ ├── cronjob_defaults.go │ │ ├── cronjob_defaults_test.go │ │ ├── cronjob_types.go │ │ ├── cronjob_validation.go │ │ ├── cronjob_validation_test.go │ │ ├── destination.go │ │ ├── destination_test.go │ │ ├── doc.go │ │ ├── implements_test.go │ │ ├── knative_reference.go │ │ ├── knative_reference_test.go │ │ ├── kresource_type.go │ │ ├── kresource_type_test.go │ │ ├── podspec_defaults.go │ │ ├── podspec_defaults_test.go │ │ ├── podspec_types.go │ │ ├── podspec_validation.go │ │ ├── podspec_validation_test.go │ │ ├── register.go │ │ ├── register_test.go │ │ ├── source_types.go │ │ ├── source_types_test.go │ │ ├── status_types.go │ │ ├── status_types_test.go │ │ ├── test │ │ │ ├── fuzzer.go │ │ │ └── roundtrip_test.go │ │ └── zz_generated.deepcopy.go │ ├── v1alpha1 │ │ ├── addressable_types.go │ │ ├── addressable_types_test.go │ │ ├── binding_types.go │ │ ├── doc.go │ │ ├── implements_test.go │ │ ├── init_test.go │ │ ├── legacy_targetable_types.go │ │ ├── register.go │ │ ├── register_test.go │ │ ├── retired_targetable_types.go │ │ ├── roundtrip_test.go │ │ └── zz_generated.deepcopy.go │ ├── v1beta1 │ │ ├── addressable_types.go │ │ ├── addressable_types_test.go │ │ ├── binding_types.go │ │ ├── destination.go │ │ ├── destination_test.go │ │ ├── doc.go │ │ ├── implements_test.go │ │ ├── register.go │ │ ├── register_test.go │ │ ├── source_types.go │ │ ├── status_types.go │ │ ├── status_types_test.go │ │ ├── test │ │ │ ├── fuzzer.go │ │ │ └── roundtrip_test.go │ │ └── zz_generated.deepcopy.go │ ├── verify.go │ └── verify_test.go ├── field_error.go ├── field_error_test.go ├── interfaces.go ├── kind2resource.go ├── kind2resource_test.go ├── metadata_validation.go ├── metadata_validation_test.go ├── test │ ├── example │ │ ├── register.go │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fiz_types.go │ │ │ ├── foo_types.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ └── pub │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── bar_types.go │ │ ├── doc.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go ├── testing │ ├── conditions.go │ ├── fuzzer │ │ └── fuzzer.go │ └── roundtrip │ │ └── roundtrip.go ├── url.go ├── url_test.go ├── volatile_time.go ├── volatile_time_test.go └── zz_generated.deepcopy.go ├── changeset ├── commit.go ├── commit_test.go └── doc.go ├── client └── injection │ ├── apiextensions │ ├── client │ │ ├── client.go │ │ └── fake │ │ │ └── fake.go │ ├── informers │ │ ├── apiextensions │ │ │ ├── v1 │ │ │ │ └── customresourcedefinition │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── v1beta1 │ │ │ │ └── customresourcedefinition │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── customresourcedefinition.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── factory │ │ │ ├── factory.go │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── filtered │ │ │ ├── fake │ │ │ └── fake_filtered_factory.go │ │ │ └── filtered_factory.go │ └── reconciler │ │ └── apiextensions │ │ ├── v1 │ │ └── customresourcedefinition │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ │ └── v1beta1 │ │ └── customresourcedefinition │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ ├── client │ ├── client.go │ └── fake │ │ └── fake.go │ ├── ducks │ └── duck │ │ ├── v1 │ │ ├── addressable │ │ │ ├── addressable.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── authstatus │ │ │ ├── authstatus.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── binding │ │ │ ├── binding.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── conditions │ │ │ ├── conditions.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── kresource │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── kresource.go │ │ ├── podspecable │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── podspecable.go │ │ └── source │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── source.go │ │ ├── v1alpha1 │ │ ├── addressable │ │ │ ├── addressable.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── binding │ │ │ ├── binding.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── legacytargetable │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── legacytargetable.go │ │ └── targetable │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── targetable.go │ │ └── v1beta1 │ │ ├── addressable │ │ ├── addressable.go │ │ └── fake │ │ │ └── fake.go │ │ ├── binding │ │ ├── binding.go │ │ └── fake │ │ │ └── fake.go │ │ ├── conditions │ │ ├── conditions.go │ │ └── fake │ │ │ └── fake.go │ │ └── source │ │ ├── fake │ │ └── fake.go │ │ └── source.go │ ├── informers │ └── factory │ │ ├── factory.go │ │ ├── fake │ │ └── fake.go │ │ └── filtered │ │ ├── fake │ │ └── fake_filtered_factory.go │ │ └── filtered_factory.go │ └── kube │ ├── client │ ├── client.go │ └── fake │ │ └── fake.go │ ├── informers │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── mutatingwebhookconfiguration │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── mutatingwebhookconfiguration.go │ │ │ │ └── mutatingwebhookconfiguration.go │ │ │ ├── validatingadmissionpolicy │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicy.go │ │ │ ├── validatingadmissionpolicybinding │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── validatingwebhookconfiguration │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── v1alpha1 │ │ │ ├── mutatingadmissionpolicy │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── mutatingadmissionpolicy.go │ │ │ │ └── mutatingadmissionpolicy.go │ │ │ ├── mutatingadmissionpolicybinding │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── mutatingadmissionpolicybinding.go │ │ │ │ └── mutatingadmissionpolicybinding.go │ │ │ ├── validatingadmissionpolicy │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicy.go │ │ │ └── validatingadmissionpolicybinding │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ └── v1beta1 │ │ │ ├── mutatingwebhookconfiguration │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── mutatingwebhookconfiguration.go │ │ │ └── mutatingwebhookconfiguration.go │ │ │ ├── validatingadmissionpolicy │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── validatingadmissionpolicy.go │ │ │ └── validatingadmissionpolicy.go │ │ │ ├── validatingadmissionpolicybinding │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── validatingwebhookconfiguration │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── validatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ └── storageversion │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── storageversion.go │ │ │ └── storageversion.go │ ├── apps │ │ ├── v1 │ │ │ ├── controllerrevision │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── daemonset │ │ │ │ ├── daemonset.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── daemonset.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── deployment │ │ │ │ ├── deployment.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── deployment.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── replicaset │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── replicaset.go │ │ │ │ └── replicaset.go │ │ │ └── statefulset │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── statefulset.go │ │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── controllerrevision │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── deployment │ │ │ │ ├── deployment.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── deployment.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── statefulset │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── statefulset.go │ │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── controllerrevision │ │ │ ├── controllerrevision.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── controllerrevision.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── daemonset │ │ │ ├── daemonset.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── daemonset.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── deployment │ │ │ ├── deployment.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── deployment.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── replicaset │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── replicaset.go │ │ │ └── replicaset.go │ │ │ └── statefulset │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── statefulset.go │ │ │ └── statefulset.go │ ├── autoscaling │ │ ├── v1 │ │ │ └── horizontalpodautoscaler │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── v2 │ │ │ └── horizontalpodautoscaler │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── v2beta1 │ │ │ └── horizontalpodautoscaler │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta2 │ │ │ └── horizontalpodautoscaler │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── horizontalpodautoscaler.go │ │ │ └── horizontalpodautoscaler.go │ ├── batch │ │ ├── v1 │ │ │ ├── cronjob │ │ │ │ ├── cronjob.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── job │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── job.go │ │ │ │ └── job.go │ │ └── v1beta1 │ │ │ └── cronjob │ │ │ ├── cronjob.go │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── filtered │ │ │ ├── cronjob.go │ │ │ └── fake │ │ │ └── fake.go │ ├── certificates │ │ ├── v1 │ │ │ └── certificatesigningrequest │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── v1alpha1 │ │ │ └── clustertrustbundle │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── v1beta1 │ │ │ ├── certificatesigningrequest │ │ │ ├── certificatesigningrequest.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ └── clustertrustbundle │ │ │ ├── clustertrustbundle.go │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── filtered │ │ │ ├── clustertrustbundle.go │ │ │ └── fake │ │ │ └── fake.go │ ├── coordination │ │ ├── v1 │ │ │ └── lease │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── lease.go │ │ │ │ └── lease.go │ │ ├── v1alpha2 │ │ │ └── leasecandidate │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── leasecandidate.go │ │ │ │ └── leasecandidate.go │ │ └── v1beta1 │ │ │ ├── lease │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── lease.go │ │ │ └── lease.go │ │ │ └── leasecandidate │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── leasecandidate.go │ │ │ └── leasecandidate.go │ ├── core │ │ └── v1 │ │ │ ├── componentstatus │ │ │ ├── componentstatus.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── componentstatus.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── configmap │ │ │ ├── configmap.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── configmap.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── endpoints │ │ │ ├── endpoints.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── endpoints.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── event │ │ │ ├── event.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── event.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── limitrange │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── limitrange.go │ │ │ └── limitrange.go │ │ │ ├── namespace │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── namespace.go │ │ │ └── namespace.go │ │ │ ├── node │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── node.go │ │ │ └── node.go │ │ │ ├── persistentvolume │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── persistentvolume.go │ │ │ └── persistentvolume.go │ │ │ ├── persistentvolumeclaim │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── persistentvolumeclaim.go │ │ │ └── persistentvolumeclaim.go │ │ │ ├── pod │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── pod.go │ │ │ └── pod.go │ │ │ ├── podtemplate │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── podtemplate.go │ │ │ └── podtemplate.go │ │ │ ├── replicationcontroller │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── replicationcontroller.go │ │ │ └── replicationcontroller.go │ │ │ ├── resourcequota │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── resourcequota.go │ │ │ └── resourcequota.go │ │ │ ├── secret │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── secret.go │ │ │ └── secret.go │ │ │ ├── service │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── service.go │ │ │ └── service.go │ │ │ └── serviceaccount │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── serviceaccount.go │ │ │ └── serviceaccount.go │ ├── discovery │ │ ├── v1 │ │ │ └── endpointslice │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── endpointslice.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── v1beta1 │ │ │ └── endpointslice │ │ │ ├── endpointslice.go │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── filtered │ │ │ ├── endpointslice.go │ │ │ └── fake │ │ │ └── fake.go │ ├── events │ │ ├── v1 │ │ │ └── event │ │ │ │ ├── event.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── event.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── v1beta1 │ │ │ └── event │ │ │ ├── event.go │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── filtered │ │ │ ├── event.go │ │ │ └── fake │ │ │ └── fake.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── daemonset │ │ │ ├── daemonset.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── daemonset.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── deployment │ │ │ ├── deployment.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── deployment.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── ingress │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── ingress.go │ │ │ └── ingress.go │ │ │ ├── networkpolicy │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── networkpolicy.go │ │ │ └── networkpolicy.go │ │ │ └── replicaset │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── replicaset.go │ │ │ └── replicaset.go │ ├── factory │ │ ├── factory.go │ │ ├── fake │ │ │ └── fake.go │ │ └── filtered │ │ │ ├── fake │ │ │ └── fake_filtered_factory.go │ │ │ └── filtered_factory.go │ ├── flowcontrol │ │ ├── v1 │ │ │ ├── flowschema │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── flowschema.go │ │ │ │ └── flowschema.go │ │ │ └── prioritylevelconfiguration │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── v1beta1 │ │ │ ├── flowschema │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── flowschema.go │ │ │ │ └── flowschema.go │ │ │ └── prioritylevelconfiguration │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── v1beta2 │ │ │ ├── flowschema │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── flowschema.go │ │ │ │ └── flowschema.go │ │ │ └── prioritylevelconfiguration │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── prioritylevelconfiguration.go │ │ └── v1beta3 │ │ │ ├── flowschema │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── flowschema.go │ │ │ └── flowschema.go │ │ │ └── prioritylevelconfiguration │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── prioritylevelconfiguration.go │ │ │ └── prioritylevelconfiguration.go │ ├── networking │ │ ├── v1 │ │ │ ├── ingress │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── ingress.go │ │ │ │ └── ingress.go │ │ │ ├── ingressclass │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── ingressclass.go │ │ │ │ └── ingressclass.go │ │ │ ├── ipaddress │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── ipaddress.go │ │ │ │ └── ipaddress.go │ │ │ ├── networkpolicy │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ └── networkpolicy.go │ │ │ └── servicecidr │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── servicecidr.go │ │ │ │ └── servicecidr.go │ │ └── v1beta1 │ │ │ ├── ingress │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── ingress.go │ │ │ └── ingress.go │ │ │ ├── ingressclass │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── ingressclass.go │ │ │ └── ingressclass.go │ │ │ ├── ipaddress │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── ipaddress.go │ │ │ └── ipaddress.go │ │ │ └── servicecidr │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── servicecidr.go │ │ │ └── servicecidr.go │ ├── node │ │ ├── v1 │ │ │ └── runtimeclass │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── runtimeclass.go │ │ │ │ └── runtimeclass.go │ │ ├── v1alpha1 │ │ │ └── runtimeclass │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── runtimeclass.go │ │ │ │ └── runtimeclass.go │ │ └── v1beta1 │ │ │ └── runtimeclass │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── runtimeclass.go │ │ │ └── runtimeclass.go │ ├── policy │ │ ├── v1 │ │ │ └── poddisruptionbudget │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget.go │ │ └── v1beta1 │ │ │ └── poddisruptionbudget │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── poddisruptionbudget.go │ │ │ └── poddisruptionbudget.go │ ├── rbac │ │ ├── v1 │ │ │ ├── clusterrole │ │ │ │ ├── clusterrole.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── clusterrolebinding │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── role │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── role.go │ │ │ │ └── role.go │ │ │ └── rolebinding │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── rolebinding.go │ │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole │ │ │ │ ├── clusterrole.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── clusterrolebinding │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── role │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── role.go │ │ │ │ └── role.go │ │ │ └── rolebinding │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── rolebinding.go │ │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole │ │ │ ├── clusterrole.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── clusterrole.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── clusterrolebinding │ │ │ ├── clusterrolebinding.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── clusterrolebinding.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ ├── role │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── role.go │ │ │ └── role.go │ │ │ └── rolebinding │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── rolebinding.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ ├── v1 │ │ │ └── priorityclass │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── priorityclass.go │ │ │ │ └── priorityclass.go │ │ ├── v1alpha1 │ │ │ └── priorityclass │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── priorityclass.go │ │ │ │ └── priorityclass.go │ │ └── v1beta1 │ │ │ └── priorityclass │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── priorityclass.go │ │ │ └── priorityclass.go │ └── storage │ │ ├── v1 │ │ ├── csidriver │ │ │ ├── csidriver.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── csidriver.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── csinode │ │ │ ├── csinode.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── csinode.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── csistoragecapacity │ │ │ ├── csistoragecapacity.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── csistoragecapacity.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── storageclass │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── storageclass.go │ │ │ └── storageclass.go │ │ └── volumeattachment │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── volumeattachment.go │ │ │ └── volumeattachment.go │ │ ├── v1alpha1 │ │ ├── csistoragecapacity │ │ │ ├── csistoragecapacity.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── csistoragecapacity.go │ │ │ │ └── fake │ │ │ │ └── fake.go │ │ ├── volumeattachment │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── volumeattachment.go │ │ │ └── volumeattachment.go │ │ └── volumeattributesclass │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── volumeattributesclass.go │ │ │ └── volumeattributesclass.go │ │ └── v1beta1 │ │ ├── csidriver │ │ ├── csidriver.go │ │ ├── fake │ │ │ └── fake.go │ │ └── filtered │ │ │ ├── csidriver.go │ │ │ └── fake │ │ │ └── fake.go │ │ ├── csinode │ │ ├── csinode.go │ │ ├── fake │ │ │ └── fake.go │ │ └── filtered │ │ │ ├── csinode.go │ │ │ └── fake │ │ │ └── fake.go │ │ ├── csistoragecapacity │ │ ├── csistoragecapacity.go │ │ ├── fake │ │ │ └── fake.go │ │ └── filtered │ │ │ ├── csistoragecapacity.go │ │ │ └── fake │ │ │ └── fake.go │ │ ├── storageclass │ │ ├── fake │ │ │ └── fake.go │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── storageclass.go │ │ └── storageclass.go │ │ ├── volumeattachment │ │ ├── fake │ │ │ └── fake.go │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── volumeattachment.go │ │ └── volumeattachment.go │ │ └── volumeattributesclass │ │ ├── fake │ │ └── fake.go │ │ ├── filtered │ │ ├── fake │ │ │ └── fake.go │ │ └── volumeattributesclass.go │ │ └── volumeattributesclass.go │ └── reconciler │ ├── admissionregistration │ ├── v1 │ │ ├── mutatingwebhookconfiguration │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ │ └── validatingwebhookconfiguration │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ └── v1beta1 │ │ ├── mutatingwebhookconfiguration │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ └── validatingwebhookconfiguration │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ ├── apps │ ├── v1 │ │ └── deployment │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ ├── v1beta1 │ │ └── deployment │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ └── v1beta2 │ │ └── deployment │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ ├── batch │ ├── v1 │ │ └── cronjob │ │ │ ├── controller.go │ │ │ ├── reconciler.go │ │ │ └── state.go │ └── v1beta1 │ │ └── cronjob │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ ├── core │ └── v1 │ │ ├── configmap │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ ├── namespace │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ ├── node │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ ├── pod │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ ├── secret │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ ├── service │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ └── serviceaccount │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ ├── extensions │ └── v1beta1 │ │ ├── deployment │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ │ └── networkpolicy │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── state.go │ └── networking │ └── v1 │ └── networkpolicy │ ├── controller.go │ ├── reconciler.go │ └── state.go ├── code-of-conduct.md ├── codegen └── cmd │ └── injection-gen │ ├── args │ └── args.go │ ├── generators │ ├── client │ │ ├── client.go │ │ ├── fake.go │ │ └── targets.go │ ├── duck │ │ ├── duck.go │ │ ├── fake_duck.go │ │ └── targets.go │ ├── factory │ │ ├── factory.go │ │ ├── fake_factory.go │ │ ├── fake_filtered_factory.go │ │ ├── filtered_factory.go │ │ └── targets.go │ ├── informers │ │ ├── fake_filtered_informer.go │ │ ├── fake_informer.go │ │ ├── filtered_informer.go │ │ ├── informer.go │ │ └── targets.go │ ├── packages.go │ └── reconciler │ │ ├── reconciler_controller.go │ │ ├── reconciler_controller_stub.go │ │ ├── reconciler_reconciler.go │ │ ├── reconciler_reconciler_stub.go │ │ ├── reconciler_state.go │ │ └── targets.go │ ├── main.go │ ├── namer │ ├── namer.go │ └── namesystems.go │ └── tags │ ├── comment_parser.go │ ├── comment_parser_test.go │ └── tags.go ├── configmap ├── doc.go ├── example.go ├── example_test.go ├── filter.go ├── filter_test.go ├── hash-gen │ ├── main.go │ ├── main_test.go │ └── testdata │ │ ├── add.yaml │ │ ├── add_want.yaml │ │ ├── nothing.yaml │ │ ├── update.yaml │ │ └── update_want.yaml ├── informer │ ├── informed_watcher.go │ ├── informed_watcher_test.go │ ├── synced_callback.go │ └── synced_callback_test.go ├── load.go ├── load_test.go ├── manual_watcher.go ├── manual_watcher_test.go ├── nodep_test.go ├── parse.go ├── parse_test.go ├── parser │ ├── parse.go │ └── parse_test.go ├── static_watcher.go ├── static_watcher_test.go ├── store.go ├── store_test.go ├── testing │ └── configmap.go └── watcher.go ├── controller ├── OWNERS ├── controller.go ├── controller_test.go ├── helper.go ├── helper_test.go ├── options.go ├── queue_metrics.go ├── two_lane_queue.go └── two_lane_queue_test.go ├── depcheck ├── depcheck.go ├── depcheck_test.go └── heavy.go ├── environment ├── client_config.go └── client_config_test.go ├── go.mod ├── go.sum ├── hack ├── boilerplate │ └── boilerplate.go.txt ├── format-code.sh ├── generate-knative.sh ├── tools.go ├── update-codegen.sh ├── update-deps.sh └── verify-codegen.sh ├── hash ├── bucketer.go ├── bucketer_test.go ├── doc.go ├── hash.go └── hash_test.go ├── injection ├── README.md ├── clients.go ├── clients │ ├── dynamicclient │ │ ├── dynamicclient.go │ │ ├── dynamicclient_test.go │ │ └── fake │ │ │ ├── fake.go │ │ │ └── fake_test.go │ └── namespacedkube │ │ └── informers │ │ ├── core │ │ └── v1 │ │ │ ├── configmap │ │ │ ├── configmap.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ │ └── secret │ │ │ ├── fake │ │ │ └── fake.go │ │ │ └── secret.go │ │ └── factory │ │ ├── factory.go │ │ └── fake │ │ └── fake.go ├── clients_test.go ├── config.go ├── context.go ├── context_test.go ├── doc.go ├── ducks.go ├── factories.go ├── factories_test.go ├── health_check.go ├── health_check_test.go ├── informers.go ├── informers_test.go ├── injection.go ├── interface.go └── sharedmain │ ├── main.go │ ├── main_test.go │ ├── options.go │ └── options_test.go ├── kflag ├── doc.go ├── set.go └── set_test.go ├── kmap ├── lookup.go ├── lookup_test.go ├── map.go └── map_test.go ├── kmeta ├── accessor.go ├── accessor_test.go ├── doc.go ├── labels.go ├── labels_test.go ├── map.go ├── names.go ├── names_test.go ├── owner_references.go ├── owner_references_test.go ├── ownerrefable_accessor.go └── ownerrefable_accessor_test.go ├── kmp ├── diff.go ├── diff_test.go ├── doc.go ├── reporters.go └── reporters_test.go ├── kref ├── knative_reference.go └── knative_reference_resolve_group_test.go ├── kvstore ├── kvstore.go ├── kvstore_cm.go └── kvstore_cm_test.go ├── leaderelection ├── chaosduck │ └── main.go ├── config.go ├── config_test.go ├── context.go ├── context_test.go └── doc.go ├── logging ├── config.go ├── config_test.go ├── depcheck_test.go ├── logger.go ├── logger_test.go ├── logkey │ └── constants.go ├── object_encoders.go ├── testing │ └── util.go ├── warning_handler.go └── zz_generated.deepcopy.go ├── network ├── depcheck_test.go ├── doc.go ├── domain.go ├── domain_test.go ├── error_handler.go ├── h2c.go ├── handlers │ ├── doc.go │ ├── drain.go │ ├── drain_test.go │ └── error.go ├── network.go ├── network_test.go ├── transports.go └── transports_test.go ├── observability ├── attributekey │ ├── key.go │ └── key_test.go ├── config.go ├── config_test.go ├── configmap │ ├── parse.go │ └── parse_test.go ├── metrics │ ├── config.go │ ├── config_test.go │ ├── k8s │ │ ├── instruments.go │ │ ├── instruments_test.go │ │ ├── noop.go │ │ ├── tools.go │ │ ├── tools_test.go │ │ ├── workqueue.go │ │ └── workqueue_test.go │ ├── metricstest │ │ ├── assert.go │ │ ├── assert_test.go │ │ └── doc.go │ ├── prometheus │ │ ├── server.go │ │ └── server_test.go │ ├── prometheus_disabled.go │ ├── prometheus_enabled.go │ ├── provider.go │ └── provider_test.go ├── resource │ ├── default.go │ └── default_test.go ├── runtime │ ├── config.go │ ├── config_test.go │ ├── doc.go │ ├── k8s │ │ └── pprof.go │ ├── pprof.go │ └── pprof_test.go ├── semconv │ ├── httpconv │ │ └── httpconv.go │ └── semconv.go └── tracing │ ├── config.go │ ├── config_test.go │ ├── provider.go │ └── provider_test.go ├── profiling ├── server.go └── server_test.go ├── ptr ├── doc.go ├── ptr.go ├── ptr_test.go ├── value.go └── value_test.go ├── reconciler ├── OWNERS ├── configstore.go ├── deletion.go ├── events.go ├── events_test.go ├── filter.go ├── filter_test.go ├── leader.go ├── leader_test.go ├── reconcile_common.go ├── reconcile_common_test.go ├── retry.go ├── retry_test.go └── testing │ ├── actions.go │ ├── actions_test.go │ ├── context.go │ ├── events.go │ ├── generate_name_reactor.go │ ├── generate_name_reactor_test.go │ ├── hooks.go │ ├── hooks_test.go │ ├── reactions.go │ ├── reactions_test.go │ ├── sorter.go │ ├── sorter_test.go │ ├── table.go │ ├── tracker.go │ ├── tracker_test.go │ └── util.go ├── resolver ├── OWNERS ├── addressable_resolver.go ├── addressable_resolver_test.go ├── authenticatable_resolver.go ├── authenticatable_resolver_test.go └── doc.go ├── signals ├── signal.go ├── signal_posix.go └── signal_windows.go ├── source ├── OWNERS ├── doc.go ├── source_labels.go └── source_labels_test.go ├── system ├── env.go └── testing │ └── names.go ├── test ├── OWNERS ├── README.md ├── ci │ ├── ci.go │ └── ci_test.go ├── cleanup.go ├── cleanup_test.go ├── clients.go ├── crd.go ├── e2e_flags.go ├── environment │ └── config.go ├── ha │ ├── ha.go │ └── ha_test.go ├── helpers │ ├── dir.go │ ├── dryrun.go │ ├── error.go │ ├── name.go │ └── name_test.go ├── imports │ └── banned_deps_test.go ├── ingress │ └── ingress.go ├── kube_checks.go ├── logging │ └── logging.go ├── logstream │ ├── README.md │ ├── doc.go │ ├── interface.go │ ├── null.go │ └── v2 │ │ ├── interface.go │ │ ├── stream.go │ │ └── stream_test.go ├── migrate │ └── checks.go ├── monitoring │ ├── doc.go │ └── monitoring.go ├── presubmit-tests.sh ├── prow │ └── prow.go ├── request.go ├── security │ └── security.go ├── spoof │ ├── error_checks.go │ ├── error_checks_test.go │ ├── request.go │ ├── response_checks.go │ ├── spoof.go │ └── spoof_test.go ├── test-reconciler-codegen.sh ├── tinterface.go ├── upgrade │ ├── asserts_test.go │ ├── background_verification_test.go │ ├── execute_failures_test.go │ ├── functions.go │ ├── functions_test.go │ ├── private_types.go │ ├── shell │ │ ├── assertions_test.go │ │ ├── executor.go │ │ ├── executor_test.go │ │ ├── fail-example.sh │ │ ├── prefixer.go │ │ ├── prefixer_test.go │ │ ├── project.go │ │ ├── project_test.go │ │ └── types.go │ ├── steps.go │ ├── suite_examples_test.go │ ├── suite_execution.go │ ├── testing_operations_test.go │ ├── testing_types_test.go │ ├── types.go │ └── vars.go └── vegeta │ └── pacers │ ├── combined_pacer.go │ ├── combined_pacer_test.go │ ├── steady_up_pacer.go │ └── steady_up_pacer_test.go ├── testing ├── doc.go ├── duck │ ├── doc.go │ ├── register.go │ ├── testbindable.go │ └── zz_generated.deepcopy.go ├── inner_default_resource.go ├── inner_default_resource_test.go ├── register.go ├── resource.go └── zz_generated.deepcopy.go ├── tracker ├── doc.go ├── enqueue.go ├── enqueue_test.go ├── interface.go ├── interface_test.go └── zz_generated.deepcopy.go ├── unstructured └── unstructured.go ├── vendor ├── github.com │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── blang │ │ └── semver │ │ │ └── v4 │ │ │ ├── LICENSE │ │ │ ├── json.go │ │ │ ├── range.go │ │ │ ├── semver.go │ │ │ ├── sort.go │ │ │ └── sql.go │ ├── blendle │ │ └── zapdriver │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── core.go │ │ │ ├── encoder.go │ │ │ ├── http.go │ │ │ ├── label.go │ │ │ ├── logger.go │ │ │ ├── operation.go │ │ │ ├── report.go │ │ │ ├── service.go │ │ │ ├── source.go │ │ │ └── trace.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 │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.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 │ ├── evanphx │ │ └── json-patch │ │ │ └── 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 │ ├── 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 │ ├── 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-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 │ │ ├── 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 │ ├── google │ │ ├── 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 │ │ └── 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 │ ├── 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 │ ├── grpc-ecosystem │ │ └── grpc-gateway │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── httprule │ │ │ │ ├── compile.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── parse.go │ │ │ │ └── types.go │ │ │ ├── runtime │ │ │ ├── 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 │ │ │ ├── doc.go │ │ │ ├── pattern.go │ │ │ ├── readerfactory.go │ │ │ ├── string_array_flag.go │ │ │ └── trie.go │ ├── hashicorp │ │ └── golang-lru │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── 2q.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── doc.go │ │ │ ├── lru.go │ │ │ ├── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ │ │ └── testing.go │ ├── influxdata │ │ └── tdigest │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── centroid.go │ │ │ └── tdigest.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 │ ├── kelseyhightower │ │ └── envconfig │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── env_os.go │ │ │ ├── env_syscall.go │ │ │ ├── envconfig.go │ │ │ └── usage.go │ ├── mailru │ │ └── easyjson │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── helpers.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ ├── jwriter │ │ │ └── writer.go │ │ │ ├── raw.go │ │ │ └── unknown_fields.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 │ ├── munnerz │ │ └── goautoneg │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── autoneg.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 │ │ │ ├── internal │ │ │ │ └── github.com │ │ │ │ │ └── golang │ │ │ │ │ └── gddo │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── httputil │ │ │ │ │ ├── header │ │ │ │ │ └── header.go │ │ │ │ │ └── negotiate.go │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_info_collector.go │ │ │ │ ├── collector.go │ │ │ │ ├── collectorfunc.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 │ │ ├── otlptranslator │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── label_namer.go │ │ │ ├── metric_namer.go │ │ │ ├── metric_type.go │ │ │ ├── strategy.go │ │ │ ├── strconv.go │ │ │ └── unit_namer.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_statm.go │ │ │ ├── proc_status.go │ │ │ ├── proc_sys.go │ │ │ ├── schedstat.go │ │ │ ├── slab.go │ │ │ ├── softirqs.go │ │ │ ├── stat.go │ │ │ ├── swaps.go │ │ │ ├── thread.go │ │ │ ├── ttar │ │ │ ├── vm.go │ │ │ └── zoneinfo.go │ ├── rs │ │ └── dnscache │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── dnscache.go │ ├── spf13 │ │ └── 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 │ ├── tsenart │ │ └── vegeta │ │ │ └── v12 │ │ │ ├── LICENSE │ │ │ └── lib │ │ │ ├── attack.go │ │ │ ├── attack_fuzz.go │ │ │ ├── histogram.go │ │ │ ├── metrics.go │ │ │ ├── pacer.go │ │ │ ├── reporters.go │ │ │ ├── results.go │ │ │ ├── results_easyjson.go │ │ │ ├── results_fuzz.go │ │ │ ├── target.schema.json │ │ │ ├── targets.go │ │ │ ├── targets_easyjson.go │ │ │ ├── targets_fuzz.go │ │ │ └── util_fuzz.go │ └── x448 │ │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.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 │ │ │ ├── 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 │ │ │ │ ├── labeler.go │ │ │ │ ├── start_time_context.go │ │ │ │ ├── transport.go │ │ │ │ └── version.go │ │ │ └── runtime │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ ├── deprecatedruntime │ │ │ │ ├── doc.go │ │ │ │ └── runtime.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ │ ├── options.go │ │ │ ├── producer.go │ │ │ ├── runtime.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 │ │ │ │ │ └── otlpmetrichttp │ │ │ │ │ │ ├── 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 │ │ │ │ └── otlptrace │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── clients.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ └── tracetransform │ │ │ │ │ │ ├── attribute.go │ │ │ │ │ │ ├── instrumentation.go │ │ │ │ │ │ ├── resource.go │ │ │ │ │ │ └── span.go │ │ │ │ │ ├── otlptracegrpc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── envconfig │ │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ │ └── tls.go │ │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ │ └── retry │ │ │ │ │ │ │ └── retry.go │ │ │ │ │ └── options.go │ │ │ │ │ ├── otlptracehttp │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── envconfig │ │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ │ └── tls.go │ │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ │ └── retry │ │ │ │ │ │ │ └── retry.go │ │ │ │ │ └── options.go │ │ │ │ │ └── version.go │ │ │ ├── prometheus │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ └── exporter.go │ │ │ └── stdout │ │ │ │ └── stdouttrace │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── internal │ │ │ │ ├── counter │ │ │ │ │ └── counter.go │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ │ └── trace.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 │ │ │ │ ├── env │ │ │ │ │ └── env.go │ │ │ │ └── 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 │ │ │ │ │ ├── metricdatatest │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── assertion.go │ │ │ │ │ │ └── comparisons.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 │ │ │ ├── trace │ │ │ │ ├── README.md │ │ │ │ ├── batch_span_processor.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── evictedqueue.go │ │ │ │ ├── id_generator.go │ │ │ │ ├── internal │ │ │ │ │ └── x │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── x.go │ │ │ │ ├── link.go │ │ │ │ ├── provider.go │ │ │ │ ├── sampler_env.go │ │ │ │ ├── sampling.go │ │ │ │ ├── simple_span_processor.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── span.go │ │ │ │ ├── span_exporter.go │ │ │ │ ├── span_limits.go │ │ │ │ ├── span_processor.go │ │ │ │ ├── tracer.go │ │ │ │ └── tracetest │ │ │ │ │ ├── README.md │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── recorder.go │ │ │ │ │ └── span.go │ │ │ └── version.go │ │ ├── semconv │ │ │ ├── v1.26.0 │ │ │ │ ├── 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 │ │ │ │ ├── goconv │ │ │ │ └── metric.go │ │ │ │ ├── httpconv │ │ │ │ └── metric.go │ │ │ │ ├── otelconv │ │ │ │ └── metric.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 │ │ └── trace │ │ │ └── v1 │ │ │ ├── trace_service.pb.go │ │ │ ├── trace_service.pb.gw.go │ │ │ └── trace_service_grpc.pb.go │ │ ├── common │ │ └── v1 │ │ │ └── common.pb.go │ │ ├── metrics │ │ └── v1 │ │ │ └── metrics.pb.go │ │ ├── resource │ │ └── v1 │ │ │ └── resource.pb.go │ │ └── trace │ │ └── v1 │ │ └── trace.pb.go ├── go.uber.org │ ├── automaxprocs │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── cgroups │ │ │ │ ├── cgroup.go │ │ │ │ ├── cgroups.go │ │ │ │ ├── cgroups2.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── mountpoint.go │ │ │ │ └── subsys.go │ │ │ └── runtime │ │ │ │ ├── cpu_quota_linux.go │ │ │ │ ├── cpu_quota_unsupported.go │ │ │ │ └── runtime.go │ │ └── maxprocs │ │ │ ├── maxprocs.go │ │ │ └── version.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 │ │ └── ztest │ │ │ ├── clock.go │ │ │ ├── doc.go │ │ │ ├── timeout.go │ │ │ └── writer.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 │ │ └── zaptest │ │ ├── doc.go │ │ ├── logger.go │ │ ├── testingt.go │ │ ├── timeout.go │ │ └── writer.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 │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── module │ │ │ ├── module.go │ │ │ └── pseudo.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── 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 │ │ │ ├── h2c │ │ │ │ └── h2c.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 │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deviceauth.go │ │ ├── internal │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── oauth2.go │ │ ├── pkce.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup │ │ │ └── errgroup.go │ │ └── singleflight │ │ │ └── singleflight.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── 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 │ │ ├── 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 │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.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 │ ├── genproto │ │ └── googleapis │ │ │ ├── api │ │ │ ├── LICENSE │ │ │ └── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ └── rpc │ │ │ ├── LICENSE │ │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ └── status.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 │ │ │ │ └── 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 │ │ │ ├── credentials.go │ │ │ ├── insecure │ │ │ │ └── insecure.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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── known │ │ ├── anypb │ │ └── any.pb.go │ │ ├── durationpb │ │ └── duration.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.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 │ │ ├── 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 │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── utils.go │ │ │ ├── clientset │ │ │ └── clientset │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── apiextensions │ │ │ │ ├── v1 │ │ │ │ ├── apiextensions_client.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ │ └── fake_customresourcedefinition.go │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ ├── apiextensions_client.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ └── fake_customresourcedefinition.go │ │ │ │ └── generated_expansion.go │ │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── apiextensions │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ └── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ └── interface.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── customresourcedefinition.go │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ ├── customresourcedefinition.go │ │ │ └── expansion_generated.go │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── apitesting │ │ │ │ │ ├── close.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ │ └── valuefuzz.go │ │ │ │ │ └── roundtrip │ │ │ │ │ │ ├── compatibility.go │ │ │ │ │ │ ├── construct.go │ │ │ │ │ │ ├── fuzz_norace.go │ │ │ │ │ │ ├── fuzz_race.go │ │ │ │ │ │ ├── roundtrip.go │ │ │ │ │ │ └── unstructured.go │ │ │ │ ├── equality │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── meta │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── objectmeta.go │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ ├── fuzzer │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── internalversion │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── 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 │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ └── json.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 │ │ │ │ │ ├── errors.go │ │ │ │ │ └── util.go │ │ │ │ ├── naming │ │ │ │ │ └── from_stack.go │ │ │ │ ├── net │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── set.go │ │ │ │ │ └── string.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ └── types.go │ │ │ │ ├── uuid │ │ │ │ │ └── uuid.go │ │ │ │ ├── validation │ │ │ │ │ ├── field │ │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ ├── ip.go │ │ │ │ │ └── validation.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 │ │ │ └── fields.go │ │ │ └── reflect │ │ │ └── deep_equal.go │ ├── client-go │ │ ├── LICENSE │ │ ├── applyconfigurations │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── openapi │ │ │ ├── client.go │ │ │ ├── groupversion.go │ │ │ └── typeconverter.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── 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 │ │ │ │ └── exec │ │ │ │ ├── exec.go │ │ │ │ └── metrics.go │ │ ├── rest │ │ │ ├── .mockery.yaml │ │ │ ├── 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 │ │ ├── testing │ │ │ ├── actions.go │ │ │ ├── fake.go │ │ │ ├── fixture.go │ │ │ └── interface.go │ │ ├── tools │ │ │ ├── auth │ │ │ │ └── clientauth.go │ │ │ ├── cache │ │ │ │ ├── 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 │ │ │ │ ├── healthzadaptor.go │ │ │ │ ├── leaderelection.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── metrics.go │ │ │ │ └── resourcelock │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── leaselock.go │ │ │ │ │ └── multilock.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── pager │ │ │ │ └── pager.go │ │ │ ├── record │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_cache.go │ │ │ │ ├── fake.go │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ └── reference │ │ │ │ └── ref.go │ │ ├── transport │ │ │ ├── cache.go │ │ │ ├── cache_go118.go │ │ │ ├── cert_rotation.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── token_source.go │ │ │ └── transport.go │ │ └── util │ │ │ ├── apply │ │ │ └── apply.go │ │ │ ├── cert │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── io.go │ │ │ ├── pem.go │ │ │ └── server_inspection.go │ │ │ ├── connrotation │ │ │ └── connrotation.go │ │ │ ├── consistencydetector │ │ │ └── data_consistency_detector.go │ │ │ ├── flowcontrol │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ │ ├── homedir │ │ │ └── homedir.go │ │ │ ├── keyutil │ │ │ └── key.go │ │ │ ├── retry │ │ │ └── util.go │ │ │ └── workqueue │ │ │ ├── default_rate_limiters.go │ │ │ ├── delaying_queue.go │ │ │ ├── doc.go │ │ │ ├── metrics.go │ │ │ ├── parallelizer.go │ │ │ ├── queue.go │ │ │ └── rate_limiting_queue.go │ ├── code-generator │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── 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 │ ├── 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 │ │ │ └── types │ │ │ ├── doc.go │ │ │ └── types.go │ ├── klog │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ ├── 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 │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── doc.go │ │ │ │ ├── document.go │ │ │ │ ├── document_v3.go │ │ │ │ └── openapi.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 │ └── utils │ │ ├── LICENSE │ │ ├── buffer │ │ └── ring_growing.go │ │ ├── clock │ │ ├── README.md │ │ └── clock.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 │ │ ├── README.md │ │ └── ptr.go │ │ └── trace │ │ ├── README.md │ │ └── trace.go ├── knative.dev │ └── hack │ │ ├── CODE-OF-CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── boilerplate.go.txt │ │ ├── codegen-library.sh │ │ ├── e2e-tests.sh │ │ ├── embed.go │ │ ├── go.work │ │ ├── go.work.sum │ │ ├── infra-library.sh │ │ ├── library.sh │ │ ├── microbenchmarks.sh │ │ ├── performance-tests.sh │ │ ├── presubmit-tests.sh │ │ ├── release.sh │ │ └── shellcheck-presubmit.sh ├── modules.txt └── sigs.k8s.io │ ├── json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── 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 │ ├── randfill │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── 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 │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ └── yaml.go ├── version ├── version.go └── version_test.go ├── webhook ├── OWNERS ├── README.md ├── admission.go ├── admission_integration_test.go ├── certificates │ ├── certificates.go │ ├── certificates_test.go │ ├── controller.go │ └── resources │ │ ├── certs.go │ │ ├── certs_test.go │ │ ├── secret.go │ │ └── secret_test.go ├── configmaps │ ├── configmaps.go │ ├── configmaps_test.go │ ├── controller.go │ └── table_test.go ├── context.go ├── conversion.go ├── conversion_integration_test.go ├── env.go ├── env_test.go ├── helper.go ├── helper_test.go ├── json │ ├── decode.go │ └── decode_test.go ├── metrics.go ├── psbinding │ ├── README.md │ ├── controller.go │ ├── doc.go │ ├── index.go │ ├── index_test.go │ ├── psbinding.go │ ├── reconciler.go │ └── table_test.go ├── resourcesemantics │ ├── conversion │ │ ├── controller.go │ │ ├── conversion.go │ │ ├── conversion_test.go │ │ ├── internal │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── reconciler.go │ │ └── table_test.go │ ├── defaulting │ │ ├── controller.go │ │ ├── defaulting.go │ │ ├── defaulting_test.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── table_test.go │ │ ├── user_info.go │ │ └── user_info_test.go │ ├── interface.go │ └── validation │ │ ├── controller.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── reconcile_config.go │ │ ├── reconcile_config_test.go │ │ ├── validation_admit.go │ │ ├── validation_admit_test.go │ │ └── validation_deprecated_test.go ├── testing │ ├── factory.go │ ├── listers.go │ └── testing.go ├── webhook.go ├── webhook_integration_test.go └── webhook_test.go └── websocket ├── connection.go ├── connection_test.go ├── hijack.go └── hijack_test.go /.codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.codecov.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/PULL_REQUEST_TEMPLATE/bug-fix.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/issue-template.md -------------------------------------------------------------------------------- /.github/workflows/knative-go-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/workflows/knative-go-build.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-go-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/workflows/knative-go-test.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/workflows/knative-security.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/workflows/knative-stale.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/workflows/knative-style.yaml -------------------------------------------------------------------------------- /.github/workflows/knative-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.github/workflows/knative-verify.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-LEADS.md: -------------------------------------------------------------------------------- 1 | Moved to https://github.com/knative/release 2 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apiextensions/storageversion/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apiextensions/storageversion/migrator.go -------------------------------------------------------------------------------- /apis/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/OWNERS -------------------------------------------------------------------------------- /apis/condition_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/condition_set.go -------------------------------------------------------------------------------- /apis/condition_set_impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/condition_set_impl_test.go -------------------------------------------------------------------------------- /apis/condition_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/condition_set_test.go -------------------------------------------------------------------------------- /apis/condition_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/condition_types.go -------------------------------------------------------------------------------- /apis/condition_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/condition_types_test.go -------------------------------------------------------------------------------- /apis/contexts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/contexts.go -------------------------------------------------------------------------------- /apis/contexts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/contexts_test.go -------------------------------------------------------------------------------- /apis/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/convert.go -------------------------------------------------------------------------------- /apis/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/convert_test.go -------------------------------------------------------------------------------- /apis/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/depcheck_test.go -------------------------------------------------------------------------------- /apis/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/deprecated.go -------------------------------------------------------------------------------- /apis/deprecated_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/deprecated_test.go -------------------------------------------------------------------------------- /apis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/doc.go -------------------------------------------------------------------------------- /apis/duck/ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/ABOUT.md -------------------------------------------------------------------------------- /apis/duck/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/OWNERS -------------------------------------------------------------------------------- /apis/duck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/README.md -------------------------------------------------------------------------------- /apis/duck/cached.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/cached.go -------------------------------------------------------------------------------- /apis/duck/cached_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/cached_test.go -------------------------------------------------------------------------------- /apis/duck/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/const.go -------------------------------------------------------------------------------- /apis/duck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/doc.go -------------------------------------------------------------------------------- /apis/duck/ducktypes/ducktypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/ducktypes/ducktypes.go -------------------------------------------------------------------------------- /apis/duck/enqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/enqueue.go -------------------------------------------------------------------------------- /apis/duck/enqueue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/enqueue_test.go -------------------------------------------------------------------------------- /apis/duck/images/Knative-Duck0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/images/Knative-Duck0.png -------------------------------------------------------------------------------- /apis/duck/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/interface.go -------------------------------------------------------------------------------- /apis/duck/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/patch.go -------------------------------------------------------------------------------- /apis/duck/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/patch_test.go -------------------------------------------------------------------------------- /apis/duck/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/register.go -------------------------------------------------------------------------------- /apis/duck/scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/scale_test.go -------------------------------------------------------------------------------- /apis/duck/typed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/typed.go -------------------------------------------------------------------------------- /apis/duck/typed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/typed_test.go -------------------------------------------------------------------------------- /apis/duck/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/unstructured.go -------------------------------------------------------------------------------- /apis/duck/unstructured_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/unstructured_test.go -------------------------------------------------------------------------------- /apis/duck/v1/addressable_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/addressable_types.go -------------------------------------------------------------------------------- /apis/duck/v1/addressable_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/addressable_types_test.go -------------------------------------------------------------------------------- /apis/duck/v1/auth_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/auth_types.go -------------------------------------------------------------------------------- /apis/duck/v1/binding_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/binding_types.go -------------------------------------------------------------------------------- /apis/duck/v1/cronjob_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/cronjob_defaults.go -------------------------------------------------------------------------------- /apis/duck/v1/cronjob_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/cronjob_defaults_test.go -------------------------------------------------------------------------------- /apis/duck/v1/cronjob_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/cronjob_types.go -------------------------------------------------------------------------------- /apis/duck/v1/cronjob_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/cronjob_validation.go -------------------------------------------------------------------------------- /apis/duck/v1/cronjob_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/cronjob_validation_test.go -------------------------------------------------------------------------------- /apis/duck/v1/destination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/destination.go -------------------------------------------------------------------------------- /apis/duck/v1/destination_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/destination_test.go -------------------------------------------------------------------------------- /apis/duck/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/doc.go -------------------------------------------------------------------------------- /apis/duck/v1/implements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/implements_test.go -------------------------------------------------------------------------------- /apis/duck/v1/knative_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/knative_reference.go -------------------------------------------------------------------------------- /apis/duck/v1/knative_reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/knative_reference_test.go -------------------------------------------------------------------------------- /apis/duck/v1/kresource_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/kresource_type.go -------------------------------------------------------------------------------- /apis/duck/v1/kresource_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/kresource_type_test.go -------------------------------------------------------------------------------- /apis/duck/v1/podspec_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/podspec_defaults.go -------------------------------------------------------------------------------- /apis/duck/v1/podspec_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/podspec_defaults_test.go -------------------------------------------------------------------------------- /apis/duck/v1/podspec_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/podspec_types.go -------------------------------------------------------------------------------- /apis/duck/v1/podspec_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/podspec_validation.go -------------------------------------------------------------------------------- /apis/duck/v1/podspec_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/podspec_validation_test.go -------------------------------------------------------------------------------- /apis/duck/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/register.go -------------------------------------------------------------------------------- /apis/duck/v1/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/register_test.go -------------------------------------------------------------------------------- /apis/duck/v1/source_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/source_types.go -------------------------------------------------------------------------------- /apis/duck/v1/source_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/source_types_test.go -------------------------------------------------------------------------------- /apis/duck/v1/status_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/status_types.go -------------------------------------------------------------------------------- /apis/duck/v1/status_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/status_types_test.go -------------------------------------------------------------------------------- /apis/duck/v1/test/fuzzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/test/fuzzer.go -------------------------------------------------------------------------------- /apis/duck/v1/test/roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/test/roundtrip_test.go -------------------------------------------------------------------------------- /apis/duck/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/addressable_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/addressable_types.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/binding_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/binding_types.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/doc.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/implements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/implements_test.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/init_test.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/register.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/register_test.go -------------------------------------------------------------------------------- /apis/duck/v1alpha1/roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1alpha1/roundtrip_test.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/addressable_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/addressable_types.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/binding_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/binding_types.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/destination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/destination.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/destination_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/destination_test.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/doc.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/implements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/implements_test.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/register.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/register_test.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/source_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/source_types.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/status_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/status_types.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/status_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/status_types_test.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/test/fuzzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/test/fuzzer.go -------------------------------------------------------------------------------- /apis/duck/v1beta1/test/roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/v1beta1/test/roundtrip_test.go -------------------------------------------------------------------------------- /apis/duck/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/verify.go -------------------------------------------------------------------------------- /apis/duck/verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/duck/verify_test.go -------------------------------------------------------------------------------- /apis/field_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/field_error.go -------------------------------------------------------------------------------- /apis/field_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/field_error_test.go -------------------------------------------------------------------------------- /apis/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/interfaces.go -------------------------------------------------------------------------------- /apis/kind2resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/kind2resource.go -------------------------------------------------------------------------------- /apis/kind2resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/kind2resource_test.go -------------------------------------------------------------------------------- /apis/metadata_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/metadata_validation.go -------------------------------------------------------------------------------- /apis/metadata_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/metadata_validation_test.go -------------------------------------------------------------------------------- /apis/test/example/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/example/register.go -------------------------------------------------------------------------------- /apis/test/example/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/example/v1alpha1/doc.go -------------------------------------------------------------------------------- /apis/test/example/v1alpha1/fiz_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/example/v1alpha1/fiz_types.go -------------------------------------------------------------------------------- /apis/test/example/v1alpha1/foo_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/example/v1alpha1/foo_types.go -------------------------------------------------------------------------------- /apis/test/example/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/example/v1alpha1/register.go -------------------------------------------------------------------------------- /apis/test/pub/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/pub/register.go -------------------------------------------------------------------------------- /apis/test/pub/v1alpha1/bar_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/pub/v1alpha1/bar_types.go -------------------------------------------------------------------------------- /apis/test/pub/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/pub/v1alpha1/doc.go -------------------------------------------------------------------------------- /apis/test/pub/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/test/pub/v1alpha1/register.go -------------------------------------------------------------------------------- /apis/testing/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/testing/conditions.go -------------------------------------------------------------------------------- /apis/testing/fuzzer/fuzzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/testing/fuzzer/fuzzer.go -------------------------------------------------------------------------------- /apis/testing/roundtrip/roundtrip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/testing/roundtrip/roundtrip.go -------------------------------------------------------------------------------- /apis/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/url.go -------------------------------------------------------------------------------- /apis/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/url_test.go -------------------------------------------------------------------------------- /apis/volatile_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/volatile_time.go -------------------------------------------------------------------------------- /apis/volatile_time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/volatile_time_test.go -------------------------------------------------------------------------------- /apis/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/apis/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /changeset/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/changeset/commit.go -------------------------------------------------------------------------------- /changeset/commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/changeset/commit_test.go -------------------------------------------------------------------------------- /changeset/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/changeset/doc.go -------------------------------------------------------------------------------- /client/injection/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/client/injection/client/client.go -------------------------------------------------------------------------------- /client/injection/client/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/client/injection/client/fake/fake.go -------------------------------------------------------------------------------- /client/injection/kube/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/client/injection/kube/client/client.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /codegen/cmd/injection-gen/args/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/codegen/cmd/injection-gen/args/args.go -------------------------------------------------------------------------------- /codegen/cmd/injection-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/codegen/cmd/injection-gen/main.go -------------------------------------------------------------------------------- /codegen/cmd/injection-gen/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/codegen/cmd/injection-gen/namer/namer.go -------------------------------------------------------------------------------- /codegen/cmd/injection-gen/tags/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/codegen/cmd/injection-gen/tags/tags.go -------------------------------------------------------------------------------- /configmap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/doc.go -------------------------------------------------------------------------------- /configmap/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/example.go -------------------------------------------------------------------------------- /configmap/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/example_test.go -------------------------------------------------------------------------------- /configmap/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/filter.go -------------------------------------------------------------------------------- /configmap/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/filter_test.go -------------------------------------------------------------------------------- /configmap/hash-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/hash-gen/main.go -------------------------------------------------------------------------------- /configmap/hash-gen/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/hash-gen/main_test.go -------------------------------------------------------------------------------- /configmap/hash-gen/testdata/add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/hash-gen/testdata/add.yaml -------------------------------------------------------------------------------- /configmap/hash-gen/testdata/nothing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/hash-gen/testdata/nothing.yaml -------------------------------------------------------------------------------- /configmap/hash-gen/testdata/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/hash-gen/testdata/update.yaml -------------------------------------------------------------------------------- /configmap/informer/informed_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/informer/informed_watcher.go -------------------------------------------------------------------------------- /configmap/informer/synced_callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/informer/synced_callback.go -------------------------------------------------------------------------------- /configmap/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/load.go -------------------------------------------------------------------------------- /configmap/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/load_test.go -------------------------------------------------------------------------------- /configmap/manual_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/manual_watcher.go -------------------------------------------------------------------------------- /configmap/manual_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/manual_watcher_test.go -------------------------------------------------------------------------------- /configmap/nodep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/nodep_test.go -------------------------------------------------------------------------------- /configmap/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/parse.go -------------------------------------------------------------------------------- /configmap/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/parse_test.go -------------------------------------------------------------------------------- /configmap/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/parser/parse.go -------------------------------------------------------------------------------- /configmap/parser/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/parser/parse_test.go -------------------------------------------------------------------------------- /configmap/static_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/static_watcher.go -------------------------------------------------------------------------------- /configmap/static_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/static_watcher_test.go -------------------------------------------------------------------------------- /configmap/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/store.go -------------------------------------------------------------------------------- /configmap/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/store_test.go -------------------------------------------------------------------------------- /configmap/testing/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/testing/configmap.go -------------------------------------------------------------------------------- /configmap/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/configmap/watcher.go -------------------------------------------------------------------------------- /controller/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/OWNERS -------------------------------------------------------------------------------- /controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/controller.go -------------------------------------------------------------------------------- /controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/controller_test.go -------------------------------------------------------------------------------- /controller/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/helper.go -------------------------------------------------------------------------------- /controller/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/helper_test.go -------------------------------------------------------------------------------- /controller/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/options.go -------------------------------------------------------------------------------- /controller/queue_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/queue_metrics.go -------------------------------------------------------------------------------- /controller/two_lane_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/two_lane_queue.go -------------------------------------------------------------------------------- /controller/two_lane_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/controller/two_lane_queue_test.go -------------------------------------------------------------------------------- /depcheck/depcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/depcheck/depcheck.go -------------------------------------------------------------------------------- /depcheck/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/depcheck/depcheck_test.go -------------------------------------------------------------------------------- /depcheck/heavy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/depcheck/heavy.go -------------------------------------------------------------------------------- /environment/client_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/environment/client_config.go -------------------------------------------------------------------------------- /environment/client_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/environment/client_config_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/format-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/format-code.sh -------------------------------------------------------------------------------- /hack/generate-knative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/generate-knative.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /hash/bucketer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hash/bucketer.go -------------------------------------------------------------------------------- /hash/bucketer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hash/bucketer_test.go -------------------------------------------------------------------------------- /hash/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hash/doc.go -------------------------------------------------------------------------------- /hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hash/hash.go -------------------------------------------------------------------------------- /hash/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/hash/hash_test.go -------------------------------------------------------------------------------- /injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/README.md -------------------------------------------------------------------------------- /injection/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/clients.go -------------------------------------------------------------------------------- /injection/clients_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/clients_test.go -------------------------------------------------------------------------------- /injection/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/config.go -------------------------------------------------------------------------------- /injection/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/context.go -------------------------------------------------------------------------------- /injection/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/context_test.go -------------------------------------------------------------------------------- /injection/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/doc.go -------------------------------------------------------------------------------- /injection/ducks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/ducks.go -------------------------------------------------------------------------------- /injection/factories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/factories.go -------------------------------------------------------------------------------- /injection/factories_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/factories_test.go -------------------------------------------------------------------------------- /injection/health_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/health_check.go -------------------------------------------------------------------------------- /injection/health_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/health_check_test.go -------------------------------------------------------------------------------- /injection/informers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/informers.go -------------------------------------------------------------------------------- /injection/informers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/informers_test.go -------------------------------------------------------------------------------- /injection/injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/injection.go -------------------------------------------------------------------------------- /injection/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/interface.go -------------------------------------------------------------------------------- /injection/sharedmain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/sharedmain/main.go -------------------------------------------------------------------------------- /injection/sharedmain/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/sharedmain/main_test.go -------------------------------------------------------------------------------- /injection/sharedmain/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/sharedmain/options.go -------------------------------------------------------------------------------- /injection/sharedmain/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/injection/sharedmain/options_test.go -------------------------------------------------------------------------------- /kflag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kflag/doc.go -------------------------------------------------------------------------------- /kflag/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kflag/set.go -------------------------------------------------------------------------------- /kflag/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kflag/set_test.go -------------------------------------------------------------------------------- /kmap/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmap/lookup.go -------------------------------------------------------------------------------- /kmap/lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmap/lookup_test.go -------------------------------------------------------------------------------- /kmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmap/map.go -------------------------------------------------------------------------------- /kmap/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmap/map_test.go -------------------------------------------------------------------------------- /kmeta/accessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/accessor.go -------------------------------------------------------------------------------- /kmeta/accessor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/accessor_test.go -------------------------------------------------------------------------------- /kmeta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/doc.go -------------------------------------------------------------------------------- /kmeta/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/labels.go -------------------------------------------------------------------------------- /kmeta/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/labels_test.go -------------------------------------------------------------------------------- /kmeta/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/map.go -------------------------------------------------------------------------------- /kmeta/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/names.go -------------------------------------------------------------------------------- /kmeta/names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/names_test.go -------------------------------------------------------------------------------- /kmeta/owner_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/owner_references.go -------------------------------------------------------------------------------- /kmeta/owner_references_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/owner_references_test.go -------------------------------------------------------------------------------- /kmeta/ownerrefable_accessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/ownerrefable_accessor.go -------------------------------------------------------------------------------- /kmeta/ownerrefable_accessor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmeta/ownerrefable_accessor_test.go -------------------------------------------------------------------------------- /kmp/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmp/diff.go -------------------------------------------------------------------------------- /kmp/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmp/diff_test.go -------------------------------------------------------------------------------- /kmp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmp/doc.go -------------------------------------------------------------------------------- /kmp/reporters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmp/reporters.go -------------------------------------------------------------------------------- /kmp/reporters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kmp/reporters_test.go -------------------------------------------------------------------------------- /kref/knative_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kref/knative_reference.go -------------------------------------------------------------------------------- /kvstore/kvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kvstore/kvstore.go -------------------------------------------------------------------------------- /kvstore/kvstore_cm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kvstore/kvstore_cm.go -------------------------------------------------------------------------------- /kvstore/kvstore_cm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/kvstore/kvstore_cm_test.go -------------------------------------------------------------------------------- /leaderelection/chaosduck/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/leaderelection/chaosduck/main.go -------------------------------------------------------------------------------- /leaderelection/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/leaderelection/config.go -------------------------------------------------------------------------------- /leaderelection/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/leaderelection/config_test.go -------------------------------------------------------------------------------- /leaderelection/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/leaderelection/context.go -------------------------------------------------------------------------------- /leaderelection/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/leaderelection/context_test.go -------------------------------------------------------------------------------- /leaderelection/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/leaderelection/doc.go -------------------------------------------------------------------------------- /logging/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/config.go -------------------------------------------------------------------------------- /logging/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/config_test.go -------------------------------------------------------------------------------- /logging/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/depcheck_test.go -------------------------------------------------------------------------------- /logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/logger.go -------------------------------------------------------------------------------- /logging/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/logger_test.go -------------------------------------------------------------------------------- /logging/logkey/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/logkey/constants.go -------------------------------------------------------------------------------- /logging/object_encoders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/object_encoders.go -------------------------------------------------------------------------------- /logging/testing/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/testing/util.go -------------------------------------------------------------------------------- /logging/warning_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/warning_handler.go -------------------------------------------------------------------------------- /logging/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/logging/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /network/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/depcheck_test.go -------------------------------------------------------------------------------- /network/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/doc.go -------------------------------------------------------------------------------- /network/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/domain.go -------------------------------------------------------------------------------- /network/domain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/domain_test.go -------------------------------------------------------------------------------- /network/error_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/error_handler.go -------------------------------------------------------------------------------- /network/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/h2c.go -------------------------------------------------------------------------------- /network/handlers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/handlers/doc.go -------------------------------------------------------------------------------- /network/handlers/drain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/handlers/drain.go -------------------------------------------------------------------------------- /network/handlers/drain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/handlers/drain_test.go -------------------------------------------------------------------------------- /network/handlers/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/handlers/error.go -------------------------------------------------------------------------------- /network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/network.go -------------------------------------------------------------------------------- /network/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/network_test.go -------------------------------------------------------------------------------- /network/transports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/transports.go -------------------------------------------------------------------------------- /network/transports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/network/transports_test.go -------------------------------------------------------------------------------- /observability/attributekey/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/attributekey/key.go -------------------------------------------------------------------------------- /observability/attributekey/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/attributekey/key_test.go -------------------------------------------------------------------------------- /observability/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/config.go -------------------------------------------------------------------------------- /observability/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/config_test.go -------------------------------------------------------------------------------- /observability/configmap/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/configmap/parse.go -------------------------------------------------------------------------------- /observability/configmap/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/configmap/parse_test.go -------------------------------------------------------------------------------- /observability/metrics/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/config.go -------------------------------------------------------------------------------- /observability/metrics/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/config_test.go -------------------------------------------------------------------------------- /observability/metrics/k8s/instruments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/k8s/instruments.go -------------------------------------------------------------------------------- /observability/metrics/k8s/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/k8s/noop.go -------------------------------------------------------------------------------- /observability/metrics/k8s/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/k8s/tools.go -------------------------------------------------------------------------------- /observability/metrics/k8s/tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/k8s/tools_test.go -------------------------------------------------------------------------------- /observability/metrics/k8s/workqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/k8s/workqueue.go -------------------------------------------------------------------------------- /observability/metrics/metricstest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/metricstest/doc.go -------------------------------------------------------------------------------- /observability/metrics/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/provider.go -------------------------------------------------------------------------------- /observability/metrics/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/metrics/provider_test.go -------------------------------------------------------------------------------- /observability/resource/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/resource/default.go -------------------------------------------------------------------------------- /observability/resource/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/resource/default_test.go -------------------------------------------------------------------------------- /observability/runtime/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/runtime/config.go -------------------------------------------------------------------------------- /observability/runtime/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/runtime/config_test.go -------------------------------------------------------------------------------- /observability/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/runtime/doc.go -------------------------------------------------------------------------------- /observability/runtime/k8s/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/runtime/k8s/pprof.go -------------------------------------------------------------------------------- /observability/runtime/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/runtime/pprof.go -------------------------------------------------------------------------------- /observability/runtime/pprof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/runtime/pprof_test.go -------------------------------------------------------------------------------- /observability/semconv/semconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/semconv/semconv.go -------------------------------------------------------------------------------- /observability/tracing/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/tracing/config.go -------------------------------------------------------------------------------- /observability/tracing/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/tracing/config_test.go -------------------------------------------------------------------------------- /observability/tracing/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/tracing/provider.go -------------------------------------------------------------------------------- /observability/tracing/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/observability/tracing/provider_test.go -------------------------------------------------------------------------------- /profiling/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/profiling/server.go -------------------------------------------------------------------------------- /profiling/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/profiling/server_test.go -------------------------------------------------------------------------------- /ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/ptr/doc.go -------------------------------------------------------------------------------- /ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/ptr/ptr.go -------------------------------------------------------------------------------- /ptr/ptr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/ptr/ptr_test.go -------------------------------------------------------------------------------- /ptr/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/ptr/value.go -------------------------------------------------------------------------------- /ptr/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/ptr/value_test.go -------------------------------------------------------------------------------- /reconciler/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/OWNERS -------------------------------------------------------------------------------- /reconciler/configstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/configstore.go -------------------------------------------------------------------------------- /reconciler/deletion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/deletion.go -------------------------------------------------------------------------------- /reconciler/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/events.go -------------------------------------------------------------------------------- /reconciler/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/events_test.go -------------------------------------------------------------------------------- /reconciler/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/filter.go -------------------------------------------------------------------------------- /reconciler/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/filter_test.go -------------------------------------------------------------------------------- /reconciler/leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/leader.go -------------------------------------------------------------------------------- /reconciler/leader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/leader_test.go -------------------------------------------------------------------------------- /reconciler/reconcile_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/reconcile_common.go -------------------------------------------------------------------------------- /reconciler/reconcile_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/reconcile_common_test.go -------------------------------------------------------------------------------- /reconciler/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/retry.go -------------------------------------------------------------------------------- /reconciler/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/retry_test.go -------------------------------------------------------------------------------- /reconciler/testing/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/actions.go -------------------------------------------------------------------------------- /reconciler/testing/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/actions_test.go -------------------------------------------------------------------------------- /reconciler/testing/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/context.go -------------------------------------------------------------------------------- /reconciler/testing/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/events.go -------------------------------------------------------------------------------- /reconciler/testing/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/hooks.go -------------------------------------------------------------------------------- /reconciler/testing/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/hooks_test.go -------------------------------------------------------------------------------- /reconciler/testing/reactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/reactions.go -------------------------------------------------------------------------------- /reconciler/testing/reactions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/reactions_test.go -------------------------------------------------------------------------------- /reconciler/testing/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/sorter.go -------------------------------------------------------------------------------- /reconciler/testing/sorter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/sorter_test.go -------------------------------------------------------------------------------- /reconciler/testing/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/table.go -------------------------------------------------------------------------------- /reconciler/testing/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/tracker.go -------------------------------------------------------------------------------- /reconciler/testing/tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/tracker_test.go -------------------------------------------------------------------------------- /reconciler/testing/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/reconciler/testing/util.go -------------------------------------------------------------------------------- /resolver/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/resolver/OWNERS -------------------------------------------------------------------------------- /resolver/addressable_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/resolver/addressable_resolver.go -------------------------------------------------------------------------------- /resolver/addressable_resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/resolver/addressable_resolver_test.go -------------------------------------------------------------------------------- /resolver/authenticatable_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/resolver/authenticatable_resolver.go -------------------------------------------------------------------------------- /resolver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/resolver/doc.go -------------------------------------------------------------------------------- /signals/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/signals/signal.go -------------------------------------------------------------------------------- /signals/signal_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/signals/signal_posix.go -------------------------------------------------------------------------------- /signals/signal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/signals/signal_windows.go -------------------------------------------------------------------------------- /source/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/source/OWNERS -------------------------------------------------------------------------------- /source/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/source/doc.go -------------------------------------------------------------------------------- /source/source_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/source/source_labels.go -------------------------------------------------------------------------------- /source/source_labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/source/source_labels_test.go -------------------------------------------------------------------------------- /system/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/system/env.go -------------------------------------------------------------------------------- /system/testing/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/system/testing/names.go -------------------------------------------------------------------------------- /test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/OWNERS -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/README.md -------------------------------------------------------------------------------- /test/ci/ci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/ci/ci.go -------------------------------------------------------------------------------- /test/ci/ci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/ci/ci_test.go -------------------------------------------------------------------------------- /test/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/cleanup.go -------------------------------------------------------------------------------- /test/cleanup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/cleanup_test.go -------------------------------------------------------------------------------- /test/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/clients.go -------------------------------------------------------------------------------- /test/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/crd.go -------------------------------------------------------------------------------- /test/e2e_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/e2e_flags.go -------------------------------------------------------------------------------- /test/environment/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/environment/config.go -------------------------------------------------------------------------------- /test/ha/ha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/ha/ha.go -------------------------------------------------------------------------------- /test/ha/ha_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/ha/ha_test.go -------------------------------------------------------------------------------- /test/helpers/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/helpers/dir.go -------------------------------------------------------------------------------- /test/helpers/dryrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/helpers/dryrun.go -------------------------------------------------------------------------------- /test/helpers/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/helpers/error.go -------------------------------------------------------------------------------- /test/helpers/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/helpers/name.go -------------------------------------------------------------------------------- /test/helpers/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/helpers/name_test.go -------------------------------------------------------------------------------- /test/imports/banned_deps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/imports/banned_deps_test.go -------------------------------------------------------------------------------- /test/ingress/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/ingress/ingress.go -------------------------------------------------------------------------------- /test/kube_checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/kube_checks.go -------------------------------------------------------------------------------- /test/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logging/logging.go -------------------------------------------------------------------------------- /test/logstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/README.md -------------------------------------------------------------------------------- /test/logstream/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/doc.go -------------------------------------------------------------------------------- /test/logstream/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/interface.go -------------------------------------------------------------------------------- /test/logstream/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/null.go -------------------------------------------------------------------------------- /test/logstream/v2/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/v2/interface.go -------------------------------------------------------------------------------- /test/logstream/v2/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/v2/stream.go -------------------------------------------------------------------------------- /test/logstream/v2/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/logstream/v2/stream_test.go -------------------------------------------------------------------------------- /test/migrate/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/migrate/checks.go -------------------------------------------------------------------------------- /test/monitoring/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/monitoring/doc.go -------------------------------------------------------------------------------- /test/monitoring/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/monitoring/monitoring.go -------------------------------------------------------------------------------- /test/presubmit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/presubmit-tests.sh -------------------------------------------------------------------------------- /test/prow/prow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/prow/prow.go -------------------------------------------------------------------------------- /test/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/request.go -------------------------------------------------------------------------------- /test/security/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/security/security.go -------------------------------------------------------------------------------- /test/spoof/error_checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/spoof/error_checks.go -------------------------------------------------------------------------------- /test/spoof/error_checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/spoof/error_checks_test.go -------------------------------------------------------------------------------- /test/spoof/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/spoof/request.go -------------------------------------------------------------------------------- /test/spoof/response_checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/spoof/response_checks.go -------------------------------------------------------------------------------- /test/spoof/spoof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/spoof/spoof.go -------------------------------------------------------------------------------- /test/spoof/spoof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/spoof/spoof_test.go -------------------------------------------------------------------------------- /test/test-reconciler-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/test-reconciler-codegen.sh -------------------------------------------------------------------------------- /test/tinterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/tinterface.go -------------------------------------------------------------------------------- /test/upgrade/asserts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/asserts_test.go -------------------------------------------------------------------------------- /test/upgrade/execute_failures_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/execute_failures_test.go -------------------------------------------------------------------------------- /test/upgrade/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/functions.go -------------------------------------------------------------------------------- /test/upgrade/functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/functions_test.go -------------------------------------------------------------------------------- /test/upgrade/private_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/private_types.go -------------------------------------------------------------------------------- /test/upgrade/shell/assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/assertions_test.go -------------------------------------------------------------------------------- /test/upgrade/shell/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/executor.go -------------------------------------------------------------------------------- /test/upgrade/shell/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/executor_test.go -------------------------------------------------------------------------------- /test/upgrade/shell/fail-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/fail-example.sh -------------------------------------------------------------------------------- /test/upgrade/shell/prefixer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/prefixer.go -------------------------------------------------------------------------------- /test/upgrade/shell/prefixer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/prefixer_test.go -------------------------------------------------------------------------------- /test/upgrade/shell/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/project.go -------------------------------------------------------------------------------- /test/upgrade/shell/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/project_test.go -------------------------------------------------------------------------------- /test/upgrade/shell/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/shell/types.go -------------------------------------------------------------------------------- /test/upgrade/steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/steps.go -------------------------------------------------------------------------------- /test/upgrade/suite_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/suite_examples_test.go -------------------------------------------------------------------------------- /test/upgrade/suite_execution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/suite_execution.go -------------------------------------------------------------------------------- /test/upgrade/testing_operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/testing_operations_test.go -------------------------------------------------------------------------------- /test/upgrade/testing_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/testing_types_test.go -------------------------------------------------------------------------------- /test/upgrade/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/types.go -------------------------------------------------------------------------------- /test/upgrade/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/upgrade/vars.go -------------------------------------------------------------------------------- /test/vegeta/pacers/combined_pacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/vegeta/pacers/combined_pacer.go -------------------------------------------------------------------------------- /test/vegeta/pacers/steady_up_pacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/test/vegeta/pacers/steady_up_pacer.go -------------------------------------------------------------------------------- /testing/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/doc.go -------------------------------------------------------------------------------- /testing/duck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/duck/doc.go -------------------------------------------------------------------------------- /testing/duck/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/duck/register.go -------------------------------------------------------------------------------- /testing/duck/testbindable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/duck/testbindable.go -------------------------------------------------------------------------------- /testing/duck/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/duck/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /testing/inner_default_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/inner_default_resource.go -------------------------------------------------------------------------------- /testing/inner_default_resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/inner_default_resource_test.go -------------------------------------------------------------------------------- /testing/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/register.go -------------------------------------------------------------------------------- /testing/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/resource.go -------------------------------------------------------------------------------- /testing/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/testing/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /tracker/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/tracker/doc.go -------------------------------------------------------------------------------- /tracker/enqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/tracker/enqueue.go -------------------------------------------------------------------------------- /tracker/enqueue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/tracker/enqueue_test.go -------------------------------------------------------------------------------- /tracker/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/tracker/interface.go -------------------------------------------------------------------------------- /tracker/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/tracker/interface_test.go -------------------------------------------------------------------------------- /tracker/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/tracker/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /unstructured/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/unstructured/unstructured.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/blang/semver/v4/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /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/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/zapr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /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/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/influxdata/tdigest/.gitignore: -------------------------------------------------------------------------------- 1 | /test/*.dat* 2 | -------------------------------------------------------------------------------- /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/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | *.swp 6 | bin/* 7 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/mailru/easyjson/raw.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/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/rs/dnscache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/rs/dnscache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/dnscache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/rs/dnscache/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/github.com/x448/float16/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.uber.org/automaxprocs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/automaxprocs/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/clock.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zaptest/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zaptest/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.uber.org/zap/zaptest/writer.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/mod/module/pseudo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2c/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/h2c/h2c.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/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/knative/pkg/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/resource/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/resource/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/client-go/listers/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/code-generator/README.md -------------------------------------------------------------------------------- /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/knative/pkg/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/code-generator/tools.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/parser/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/gengo/v2/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/knative.dev/hack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/LICENSE -------------------------------------------------------------------------------- /vendor/knative.dev/hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/README.md -------------------------------------------------------------------------------- /vendor/knative.dev/hack/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/SECURITY.md -------------------------------------------------------------------------------- /vendor/knative.dev/hack/e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/e2e-tests.sh -------------------------------------------------------------------------------- /vendor/knative.dev/hack/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/embed.go -------------------------------------------------------------------------------- /vendor/knative.dev/hack/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/go.work -------------------------------------------------------------------------------- /vendor/knative.dev/hack/go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/go.work.sum -------------------------------------------------------------------------------- /vendor/knative.dev/hack/library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/library.sh -------------------------------------------------------------------------------- /vendor/knative.dev/hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/knative.dev/hack/release.sh -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/randfill/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/version/version.go -------------------------------------------------------------------------------- /version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/version/version_test.go -------------------------------------------------------------------------------- /webhook/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/OWNERS -------------------------------------------------------------------------------- /webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/README.md -------------------------------------------------------------------------------- /webhook/admission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/admission.go -------------------------------------------------------------------------------- /webhook/admission_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/admission_integration_test.go -------------------------------------------------------------------------------- /webhook/certificates/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/certificates/certificates.go -------------------------------------------------------------------------------- /webhook/certificates/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/certificates/controller.go -------------------------------------------------------------------------------- /webhook/configmaps/configmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/configmaps/configmaps.go -------------------------------------------------------------------------------- /webhook/configmaps/configmaps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/configmaps/configmaps_test.go -------------------------------------------------------------------------------- /webhook/configmaps/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/configmaps/controller.go -------------------------------------------------------------------------------- /webhook/configmaps/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/configmaps/table_test.go -------------------------------------------------------------------------------- /webhook/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/context.go -------------------------------------------------------------------------------- /webhook/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/conversion.go -------------------------------------------------------------------------------- /webhook/conversion_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/conversion_integration_test.go -------------------------------------------------------------------------------- /webhook/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/env.go -------------------------------------------------------------------------------- /webhook/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/env_test.go -------------------------------------------------------------------------------- /webhook/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/helper.go -------------------------------------------------------------------------------- /webhook/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/helper_test.go -------------------------------------------------------------------------------- /webhook/json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/json/decode.go -------------------------------------------------------------------------------- /webhook/json/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/json/decode_test.go -------------------------------------------------------------------------------- /webhook/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/metrics.go -------------------------------------------------------------------------------- /webhook/psbinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/README.md -------------------------------------------------------------------------------- /webhook/psbinding/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/controller.go -------------------------------------------------------------------------------- /webhook/psbinding/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/doc.go -------------------------------------------------------------------------------- /webhook/psbinding/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/index.go -------------------------------------------------------------------------------- /webhook/psbinding/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/index_test.go -------------------------------------------------------------------------------- /webhook/psbinding/psbinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/psbinding.go -------------------------------------------------------------------------------- /webhook/psbinding/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/reconciler.go -------------------------------------------------------------------------------- /webhook/psbinding/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/psbinding/table_test.go -------------------------------------------------------------------------------- /webhook/resourcesemantics/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/resourcesemantics/interface.go -------------------------------------------------------------------------------- /webhook/testing/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/testing/factory.go -------------------------------------------------------------------------------- /webhook/testing/listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/testing/listers.go -------------------------------------------------------------------------------- /webhook/testing/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/testing/testing.go -------------------------------------------------------------------------------- /webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/webhook.go -------------------------------------------------------------------------------- /webhook/webhook_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/webhook_integration_test.go -------------------------------------------------------------------------------- /webhook/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/webhook/webhook_test.go -------------------------------------------------------------------------------- /websocket/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/websocket/connection.go -------------------------------------------------------------------------------- /websocket/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/websocket/connection_test.go -------------------------------------------------------------------------------- /websocket/hijack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/websocket/hijack.go -------------------------------------------------------------------------------- /websocket/hijack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/pkg/HEAD/websocket/hijack_test.go --------------------------------------------------------------------------------