├── .ci-operator.yaml ├── .gitignore ├── .golangci.yaml ├── .snyk ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── PROJECT ├── README.md ├── api └── operator │ └── v1alpha1 │ ├── certmanager_types.go │ ├── conditions.go │ ├── conditions_test.go │ ├── doc.go │ ├── features.go │ ├── groupversion_info.go │ ├── istiocsr_types.go │ ├── istiocsr_types_test.go │ ├── meta.go │ └── zz_generated.deepcopy.go ├── bindata ├── cert-manager-deployment │ ├── cainjector │ │ ├── cert-manager-cainjector-cr.yaml │ │ ├── cert-manager-cainjector-crb.yaml │ │ ├── cert-manager-cainjector-deployment.yaml │ │ ├── cert-manager-cainjector-leaderelection-rb.yaml │ │ ├── cert-manager-cainjector-leaderelection-role.yaml │ │ ├── cert-manager-cainjector-sa.yaml │ │ └── cert-manager-cainjector-svc.yaml │ ├── cert-manager-namespace.yaml │ ├── cert-manager │ │ ├── cert-manager-controller-approve-cert-manager-io-cr.yaml │ │ ├── cert-manager-controller-approve-cert-manager-io-crb.yaml │ │ ├── cert-manager-controller-certificatesigningrequests-cr.yaml │ │ └── cert-manager-controller-certificatesigningrequests-crb.yaml │ ├── controller │ │ ├── cert-manager-cert-manager-tokenrequest-rb.yaml │ │ ├── cert-manager-cluster-view-cr.yaml │ │ ├── cert-manager-controller-certificates-cr.yaml │ │ ├── cert-manager-controller-certificates-crb.yaml │ │ ├── cert-manager-controller-challenges-cr.yaml │ │ ├── cert-manager-controller-challenges-crb.yaml │ │ ├── cert-manager-controller-clusterissuers-cr.yaml │ │ ├── cert-manager-controller-clusterissuers-crb.yaml │ │ ├── cert-manager-controller-ingress-shim-cr.yaml │ │ ├── cert-manager-controller-ingress-shim-crb.yaml │ │ ├── cert-manager-controller-issuers-cr.yaml │ │ ├── cert-manager-controller-issuers-crb.yaml │ │ ├── cert-manager-controller-orders-cr.yaml │ │ ├── cert-manager-controller-orders-crb.yaml │ │ ├── cert-manager-deployment.yaml │ │ ├── cert-manager-edit-cr.yaml │ │ ├── cert-manager-leaderelection-rb.yaml │ │ ├── cert-manager-leaderelection-role.yaml │ │ ├── cert-manager-sa.yaml │ │ ├── cert-manager-svc.yaml │ │ ├── cert-manager-tokenrequest-role.yaml │ │ └── cert-manager-view-cr.yaml │ └── webhook │ │ ├── cert-manager-webhook-deployment.yaml │ │ ├── cert-manager-webhook-dynamic-serving-rb.yaml │ │ ├── cert-manager-webhook-dynamic-serving-role.yaml │ │ ├── cert-manager-webhook-mutatingwebhookconfiguration.yaml │ │ ├── cert-manager-webhook-sa.yaml │ │ ├── cert-manager-webhook-subjectaccessreviews-cr.yaml │ │ ├── cert-manager-webhook-subjectaccessreviews-crb.yaml │ │ ├── cert-manager-webhook-svc.yaml │ │ └── cert-manager-webhook-validatingwebhookconfiguration.yaml ├── istio-csr │ ├── cert-manager-istio-csr-clusterrole.yaml │ ├── cert-manager-istio-csr-clusterrolebinding.yaml │ ├── cert-manager-istio-csr-deployment.yaml │ ├── cert-manager-istio-csr-leases-role.yaml │ ├── cert-manager-istio-csr-leases-rolebinding.yaml │ ├── cert-manager-istio-csr-metrics-service.yaml │ ├── cert-manager-istio-csr-role.yaml │ ├── cert-manager-istio-csr-rolebinding.yaml │ ├── cert-manager-istio-csr-service.yaml │ ├── cert-manager-istio-csr-serviceaccount.yaml │ └── istiod-certificate.yaml └── networkpolicies │ ├── cert-manager-allow-egress-to-api-server-networkpolicy.yaml │ ├── cert-manager-allow-egress-to-dns-networkpolicy.yaml │ ├── cert-manager-allow-ingress-to-metrics-networkpolicy.yaml │ ├── cert-manager-allow-ingress-to-webhook-networkpolicy.yaml │ ├── cert-manager-deny-all-networkpolicy.yaml │ ├── istio-csr-allow-egress-to-api-server-networkpolicy.yaml │ ├── istio-csr-allow-ingress-to-grpc-networkpolicy.yaml │ ├── istio-csr-allow-ingress-to-metrics-networkpolicy.yaml │ └── istio-csr-deny-all-networkpolicy.yaml ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── acme.cert-manager.io_challenges.yaml │ ├── acme.cert-manager.io_orders.yaml │ ├── cert-manager-operator-controller-manager-metrics-service_v1_service.yaml │ ├── cert-manager-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── cert-manager-operator.clusterserviceversion.yaml │ ├── cert-manager.io_certificaterequests.yaml │ ├── cert-manager.io_certificates.yaml │ ├── cert-manager.io_clusterissuers.yaml │ ├── cert-manager.io_issuers.yaml │ ├── operator.openshift.io_certmanagers.yaml │ └── operator.openshift.io_istiocsrs.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── config ├── crd │ ├── bases │ │ ├── certificaterequests.cert-manager.io-crd.yaml │ │ ├── certificates.cert-manager.io-crd.yaml │ │ ├── challenges.acme.cert-manager.io-crd.yaml │ │ ├── clusterissuers.cert-manager.io-crd.yaml │ │ ├── config.openshift.io_certmanagers.yaml │ │ ├── issuers.cert-manager.io-crd.yaml │ │ ├── operator.openshift.io_certmanagers.yaml │ │ ├── operator.openshift.io_istiocsrs.yaml │ │ └── orders.acme.cert-manager.io-crd.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_certmanagers.yaml │ │ └── webhook_in_certmanagers.yaml ├── default │ └── kustomization.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── cert-manager-operator.clusterserviceversion.yaml │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── certmanager_editor_role.yaml │ ├── certmanager_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── kustomization.yaml │ ├── letsencrypt │ │ ├── cert-manager.io_v1_certificate.yaml │ │ ├── cert-manager.io_v1_issuer.yaml │ │ ├── extra │ │ │ ├── acme.cert-manager.io_v1_challenge.yaml │ │ │ ├── acme.cert-manager.io_v1_order.yaml │ │ │ ├── cert-manager.io_v1_certificaterequest.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── operator.openshift.io_v1alpha1_certmanager.yaml │ ├── selfsigned │ │ ├── cert-manager.io_v1_certificate.yaml │ │ ├── cert-manager.io_v1_clusterissuer.yaml │ │ ├── cert-manager.io_v1_issuer.yaml │ │ └── kustomization.yaml │ └── tech-preview │ │ ├── kustomization.yaml │ │ └── operator.openshift.io_v1alpha1_istiocsr.yaml └── scorecard │ ├── bases │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ ├── basic.config.yaml │ └── olm.config.yaml ├── deploy └── examples │ ├── cluster-cert-manager-overrides.yaml │ ├── cluster-cert-manager-with-overrides.yaml │ └── cluster-cert-manager.yaml ├── docs ├── OWNERS ├── cloud_credentials.md ├── operand_metrics.md └── proxy.md ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── empty.txt ├── go-fips.sh ├── helm.sh ├── lib │ ├── init.sh │ └── yq.sh ├── local-run-config.yaml ├── operator-sdk.sh ├── typelinter │ └── typelinter.go ├── update-cert-manager-manifests.sh ├── update-clientgen.sh ├── update-deps.sh ├── update-istio-csr-manifests.sh ├── update-protobuf.sh ├── update-swagger-docs.sh ├── verify-bundle.sh ├── verify-clientgen.sh ├── verify-crds-version-upgrade.sh ├── verify-crds.sh ├── verify-deepcopy.sh ├── verify-deps.sh ├── verify-protobuf.sh ├── verify-swagger-docs.sh └── verify-types.sh ├── images └── ci │ ├── Dockerfile │ └── operand.Dockerfile ├── jsonnet └── main.jsonnet ├── main.go ├── pkg ├── cmd │ └── operator │ │ └── cmd.go ├── controller │ ├── deployment │ │ ├── cert_manager_cainjector_deployment.go │ │ ├── cert_manager_controller_deployment.go │ │ ├── cert_manager_controller_set.go │ │ ├── cert_manager_networkpolicy.go │ │ ├── cert_manager_webhook_deployment.go │ │ ├── certmanager_controller.go │ │ ├── common.go │ │ ├── credentials_request.go │ │ ├── default_cert_manager_controller.go │ │ ├── deployment_helper.go │ │ ├── deployment_helper_test.go │ │ ├── deployment_log_level.go │ │ ├── deployment_overrides.go │ │ ├── deployment_overrides_test.go │ │ ├── deployment_overrides_validation.go │ │ ├── deployment_overrides_validation_test.go │ │ ├── deployment_unsupported_overrides.go │ │ ├── generic_deployment_controller.go │ │ ├── related_images.go │ │ └── related_images_test.go │ └── istiocsr │ │ ├── OWNERS │ │ ├── certificates.go │ │ ├── certificates_test.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── core_validation_helpers_duplication.go │ │ ├── deployments.go │ │ ├── deployments_test.go │ │ ├── errors.go │ │ ├── fakes │ │ └── fake_ctrl_client.go │ │ ├── install_instiocsr_test.go │ │ ├── install_istiocsr.go │ │ ├── networkpolicies.go │ │ ├── rbacs.go │ │ ├── rbacs_test.go │ │ ├── serviceaccounts.go │ │ ├── serviceaccounts_test.go │ │ ├── services.go │ │ ├── services_test.go │ │ ├── test_utils.go │ │ └── utils.go ├── dependencymagnet │ └── dependencymagnet.go ├── features │ ├── features.go │ └── features_test.go ├── operator │ ├── applyconfigurations │ │ ├── internal │ │ │ └── internal.go │ │ ├── operator │ │ │ └── v1alpha1 │ │ │ │ ├── certmanager.go │ │ │ │ ├── certmanagerconfig.go │ │ │ │ ├── certmanagerresourcerequirements.go │ │ │ │ ├── certmanagerscheduling.go │ │ │ │ ├── certmanagerspec.go │ │ │ │ ├── certmanagerstatus.go │ │ │ │ ├── conditionalstatus.go │ │ │ │ ├── configmapreference.go │ │ │ │ ├── controllerconfig.go │ │ │ │ ├── deploymentconfig.go │ │ │ │ ├── istioconfig.go │ │ │ │ ├── istiocsr.go │ │ │ │ ├── istiocsrconfig.go │ │ │ │ ├── istiocsrspec.go │ │ │ │ ├── istiocsrstatus.go │ │ │ │ ├── istiodtlsconfig.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── serverconfig.go │ │ └── utils.go │ ├── assets │ │ └── bindata.go │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── operator │ │ │ └── v1alpha1 │ │ │ ├── certmanager.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_certmanager.go │ │ │ ├── fake_istiocsr.go │ │ │ └── fake_operator_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── istiocsr.go │ │ │ └── operator_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── operator │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── certmanager.go │ │ │ ├── interface.go │ │ │ └── istiocsr.go │ ├── listers │ │ └── operator │ │ │ └── v1alpha1 │ │ │ ├── certmanager.go │ │ │ ├── expansion_generated.go │ │ │ └── istiocsr.go │ ├── operatorclient │ │ ├── interfaces.go │ │ └── operatorclient.go │ ├── optionalinformer │ │ ├── optional_informer.go │ │ └── optional_informer_test.go │ ├── setup_manager.go │ └── starter.go └── version │ └── version.go ├── test ├── OWNERS ├── e2e │ ├── condition_matcher_test.go │ ├── condition_matcher_unit_test.go │ ├── config_template.go │ ├── issuer_acme_dns01_test.go │ ├── issuer_acme_http01_test.go │ ├── issuer_selfsigned_ca_test.go │ ├── issuer_vault_test.go │ ├── istio_csr_test.go │ ├── overrides_test.go │ ├── suite_test.go │ ├── testdata │ │ ├── acme │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ ├── credentials │ │ │ ├── credentialsrequest_aws.yaml │ │ │ └── credentialsrequest_gcp.yaml │ │ ├── istio │ │ │ ├── grpcurl_job.yaml │ │ │ ├── grpcurl_job_with_cluster_id.yaml │ │ │ ├── istio_ca_issuer.yaml │ │ │ ├── istio_csr_template.yaml │ │ │ └── istiocsr_with_ca_certificate_template.yaml │ │ ├── self_signed │ │ │ ├── ca_issued_certificate.yaml │ │ │ ├── certificate.yaml │ │ │ ├── cluster_issuer.yaml │ │ │ └── issuer.yaml │ │ └── vault │ │ │ └── helm-values.yaml │ └── utils_test.go └── library │ ├── cert_utils.go │ ├── dynamic_resources.go │ ├── istiocsr.go │ ├── kube_client.go │ └── utils.go ├── tools └── tools.go └── vendor ├── 4d63.com └── gochecknoglobals │ ├── LICENSE │ └── checknoglobals │ └── check_no_globals.go ├── cel.dev └── expr │ ├── .bazelversion │ ├── .gitattributes │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── checked.pb.go │ ├── cloudbuild.yaml │ ├── eval.pb.go │ ├── explain.pb.go │ ├── regen_go_proto.sh │ ├── regen_go_proto_canonical_protos.sh │ ├── syntax.pb.go │ └── value.pb.go ├── cloud.google.com └── go │ ├── auth │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── credentials │ │ ├── compute.go │ │ ├── detect.go │ │ ├── doc.go │ │ ├── filetypes.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws_provider.go │ │ │ │ ├── executable_provider.go │ │ │ │ ├── externalaccount.go │ │ │ │ ├── file_provider.go │ │ │ │ ├── info.go │ │ │ │ ├── programmatic_provider.go │ │ │ │ ├── url_provider.go │ │ │ │ └── x509_provider.go │ │ │ ├── externalaccountuser │ │ │ │ └── externalaccountuser.go │ │ │ ├── gdch │ │ │ │ └── gdch.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── httptransport │ │ ├── httptransport.go │ │ ├── trace.go │ │ └── transport.go │ ├── internal │ │ ├── credsfile │ │ │ ├── credsfile.go │ │ │ ├── filetype.go │ │ │ └── parse.go │ │ ├── internal.go │ │ ├── jwt │ │ │ └── jwt.go │ │ └── transport │ │ │ ├── cba.go │ │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ ├── secureconnect_cert.go │ │ │ └── workload_cert.go │ │ │ ├── s2a.go │ │ │ └── transport.go │ ├── oauth2adapt │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ └── oauth2adapt.go │ └── threelegged.go │ └── compute │ └── metadata │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── metadata.go │ ├── retry.go │ ├── retry_linux.go │ ├── syscheck.go │ ├── syscheck_linux.go │ └── syscheck_windows.go ├── github.com ├── Abirdcfly │ └── dupword │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dupword.go │ │ └── version.go ├── Antonboom │ ├── errname │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ ├── analyzer.go │ │ │ └── facts.go │ └── nilnil │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ ├── config.go │ │ └── func_type_stack.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── decode_go116.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── Djarvur │ └── go-err113 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.adoc │ │ ├── comparison.go │ │ ├── definition.go │ │ └── err113.go ├── GaijinEntertainment │ └── go-exhaustruct │ │ └── v2 │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ ├── patterns-list.go │ │ └── struct-fields.go ├── Masterminds │ └── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ ├── version.go │ │ └── version_fuzz.go ├── NYTimes │ └── gziphandler │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gzip.go │ │ └── gzip_go18.go ├── OpenPeeDeeP │ └── depguard │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── depguard.go ├── alexkohler │ └── prealloc │ │ ├── LICENSE │ │ └── pkg │ │ └── prealloc.go ├── alingse │ └── asasalint │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── asasalint.go ├── antlr4-go │ └── antlr │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── antlrdoc.go │ │ ├── atn.go │ │ ├── atn_config.go │ │ ├── atn_config_set.go │ │ ├── atn_deserialization_options.go │ │ ├── atn_deserializer.go │ │ ├── atn_simulator.go │ │ ├── atn_state.go │ │ ├── atn_type.go │ │ ├── char_stream.go │ │ ├── common_token_factory.go │ │ ├── common_token_stream.go │ │ ├── comparators.go │ │ ├── configuration.go │ │ ├── dfa.go │ │ ├── dfa_serializer.go │ │ ├── dfa_state.go │ │ ├── diagnostic_error_listener.go │ │ ├── error_listener.go │ │ ├── error_strategy.go │ │ ├── errors.go │ │ ├── file_stream.go │ │ ├── input_stream.go │ │ ├── int_stream.go │ │ ├── interval_set.go │ │ ├── jcollect.go │ │ ├── lexer.go │ │ ├── lexer_action.go │ │ ├── lexer_action_executor.go │ │ ├── lexer_atn_simulator.go │ │ ├── ll1_analyzer.go │ │ ├── mutex.go │ │ ├── mutex_nomutex.go │ │ ├── nostatistics.go │ │ ├── parser.go │ │ ├── parser_atn_simulator.go │ │ ├── parser_rule_context.go │ │ ├── prediction_context.go │ │ ├── prediction_context_cache.go │ │ ├── prediction_mode.go │ │ ├── recognizer.go │ │ ├── rule_context.go │ │ ├── semantic_context.go │ │ ├── statistics.go │ │ ├── stats_data.go │ │ ├── token.go │ │ ├── token_source.go │ │ ├── token_stream.go │ │ ├── tokenstream_rewriter.go │ │ ├── trace_listener.go │ │ ├── transition.go │ │ ├── tree.go │ │ ├── trees.go │ │ └── utils.go ├── ashanbrown │ ├── forbidigo │ │ ├── LICENSE │ │ └── forbidigo │ │ │ ├── config_options.go │ │ │ ├── forbidigo.go │ │ │ └── patterns.go │ └── makezero │ │ ├── LICENSE │ │ └── makezero │ │ └── makezero.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ │ ├── accountid_endpoint_mode.go │ │ │ ├── checksum.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── credential_cache.go │ │ │ ├── credentials.go │ │ │ ├── defaults │ │ │ │ ├── auto.go │ │ │ │ ├── configuration.go │ │ │ │ ├── defaults.go │ │ │ │ └── doc.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── errors.go │ │ │ ├── from_ptr.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logging.go │ │ │ ├── logging_generate.go │ │ │ ├── middleware │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── osname.go │ │ │ │ ├── osname_go115.go │ │ │ │ ├── recursion_detection.go │ │ │ │ ├── request_id.go │ │ │ │ ├── request_id_retriever.go │ │ │ │ └── user_agent.go │ │ │ ├── protocol │ │ │ │ ├── query │ │ │ │ │ ├── array.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── object.go │ │ │ │ │ └── value.go │ │ │ │ ├── restjson │ │ │ │ │ └── decoder_util.go │ │ │ │ └── xml │ │ │ │ │ └── error_utils.go │ │ │ ├── ratelimit │ │ │ │ ├── none.go │ │ │ │ ├── token_bucket.go │ │ │ │ └── token_rate_limit.go │ │ │ ├── request.go │ │ │ ├── retry │ │ │ │ ├── adaptive.go │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ ├── attempt_metrics.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── jitter_backoff.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── retry.go │ │ │ │ ├── retryable_error.go │ │ │ │ ├── standard.go │ │ │ │ ├── throttle_error.go │ │ │ │ └── timeout_error.go │ │ │ ├── retryer.go │ │ │ ├── runtime.go │ │ │ ├── signer │ │ │ │ ├── internal │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ ├── to_ptr.go │ │ │ ├── transport │ │ │ │ └── http │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ ├── types.go │ │ │ └── version.go │ │ ├── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── config.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── generate.go │ │ │ ├── go_module_metadata.go │ │ │ ├── load_options.go │ │ │ ├── local.go │ │ │ ├── provider.go │ │ │ ├── resolve.go │ │ │ ├── resolve_bearer_token.go │ │ │ ├── resolve_credentials.go │ │ │ └── shared_config.go │ │ ├── credentials │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── doc.go │ │ │ ├── ec2rolecreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── endpointcreds │ │ │ │ ├── internal │ │ │ │ │ └── client │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── middleware.go │ │ │ │ └── provider.go │ │ │ ├── go_module_metadata.go │ │ │ ├── processcreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ └── sso_token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── feature │ │ │ └── ec2 │ │ │ │ └── imds │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ ├── api_op_GetToken.go │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ ├── auth.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ └── config │ │ │ │ │ └── resolvers.go │ │ │ │ ├── request_middleware.go │ │ │ │ └── token_provider.go │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── scheme.go │ │ │ │ └── smithy │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.go │ │ │ ├── configsources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ ├── endpoints.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── context │ │ │ │ └── context.go │ │ │ ├── endpoints │ │ │ │ ├── awsrulesfn │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── partitions.go │ │ │ │ │ └── partitions.json │ │ │ │ ├── endpoints.go │ │ │ │ └── v2 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ ├── ini │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── errors.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── ini.go │ │ │ │ ├── parse.go │ │ │ │ ├── sections.go │ │ │ │ ├── strings.go │ │ │ │ ├── token.go │ │ │ │ ├── tokenize.go │ │ │ │ └── value.go │ │ │ ├── middleware │ │ │ │ └── middleware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── sdk │ │ │ │ ├── interfaces.go │ │ │ │ └── time.go │ │ │ ├── sdkio │ │ │ │ └── byte.go │ │ │ ├── shareddefaults │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ ├── sync │ │ │ │ └── singleflight │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── docs.go │ │ │ │ │ └── singleflight.go │ │ │ └── timeconv │ │ │ │ └── duration.go │ │ └── service │ │ │ ├── iam │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AcceptDelegationRequest.go │ │ │ ├── api_op_AddClientIDToOpenIDConnectProvider.go │ │ │ ├── api_op_AddRoleToInstanceProfile.go │ │ │ ├── api_op_AddUserToGroup.go │ │ │ ├── api_op_AssociateDelegationRequest.go │ │ │ ├── api_op_AttachGroupPolicy.go │ │ │ ├── api_op_AttachRolePolicy.go │ │ │ ├── api_op_AttachUserPolicy.go │ │ │ ├── api_op_ChangePassword.go │ │ │ ├── api_op_CreateAccessKey.go │ │ │ ├── api_op_CreateAccountAlias.go │ │ │ ├── api_op_CreateDelegationRequest.go │ │ │ ├── api_op_CreateGroup.go │ │ │ ├── api_op_CreateInstanceProfile.go │ │ │ ├── api_op_CreateLoginProfile.go │ │ │ ├── api_op_CreateOpenIDConnectProvider.go │ │ │ ├── api_op_CreatePolicy.go │ │ │ ├── api_op_CreatePolicyVersion.go │ │ │ ├── api_op_CreateRole.go │ │ │ ├── api_op_CreateSAMLProvider.go │ │ │ ├── api_op_CreateServiceLinkedRole.go │ │ │ ├── api_op_CreateServiceSpecificCredential.go │ │ │ ├── api_op_CreateUser.go │ │ │ ├── api_op_CreateVirtualMFADevice.go │ │ │ ├── api_op_DeactivateMFADevice.go │ │ │ ├── api_op_DeleteAccessKey.go │ │ │ ├── api_op_DeleteAccountAlias.go │ │ │ ├── api_op_DeleteAccountPasswordPolicy.go │ │ │ ├── api_op_DeleteGroup.go │ │ │ ├── api_op_DeleteGroupPolicy.go │ │ │ ├── api_op_DeleteInstanceProfile.go │ │ │ ├── api_op_DeleteLoginProfile.go │ │ │ ├── api_op_DeleteOpenIDConnectProvider.go │ │ │ ├── api_op_DeletePolicy.go │ │ │ ├── api_op_DeletePolicyVersion.go │ │ │ ├── api_op_DeleteRole.go │ │ │ ├── api_op_DeleteRolePermissionsBoundary.go │ │ │ ├── api_op_DeleteRolePolicy.go │ │ │ ├── api_op_DeleteSAMLProvider.go │ │ │ ├── api_op_DeleteSSHPublicKey.go │ │ │ ├── api_op_DeleteServerCertificate.go │ │ │ ├── api_op_DeleteServiceLinkedRole.go │ │ │ ├── api_op_DeleteServiceSpecificCredential.go │ │ │ ├── api_op_DeleteSigningCertificate.go │ │ │ ├── api_op_DeleteUser.go │ │ │ ├── api_op_DeleteUserPermissionsBoundary.go │ │ │ ├── api_op_DeleteUserPolicy.go │ │ │ ├── api_op_DeleteVirtualMFADevice.go │ │ │ ├── api_op_DetachGroupPolicy.go │ │ │ ├── api_op_DetachRolePolicy.go │ │ │ ├── api_op_DetachUserPolicy.go │ │ │ ├── api_op_DisableOrganizationsRootCredentialsManagement.go │ │ │ ├── api_op_DisableOrganizationsRootSessions.go │ │ │ ├── api_op_DisableOutboundWebIdentityFederation.go │ │ │ ├── api_op_EnableMFADevice.go │ │ │ ├── api_op_EnableOrganizationsRootCredentialsManagement.go │ │ │ ├── api_op_EnableOrganizationsRootSessions.go │ │ │ ├── api_op_EnableOutboundWebIdentityFederation.go │ │ │ ├── api_op_GenerateCredentialReport.go │ │ │ ├── api_op_GenerateOrganizationsAccessReport.go │ │ │ ├── api_op_GenerateServiceLastAccessedDetails.go │ │ │ ├── api_op_GetAccessKeyLastUsed.go │ │ │ ├── api_op_GetAccountAuthorizationDetails.go │ │ │ ├── api_op_GetAccountPasswordPolicy.go │ │ │ ├── api_op_GetAccountSummary.go │ │ │ ├── api_op_GetContextKeysForCustomPolicy.go │ │ │ ├── api_op_GetContextKeysForPrincipalPolicy.go │ │ │ ├── api_op_GetCredentialReport.go │ │ │ ├── api_op_GetDelegationRequest.go │ │ │ ├── api_op_GetGroup.go │ │ │ ├── api_op_GetGroupPolicy.go │ │ │ ├── api_op_GetHumanReadableSummary.go │ │ │ ├── api_op_GetInstanceProfile.go │ │ │ ├── api_op_GetLoginProfile.go │ │ │ ├── api_op_GetMFADevice.go │ │ │ ├── api_op_GetOpenIDConnectProvider.go │ │ │ ├── api_op_GetOrganizationsAccessReport.go │ │ │ ├── api_op_GetOutboundWebIdentityFederationInfo.go │ │ │ ├── api_op_GetPolicy.go │ │ │ ├── api_op_GetPolicyVersion.go │ │ │ ├── api_op_GetRole.go │ │ │ ├── api_op_GetRolePolicy.go │ │ │ ├── api_op_GetSAMLProvider.go │ │ │ ├── api_op_GetSSHPublicKey.go │ │ │ ├── api_op_GetServerCertificate.go │ │ │ ├── api_op_GetServiceLastAccessedDetails.go │ │ │ ├── api_op_GetServiceLastAccessedDetailsWithEntities.go │ │ │ ├── api_op_GetServiceLinkedRoleDeletionStatus.go │ │ │ ├── api_op_GetUser.go │ │ │ ├── api_op_GetUserPolicy.go │ │ │ ├── api_op_ListAccessKeys.go │ │ │ ├── api_op_ListAccountAliases.go │ │ │ ├── api_op_ListAttachedGroupPolicies.go │ │ │ ├── api_op_ListAttachedRolePolicies.go │ │ │ ├── api_op_ListAttachedUserPolicies.go │ │ │ ├── api_op_ListDelegationRequests.go │ │ │ ├── api_op_ListEntitiesForPolicy.go │ │ │ ├── api_op_ListGroupPolicies.go │ │ │ ├── api_op_ListGroups.go │ │ │ ├── api_op_ListGroupsForUser.go │ │ │ ├── api_op_ListInstanceProfileTags.go │ │ │ ├── api_op_ListInstanceProfiles.go │ │ │ ├── api_op_ListInstanceProfilesForRole.go │ │ │ ├── api_op_ListMFADeviceTags.go │ │ │ ├── api_op_ListMFADevices.go │ │ │ ├── api_op_ListOpenIDConnectProviderTags.go │ │ │ ├── api_op_ListOpenIDConnectProviders.go │ │ │ ├── api_op_ListOrganizationsFeatures.go │ │ │ ├── api_op_ListPolicies.go │ │ │ ├── api_op_ListPoliciesGrantingServiceAccess.go │ │ │ ├── api_op_ListPolicyTags.go │ │ │ ├── api_op_ListPolicyVersions.go │ │ │ ├── api_op_ListRolePolicies.go │ │ │ ├── api_op_ListRoleTags.go │ │ │ ├── api_op_ListRoles.go │ │ │ ├── api_op_ListSAMLProviderTags.go │ │ │ ├── api_op_ListSAMLProviders.go │ │ │ ├── api_op_ListSSHPublicKeys.go │ │ │ ├── api_op_ListServerCertificateTags.go │ │ │ ├── api_op_ListServerCertificates.go │ │ │ ├── api_op_ListServiceSpecificCredentials.go │ │ │ ├── api_op_ListSigningCertificates.go │ │ │ ├── api_op_ListUserPolicies.go │ │ │ ├── api_op_ListUserTags.go │ │ │ ├── api_op_ListUsers.go │ │ │ ├── api_op_ListVirtualMFADevices.go │ │ │ ├── api_op_PutGroupPolicy.go │ │ │ ├── api_op_PutRolePermissionsBoundary.go │ │ │ ├── api_op_PutRolePolicy.go │ │ │ ├── api_op_PutUserPermissionsBoundary.go │ │ │ ├── api_op_PutUserPolicy.go │ │ │ ├── api_op_RejectDelegationRequest.go │ │ │ ├── api_op_RemoveClientIDFromOpenIDConnectProvider.go │ │ │ ├── api_op_RemoveRoleFromInstanceProfile.go │ │ │ ├── api_op_RemoveUserFromGroup.go │ │ │ ├── api_op_ResetServiceSpecificCredential.go │ │ │ ├── api_op_ResyncMFADevice.go │ │ │ ├── api_op_SendDelegationToken.go │ │ │ ├── api_op_SetDefaultPolicyVersion.go │ │ │ ├── api_op_SetSecurityTokenServicePreferences.go │ │ │ ├── api_op_SimulateCustomPolicy.go │ │ │ ├── api_op_SimulatePrincipalPolicy.go │ │ │ ├── api_op_TagInstanceProfile.go │ │ │ ├── api_op_TagMFADevice.go │ │ │ ├── api_op_TagOpenIDConnectProvider.go │ │ │ ├── api_op_TagPolicy.go │ │ │ ├── api_op_TagRole.go │ │ │ ├── api_op_TagSAMLProvider.go │ │ │ ├── api_op_TagServerCertificate.go │ │ │ ├── api_op_TagUser.go │ │ │ ├── api_op_UntagInstanceProfile.go │ │ │ ├── api_op_UntagMFADevice.go │ │ │ ├── api_op_UntagOpenIDConnectProvider.go │ │ │ ├── api_op_UntagPolicy.go │ │ │ ├── api_op_UntagRole.go │ │ │ ├── api_op_UntagSAMLProvider.go │ │ │ ├── api_op_UntagServerCertificate.go │ │ │ ├── api_op_UntagUser.go │ │ │ ├── api_op_UpdateAccessKey.go │ │ │ ├── api_op_UpdateAccountPasswordPolicy.go │ │ │ ├── api_op_UpdateAssumeRolePolicy.go │ │ │ ├── api_op_UpdateDelegationRequest.go │ │ │ ├── api_op_UpdateGroup.go │ │ │ ├── api_op_UpdateLoginProfile.go │ │ │ ├── api_op_UpdateOpenIDConnectProviderThumbprint.go │ │ │ ├── api_op_UpdateRole.go │ │ │ ├── api_op_UpdateRoleDescription.go │ │ │ ├── api_op_UpdateSAMLProvider.go │ │ │ ├── api_op_UpdateSSHPublicKey.go │ │ │ ├── api_op_UpdateServerCertificate.go │ │ │ ├── api_op_UpdateServiceSpecificCredential.go │ │ │ ├── api_op_UpdateSigningCertificate.go │ │ │ ├── api_op_UpdateUser.go │ │ │ ├── api_op_UploadSSHPublicKey.go │ │ │ ├── api_op_UploadServerCertificate.go │ │ │ ├── api_op_UploadSigningCertificate.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ ├── doc.go │ │ │ │ └── go_module_metadata.go │ │ │ └── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ ├── sso │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ ├── api_op_ListAccountRoles.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_Logout.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ssooidc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateToken.go │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ ├── api_op_RegisterClient.go │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ └── sts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── endpoints │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ ├── errors.go │ │ │ └── types.go │ │ │ └── validators.go │ └── smithy-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── auth │ │ ├── auth.go │ │ ├── bearer │ │ │ ├── docs.go │ │ │ ├── middleware.go │ │ │ ├── token.go │ │ │ └── token_cache.go │ │ ├── identity.go │ │ ├── option.go │ │ └── scheme_id.go │ │ ├── changelog-template.json │ │ ├── context │ │ └── suppress_expired.go │ │ ├── doc.go │ │ ├── document.go │ │ ├── document │ │ ├── doc.go │ │ ├── document.go │ │ └── errors.go │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ ├── json │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── decoder_util.go │ │ │ ├── encoder.go │ │ │ ├── escape.go │ │ │ ├── object.go │ │ │ └── value.go │ │ └── xml │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── endpoints │ │ └── endpoint.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── internal │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ ├── docs.go │ │ │ └── singleflight.go │ │ ├── io │ │ ├── byte.go │ │ ├── doc.go │ │ ├── reader.go │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging │ │ └── logger.go │ │ ├── metrics │ │ ├── metrics.go │ │ └── nop.go │ │ ├── middleware │ │ ├── context.go │ │ ├── doc.go │ │ ├── logging.go │ │ ├── metadata.go │ │ ├── middleware.go │ │ ├── ordered_group.go │ │ ├── stack.go │ │ ├── stack_values.go │ │ ├── step_build.go │ │ ├── step_deserialize.go │ │ ├── step_finalize.go │ │ ├── step_initialize.go │ │ └── step_serialize.go │ │ ├── modman.toml │ │ ├── private │ │ └── requestcompression │ │ │ ├── gzip.go │ │ │ ├── middleware_capture_request_compression.go │ │ │ └── request_compression.go │ │ ├── properties.go │ │ ├── ptr │ │ ├── doc.go │ │ ├── from_ptr.go │ │ ├── gen_scalars.go │ │ └── to_ptr.go │ │ ├── rand │ │ ├── doc.go │ │ ├── rand.go │ │ └── uuid.go │ │ ├── time │ │ └── time.go │ │ ├── tracing │ │ ├── context.go │ │ ├── nop.go │ │ └── tracing.go │ │ ├── transport │ │ └── http │ │ │ ├── auth.go │ │ │ ├── auth_schemes.go │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── interceptor.go │ │ │ ├── interceptor_middleware.go │ │ │ ├── internal │ │ │ └── io │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── metrics.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_header_comment.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── properties.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ ├── validation.go │ │ └── waiter │ │ ├── logger.go │ │ └── waiter.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── bkielbasa │ └── cyclop │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── blizzy78 │ └── varnamelen │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── flags.go │ │ ├── typeparam.go │ │ ├── typeparam_go1.16.go │ │ ├── varnamelen.code-workspace │ │ └── varnamelen.go ├── bombsimon │ └── wsl │ │ └── v3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── wsl.go ├── breml │ ├── bidichk │ │ ├── LICENSE │ │ └── pkg │ │ │ └── bidichk │ │ │ ├── bidichk.go │ │ │ └── version.go │ └── errchkjson │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errchkjson.go │ │ ├── noexported_error.go │ │ ├── unsupported_error.go │ │ └── version.go ├── butuzov │ └── ireturn │ │ ├── LICENSE │ │ ├── analyzer │ │ ├── analyzer.go │ │ ├── disallow.go │ │ └── std.go │ │ ├── config │ │ ├── allow.go │ │ ├── config.go │ │ ├── new.go │ │ └── reject.go │ │ └── types │ │ ├── iface.go │ │ ├── names.go │ │ └── types.go ├── cenkalti │ └── backoff │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── timer.go │ │ └── tries.go ├── cert-manager │ └── cert-manager │ │ ├── LICENSE │ │ ├── LICENSES │ │ └── pkg │ │ ├── apis │ │ ├── acme │ │ │ ├── doc.go │ │ │ └── v1 │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_challenge.go │ │ │ │ ├── types_issuer.go │ │ │ │ ├── types_order.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certmanager │ │ │ ├── doc.go │ │ │ └── v1 │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── generic_issuer.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_certificate.go │ │ │ │ ├── types_certificaterequest.go │ │ │ │ ├── types_issuer.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── meta │ │ │ ├── doc.go │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ └── clientset │ │ └── versioned │ │ ├── clientset.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ ├── acme │ │ └── v1 │ │ │ ├── acme_client.go │ │ │ ├── challenge.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── order.go │ │ └── certmanager │ │ └── v1 │ │ ├── certificate.go │ │ ├── certificaterequest.go │ │ ├── certmanager_client.go │ │ ├── clusterissuer.go │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ └── issuer.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 ├── charithe │ └── durationcheck │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── durationcheck.go ├── chavacava │ └── garif │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constructors.go │ │ ├── decorators.go │ │ ├── doc.go │ │ ├── io.go │ │ └── models.go ├── coreos │ ├── go-semver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ └── go-systemd │ │ └── v22 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── daemon │ │ ├── sdnotify.go │ │ └── watchdog.go │ │ └── journal │ │ ├── journal.go │ │ ├── journal_unix.go │ │ └── journal_windows.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── md2man.go │ │ └── roff.go ├── curioswitch │ └── go-reassign │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ └── internal │ │ └── analyzer │ │ └── analyzer.go ├── daixiang0 │ └── gci │ │ ├── LICENSE │ │ └── pkg │ │ ├── config │ │ └── config.go │ │ ├── format │ │ └── format.go │ │ ├── gci │ │ └── gci.go │ │ ├── io │ │ ├── file.go │ │ ├── search.go │ │ └── stdin.go │ │ ├── log │ │ └── log.go │ │ ├── parse │ │ └── parse.go │ │ ├── section │ │ ├── blank.go │ │ ├── commentline.go │ │ ├── default.go │ │ ├── dot.go │ │ ├── errors.go │ │ ├── newline.go │ │ ├── parser.go │ │ ├── prefix.go │ │ ├── section.go │ │ ├── standard.go │ │ └── standard_list.go │ │ ├── specificity │ │ ├── default.go │ │ ├── match.go │ │ ├── mismatch.go │ │ ├── name.go │ │ ├── specificity.go │ │ └── standard.go │ │ └── utils │ │ └── constants.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── denis-tingaikin │ └── go-header │ │ ├── .gitignore │ │ ├── .go-header.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── config.go │ │ ├── issue.go │ │ ├── location.go │ │ ├── option.go │ │ ├── reader.go │ │ └── value.go ├── distribution │ └── reference │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── distribution-logo.svg │ │ ├── helpers.go │ │ ├── normalize.go │ │ ├── reference.go │ │ ├── regexp.go │ │ └── sort.go ├── 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 ├── esimonov │ └── ifshort │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ └── occurrences.go ├── ettle │ └── strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .readme.tmpl │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── caser.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── initialism.go │ │ ├── split.go │ │ ├── strcase.go │ │ └── unicode.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 ├── fatih │ ├── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go │ └── structtag │ │ ├── LICENSE │ │ ├── README.md │ │ └── tags.go ├── felixge │ ├── fgprof │ │ ├── BenchmarkProfilerGoroutines.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── fgprof.go │ │ └── handler.go │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── firefart │ └── nonamedreturns │ │ ├── LICENSE │ │ └── analyzer │ │ └── analyzer.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── fxamacker │ └── cbor │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bytestring.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── decode.go │ │ ├── diagnose.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_map.go │ │ ├── encode_map_go117.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── fzipp │ └── gocyclo │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyze.go │ │ ├── complexity.go │ │ ├── directives.go │ │ ├── recv.go │ │ ├── recv_pre118.go │ │ └── stats.go ├── go-bindata │ └── go-bindata │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _config.yml │ │ ├── asset.go │ │ ├── bytewriter.go │ │ ├── config.go │ │ ├── convert.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── go-bindata │ │ ├── .gitignore │ │ ├── AppendSliceValue.go │ │ ├── main.go │ │ └── version.go │ │ ├── release.go │ │ ├── restore.go │ │ ├── stringwriter.go │ │ └── toc.go ├── go-critic │ └── go-critic │ │ ├── LICENSE │ │ ├── checkers │ │ ├── appendAssign_checker.go │ │ ├── appendCombine_checker.go │ │ ├── badCond_checker.go │ │ ├── badRegexp_checker.go │ │ ├── boolExprSimplify_checker.go │ │ ├── builtinShadowDecl_checker.go │ │ ├── builtinShadow_checker.go │ │ ├── captLocal_checker.go │ │ ├── caseOrder_checker.go │ │ ├── checkers.go │ │ ├── codegenComment_checker.go │ │ ├── commentFormatting_checker.go │ │ ├── commentedOutCode_checker.go │ │ ├── commentedOutImport_checker.go │ │ ├── defaultCaseOrder_checker.go │ │ ├── deferInLoop_checker.go │ │ ├── deprecatedComment_checker.go │ │ ├── docStub_checker.go │ │ ├── dupBranchBody_checker.go │ │ ├── dupCase_checker.go │ │ ├── dupImports_checker.go │ │ ├── dupSubExpr_checker.go │ │ ├── elseif_checker.go │ │ ├── embedded_rules.go │ │ ├── emptyFallthrough_checker.go │ │ ├── evalOrder_checker.go │ │ ├── exitAfterDefer_checker.go │ │ ├── filepathJoin_checker.go │ │ ├── flagName_checker.go │ │ ├── hexLiteral_checker.go │ │ ├── hugeParam_checker.go │ │ ├── ifElseChain_checker.go │ │ ├── importShadow_checker.go │ │ ├── initClause_checker.go │ │ ├── internal │ │ │ ├── astwalk │ │ │ │ ├── comment_walker.go │ │ │ │ ├── doc_comment_walker.go │ │ │ │ ├── expr_walker.go │ │ │ │ ├── func_decl_walker.go │ │ │ │ ├── local_comment_walker.go │ │ │ │ ├── local_def_visitor.go │ │ │ │ ├── local_def_walker.go │ │ │ │ ├── local_expr_walker.go │ │ │ │ ├── stmt_list_walker.go │ │ │ │ ├── stmt_walker.go │ │ │ │ ├── type_expr_walker.go │ │ │ │ ├── visitor.go │ │ │ │ ├── walk_handler.go │ │ │ │ └── walker.go │ │ │ └── lintutil │ │ │ │ ├── astfind.go │ │ │ │ ├── astflow.go │ │ │ │ ├── astset.go │ │ │ │ └── zero_value.go │ │ ├── mapKey_checker.go │ │ ├── methodExprCall_checker.go │ │ ├── nestingReduce_checker.go │ │ ├── newDeref_checker.go │ │ ├── nilValReturn_checker.go │ │ ├── octalLiteral_checker.go │ │ ├── paramTypeCombine_checker.go │ │ ├── ptrToRefParam_checker.go │ │ ├── rangeExprCopy_checker.go │ │ ├── rangeValCopy_checker.go │ │ ├── regexpPattern_checker.go │ │ ├── regexpSimplify_checker.go │ │ ├── ruleguard_checker.go │ │ ├── rulesdata │ │ │ └── rulesdata.go │ │ ├── singleCaseSwitch_checker.go │ │ ├── sloppyReassign_checker.go │ │ ├── sloppyTypeAssert_checker.go │ │ ├── sortSlice_checker.go │ │ ├── sqlQuery_checker.go │ │ ├── todoCommentWithoutDetail_checker.go │ │ ├── tooManyResults_checker.go │ │ ├── truncateCmp_checker.go │ │ ├── typeAssertChain_checker.go │ │ ├── typeDefFirst_checker.go │ │ ├── typeSwitchVar_checker.go │ │ ├── typeUnparen_checker.go │ │ ├── underef_checker.go │ │ ├── unlabelStmt_checker.go │ │ ├── unlambda_checker.go │ │ ├── unnamedResult_checker.go │ │ ├── unnecessaryBlock_checker.go │ │ ├── unnecessaryDefer_checker.go │ │ ├── utils.go │ │ ├── weakCond_checker.go │ │ └── whyNoLint_checker.go │ │ └── framework │ │ └── linter │ │ ├── checkers_db.go │ │ ├── context.go │ │ ├── go_version.go │ │ └── linter.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ ├── slogr │ │ │ └── slogr.go │ │ ├── slogsink.go │ │ └── testr │ │ │ └── testr.go │ ├── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go │ └── zapr │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── slogzapr.go │ │ ├── zapr.go │ │ ├── zapr_noslog.go │ │ └── zapr_slog.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── initialism_index.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── split.go │ │ ├── string_bytes.go │ │ ├── util.go │ │ └── yaml.go ├── go-task │ └── slim-sprig │ │ └── v3 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── strings.go │ │ └── url.go ├── go-toolsmith │ ├── astcast │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── astcast.go │ ├── astcopy │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── astcopy.go │ ├── astequal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── astequal.go │ ├── astfmt │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── astfmt.go │ ├── astp │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decl.go │ │ ├── expr.go │ │ └── stmt.go │ ├── strparse │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── strparse.go │ └── typep │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── predicates.go │ │ ├── safeExpr.go │ │ └── simplePredicates.go ├── go-xmlfmt │ └── xmlfmt │ │ ├── LICENSE │ │ ├── README.md │ │ └── xmlfmt.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 ├── gobwas │ └── glob │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match │ │ ├── any.go │ │ ├── any_of.go │ │ ├── btree.go │ │ ├── contains.go │ │ ├── every_of.go │ │ ├── list.go │ │ ├── match.go │ │ ├── max.go │ │ ├── min.go │ │ ├── nothing.go │ │ ├── prefix.go │ │ ├── prefix_any.go │ │ ├── prefix_suffix.go │ │ ├── range.go │ │ ├── row.go │ │ ├── segments.go │ │ ├── single.go │ │ ├── suffix.go │ │ ├── suffix_any.go │ │ ├── super.go │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── parser.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── token.go │ │ └── syntax.go │ │ └── util │ │ ├── runes │ │ └── runes.go │ │ └── strings │ │ └── strings.go ├── gofrs │ └── flock │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── flock.go │ │ ├── flock_aix.go │ │ ├── flock_unix.go │ │ ├── flock_winapi.go │ │ └── flock_windows.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── plugin │ │ ├── compare │ │ │ ├── compare.go │ │ │ └── comparetest.go │ │ ├── defaultcheck │ │ │ └── defaultcheck.go │ │ ├── description │ │ │ ├── description.go │ │ │ └── descriptiontest.go │ │ ├── embedcheck │ │ │ └── embedcheck.go │ │ ├── enumstringer │ │ │ └── enumstringer.go │ │ ├── equal │ │ │ ├── equal.go │ │ │ └── equaltest.go │ │ ├── face │ │ │ ├── face.go │ │ │ └── facetest.go │ │ ├── gostring │ │ │ ├── gostring.go │ │ │ └── gostringtest.go │ │ ├── marshalto │ │ │ └── marshalto.go │ │ ├── oneofcheck │ │ │ └── oneofcheck.go │ │ ├── populate │ │ │ └── populate.go │ │ ├── size │ │ │ ├── size.go │ │ │ └── sizetest.go │ │ ├── stringer │ │ │ ├── stringer.go │ │ │ └── stringertest.go │ │ ├── testgen │ │ │ └── testgen.go │ │ ├── union │ │ │ ├── union.go │ │ │ └── uniontest.go │ │ └── unmarshal │ │ │ └── unmarshal.go │ │ ├── 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 │ │ ├── protoc-gen-gogo │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ │ ├── generator │ │ │ ├── generator.go │ │ │ ├── helper.go │ │ │ └── internal │ │ │ │ └── remap │ │ │ │ └── remap.go │ │ ├── grpc │ │ │ └── grpc.go │ │ └── plugin │ │ │ ├── Makefile │ │ │ └── plugin.pb.go │ │ ├── sortkeys │ │ └── sortkeys.go │ │ └── vanity │ │ ├── command │ │ └── command.go │ │ ├── enum.go │ │ ├── field.go │ │ ├── file.go │ │ ├── foreach.go │ │ └── msg.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go ├── golangci │ ├── check │ │ ├── LICENSE │ │ └── cmd │ │ │ ├── structcheck │ │ │ └── structcheck.go │ │ │ └── varcheck │ │ │ └── varcheck.go │ ├── dupl │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── job │ │ │ ├── buildtree.go │ │ │ └── parse.go │ │ ├── main.go │ │ ├── printer │ │ │ ├── html.go │ │ │ ├── plumbing.go │ │ │ ├── printer.go │ │ │ └── text.go │ │ ├── suffixtree │ │ │ ├── dupl.go │ │ │ └── suffixtree.go │ │ └── syntax │ │ │ ├── golang │ │ │ └── golang.go │ │ │ └── syntax.go │ ├── go-misc │ │ ├── LICENSE │ │ └── deadcode │ │ │ ├── README.md │ │ │ └── deadcode.go │ ├── gofmt │ │ ├── gofmt │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── gofmt.go │ │ │ ├── golangci.go │ │ │ ├── internal.go │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ └── diff.go │ │ │ │ └── execabs │ │ │ │ │ └── execabs.go │ │ │ ├── readme.md │ │ │ ├── rewrite.go │ │ │ └── simplify.go │ │ └── goimports │ │ │ ├── LICENSE │ │ │ ├── goimports.go │ │ │ ├── golangci.go │ │ │ └── readme.md │ ├── golangci-lint │ │ ├── LICENSE │ │ ├── cmd │ │ │ └── golangci-lint │ │ │ │ ├── main.go │ │ │ │ └── mod_version.go │ │ ├── internal │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ ├── default.go │ │ │ │ ├── hash.go │ │ │ │ └── readme.md │ │ │ ├── errorutil │ │ │ │ └── errors.go │ │ │ ├── pkgcache │ │ │ │ └── pkgcache.go │ │ │ ├── renameio │ │ │ │ ├── readme.md │ │ │ │ └── renameio.go │ │ │ └── robustio │ │ │ │ ├── readme.md │ │ │ │ ├── robustio.go │ │ │ │ ├── robustio_darwin.go │ │ │ │ ├── robustio_flaky.go │ │ │ │ ├── robustio_other.go │ │ │ │ └── robustio_windows.go │ │ └── pkg │ │ │ ├── commands │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── executor.go │ │ │ ├── help.go │ │ │ ├── linters.go │ │ │ ├── root.go │ │ │ ├── run.go │ │ │ └── version.go │ │ │ ├── config │ │ │ ├── config.go │ │ │ ├── issues.go │ │ │ ├── linters.go │ │ │ ├── linters_settings.go │ │ │ ├── output.go │ │ │ ├── reader.go │ │ │ ├── run.go │ │ │ └── severity.go │ │ │ ├── exitcodes │ │ │ └── exitcodes.go │ │ │ ├── fsutils │ │ │ ├── filecache.go │ │ │ ├── fsutils.go │ │ │ ├── linecache.go │ │ │ ├── path_unix.go │ │ │ └── path_windows.go │ │ │ ├── golinters │ │ │ ├── asasalint.go │ │ │ ├── asciicheck.go │ │ │ ├── bidichk.go │ │ │ ├── bodyclose.go │ │ │ ├── commons.go │ │ │ ├── containedctx.go │ │ │ ├── contextcheck.go │ │ │ ├── cyclop.go │ │ │ ├── deadcode.go │ │ │ ├── decorder.go │ │ │ ├── depguard.go │ │ │ ├── dogsled.go │ │ │ ├── dupl.go │ │ │ ├── dupword.go │ │ │ ├── durationcheck.go │ │ │ ├── errcheck.go │ │ │ ├── errchkjson.go │ │ │ ├── errname.go │ │ │ ├── errorlint.go │ │ │ ├── execinquery.go │ │ │ ├── exhaustive.go │ │ │ ├── exhaustivestruct.go │ │ │ ├── exhaustruct.go │ │ │ ├── exportloopref.go │ │ │ ├── forbidigo.go │ │ │ ├── forcetypeassert.go │ │ │ ├── funlen.go │ │ │ ├── gci.go │ │ │ ├── goanalysis │ │ │ │ ├── adapters.go │ │ │ │ ├── errors.go │ │ │ │ ├── issue.go │ │ │ │ ├── linter.go │ │ │ │ ├── load │ │ │ │ │ └── guard.go │ │ │ │ ├── metalinter.go │ │ │ │ ├── runner.go │ │ │ │ ├── runner_action.go │ │ │ │ ├── runner_facts.go │ │ │ │ ├── runner_loadingpackage.go │ │ │ │ └── runners.go │ │ │ ├── gochecknoglobals.go │ │ │ ├── gochecknoinits.go │ │ │ ├── gocognit.go │ │ │ ├── goconst.go │ │ │ ├── gocritic.go │ │ │ ├── gocyclo.go │ │ │ ├── godot.go │ │ │ ├── godox.go │ │ │ ├── goerr113.go │ │ │ ├── gofmt.go │ │ │ ├── gofmt_common.go │ │ │ ├── gofumpt.go │ │ │ ├── goheader.go │ │ │ ├── goimports.go │ │ │ ├── golint.go │ │ │ ├── gomnd.go │ │ │ ├── gomoddirectives.go │ │ │ ├── gomodguard.go │ │ │ ├── goprintffuncname.go │ │ │ ├── gosec.go │ │ │ ├── gosimple.go │ │ │ ├── govet.go │ │ │ ├── grouper.go │ │ │ ├── ifshort.go │ │ │ ├── importas.go │ │ │ ├── ineffassign.go │ │ │ ├── interfacebloat.go │ │ │ ├── interfacer.go │ │ │ ├── ireturn.go │ │ │ ├── lll.go │ │ │ ├── loggercheck.go │ │ │ ├── maintidx.go │ │ │ ├── makezero.go │ │ │ ├── maligned.go │ │ │ ├── misspell.go │ │ │ ├── nakedret.go │ │ │ ├── nestif.go │ │ │ ├── nilerr.go │ │ │ ├── nilnil.go │ │ │ ├── nlreturn.go │ │ │ ├── noctx.go │ │ │ ├── nolintlint.go │ │ │ ├── nolintlint │ │ │ │ ├── README.md │ │ │ │ └── nolintlint.go │ │ │ ├── nonamedreturns.go │ │ │ ├── nosnakecase.go │ │ │ ├── nosprintfhostport.go │ │ │ ├── paralleltest.go │ │ │ ├── prealloc.go │ │ │ ├── predeclared.go │ │ │ ├── promlinter.go │ │ │ ├── reassign.go │ │ │ ├── revive.go │ │ │ ├── rowserrcheck.go │ │ │ ├── scopelint.go │ │ │ ├── sqlclosecheck.go │ │ │ ├── staticcheck.go │ │ │ ├── staticcheck_common.go │ │ │ ├── structcheck.go │ │ │ ├── stylecheck.go │ │ │ ├── tagliatelle.go │ │ │ ├── tenv.go │ │ │ ├── testableexamples.go │ │ │ ├── testpackage.go │ │ │ ├── thelper.go │ │ │ ├── tparallel.go │ │ │ ├── typecheck.go │ │ │ ├── unconvert.go │ │ │ ├── unparam.go │ │ │ ├── unused.go │ │ │ ├── usestdlibvars.go │ │ │ ├── util.go │ │ │ ├── varcheck.go │ │ │ ├── varnamelen.go │ │ │ ├── wastedassign.go │ │ │ ├── whitespace.go │ │ │ ├── wrapcheck.go │ │ │ └── wsl.go │ │ │ ├── goutil │ │ │ └── env.go │ │ │ ├── lint │ │ │ ├── linter │ │ │ │ ├── config.go │ │ │ │ ├── context.go │ │ │ │ └── linter.go │ │ │ ├── lintersdb │ │ │ │ ├── enabled_set.go │ │ │ │ ├── manager.go │ │ │ │ └── validator.go │ │ │ ├── load.go │ │ │ └── runner.go │ │ │ ├── logutils │ │ │ ├── log.go │ │ │ ├── logutils.go │ │ │ ├── mock.go │ │ │ ├── out.go │ │ │ └── stderr_log.go │ │ │ ├── packages │ │ │ ├── errors.go │ │ │ ├── skip.go │ │ │ └── util.go │ │ │ ├── printers │ │ │ ├── checkstyle.go │ │ │ ├── codeclimate.go │ │ │ ├── github.go │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ ├── junitxml.go │ │ │ ├── printer.go │ │ │ ├── tab.go │ │ │ └── text.go │ │ │ ├── report │ │ │ ├── data.go │ │ │ └── log.go │ │ │ ├── result │ │ │ ├── issue.go │ │ │ └── processors │ │ │ │ ├── autogenerated_exclude.go │ │ │ │ ├── base_rule.go │ │ │ │ ├── cgo.go │ │ │ │ ├── diff.go │ │ │ │ ├── exclude.go │ │ │ │ ├── exclude_rules.go │ │ │ │ ├── filename_unadjuster.go │ │ │ │ ├── fixer.go │ │ │ │ ├── identifier_marker.go │ │ │ │ ├── issues.go │ │ │ │ ├── max_from_linter.go │ │ │ │ ├── max_per_file_from_linter.go │ │ │ │ ├── max_same_issues.go │ │ │ │ ├── nolint.go │ │ │ │ ├── path_prefixer.go │ │ │ │ ├── path_prettifier.go │ │ │ │ ├── path_shortener.go │ │ │ │ ├── processor.go │ │ │ │ ├── severity_rules.go │ │ │ │ ├── skip_dirs.go │ │ │ │ ├── skip_files.go │ │ │ │ ├── sort_results.go │ │ │ │ ├── source_code.go │ │ │ │ └── uniq_by_line.go │ │ │ ├── sliceutil │ │ │ └── sliceutil.go │ │ │ └── timeutils │ │ │ └── stopwatch.go │ ├── lint-1 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── lint.go │ ├── maligned │ │ ├── LICENSE │ │ ├── README │ │ └── maligned.go │ ├── misspell │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Dockerfile │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE-HOWTO.md │ │ ├── ascii.go │ │ ├── case.go │ │ ├── goreleaser.yml │ │ ├── install-misspell.sh │ │ ├── legal.go │ │ ├── mime.go │ │ ├── notwords.go │ │ ├── replace.go │ │ ├── stringreplacer.go │ │ ├── stringreplacer_test.gox │ │ ├── url.go │ │ └── words.go │ ├── revgrep │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── revgrep.go │ └── unconvert │ │ ├── LICENSE │ │ ├── README │ │ └── unconvert.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── cel-go │ │ ├── LICENSE │ │ ├── cel │ │ │ ├── BUILD.bazel │ │ │ ├── cel.go │ │ │ ├── decls.go │ │ │ ├── env.go │ │ │ ├── folding.go │ │ │ ├── inlining.go │ │ │ ├── io.go │ │ │ ├── library.go │ │ │ ├── macro.go │ │ │ ├── optimizer.go │ │ │ ├── options.go │ │ │ ├── program.go │ │ │ └── validator.go │ │ ├── checker │ │ │ ├── BUILD.bazel │ │ │ ├── checker.go │ │ │ ├── cost.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── env.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── mapping.go │ │ │ ├── options.go │ │ │ ├── printer.go │ │ │ ├── scopes.go │ │ │ └── types.go │ │ ├── common │ │ │ ├── BUILD.bazel │ │ │ ├── ast │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ast.go │ │ │ │ ├── conversion.go │ │ │ │ ├── expr.go │ │ │ │ ├── factory.go │ │ │ │ └── navigable.go │ │ │ ├── containers │ │ │ │ ├── BUILD.bazel │ │ │ │ └── container.go │ │ │ ├── cost.go │ │ │ ├── debug │ │ │ │ ├── BUILD.bazel │ │ │ │ └── debug.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── errors.go │ │ │ ├── functions │ │ │ │ ├── BUILD.bazel │ │ │ │ └── functions.go │ │ │ ├── location.go │ │ │ ├── operators │ │ │ │ ├── BUILD.bazel │ │ │ │ └── operators.go │ │ │ ├── overloads │ │ │ │ ├── BUILD.bazel │ │ │ │ └── overloads.go │ │ │ ├── runes │ │ │ │ ├── BUILD.bazel │ │ │ │ └── buffer.go │ │ │ ├── source.go │ │ │ ├── stdlib │ │ │ │ ├── BUILD.bazel │ │ │ │ └── standard.go │ │ │ └── types │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── any_value.go │ │ │ │ ├── bool.go │ │ │ │ ├── bytes.go │ │ │ │ ├── compare.go │ │ │ │ ├── doc.go │ │ │ │ ├── double.go │ │ │ │ ├── duration.go │ │ │ │ ├── err.go │ │ │ │ ├── int.go │ │ │ │ ├── iterator.go │ │ │ │ ├── json_value.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── null.go │ │ │ │ ├── object.go │ │ │ │ ├── optional.go │ │ │ │ ├── overflow.go │ │ │ │ ├── pb │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── checked.go │ │ │ │ ├── enum.go │ │ │ │ ├── equal.go │ │ │ │ ├── file.go │ │ │ │ ├── pb.go │ │ │ │ └── type.go │ │ │ │ ├── provider.go │ │ │ │ ├── ref │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── provider.go │ │ │ │ └── reference.go │ │ │ │ ├── string.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── traits │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── comparer.go │ │ │ │ ├── container.go │ │ │ │ ├── field_tester.go │ │ │ │ ├── indexer.go │ │ │ │ ├── iterator.go │ │ │ │ ├── lister.go │ │ │ │ ├── mapper.go │ │ │ │ ├── matcher.go │ │ │ │ ├── math.go │ │ │ │ ├── receiver.go │ │ │ │ ├── sizer.go │ │ │ │ ├── traits.go │ │ │ │ └── zeroer.go │ │ │ │ ├── types.go │ │ │ │ ├── uint.go │ │ │ │ ├── unknown.go │ │ │ │ └── util.go │ │ ├── ext │ │ │ ├── BUILD.bazel │ │ │ ├── README.md │ │ │ ├── bindings.go │ │ │ ├── comprehensions.go │ │ │ ├── encoders.go │ │ │ ├── formatting.go │ │ │ ├── guards.go │ │ │ ├── lists.go │ │ │ ├── math.go │ │ │ ├── native.go │ │ │ ├── protos.go │ │ │ ├── sets.go │ │ │ └── strings.go │ │ ├── interpreter │ │ │ ├── BUILD.bazel │ │ │ ├── activation.go │ │ │ ├── attribute_patterns.go │ │ │ ├── attributes.go │ │ │ ├── decorators.go │ │ │ ├── dispatcher.go │ │ │ ├── evalstate.go │ │ │ ├── functions │ │ │ │ ├── BUILD.bazel │ │ │ │ └── functions.go │ │ │ ├── interpretable.go │ │ │ ├── interpreter.go │ │ │ ├── optimizations.go │ │ │ ├── planner.go │ │ │ ├── prune.go │ │ │ └── runtimecost.go │ │ └── parser │ │ │ ├── BUILD.bazel │ │ │ ├── errors.go │ │ │ ├── gen │ │ │ ├── BUILD.bazel │ │ │ ├── CEL.g4 │ │ │ ├── CEL.interp │ │ │ ├── CEL.tokens │ │ │ ├── CELLexer.interp │ │ │ ├── CELLexer.tokens │ │ │ ├── cel_base_listener.go │ │ │ ├── cel_base_visitor.go │ │ │ ├── cel_lexer.go │ │ │ ├── cel_listener.go │ │ │ ├── cel_parser.go │ │ │ ├── cel_visitor.go │ │ │ ├── doc.go │ │ │ └── generate.sh │ │ │ ├── helper.go │ │ │ ├── input.go │ │ │ ├── macro.go │ │ │ ├── options.go │ │ │ ├── parser.go │ │ │ ├── unescape.go │ │ │ └── unparser.go │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-jsonnet │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── .tool-versions │ │ ├── .travis.yml │ │ ├── BUILD.bazel │ │ ├── CONTRIBUTING │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── ast │ │ │ ├── BUILD.bazel │ │ │ ├── ast.go │ │ │ ├── clone.go │ │ │ ├── fodder.go │ │ │ ├── identifier_set.go │ │ │ ├── location.go │ │ │ └── util.go │ │ ├── astgen │ │ │ ├── BUILD.bazel │ │ │ └── stdast.go │ │ ├── benchmark.sh │ │ ├── builtins.go │ │ ├── cmd │ │ │ ├── internal │ │ │ │ └── cmd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── utils.go │ │ │ └── jsonnet │ │ │ │ ├── BUILD.bazel │ │ │ │ └── cmd.go │ │ ├── doc.go │ │ ├── error_formatter.go │ │ ├── imports.go │ │ ├── internal │ │ │ ├── errors │ │ │ │ ├── BUILD.bazel │ │ │ │ └── static_error.go │ │ │ ├── parser │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── context.go │ │ │ │ ├── lexer.go │ │ │ │ ├── literalfield_set.go │ │ │ │ ├── parser.go │ │ │ │ └── string_util.go │ │ │ └── program │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── desugarer.go │ │ │ │ ├── program.go │ │ │ │ └── static_analyzer.go │ │ ├── interpreter.go │ │ ├── runtime_error.go │ │ ├── setup.py │ │ ├── tests.sh │ │ ├── thunks.go │ │ ├── travisBazel.sh │ │ ├── travisBuild.sh │ │ ├── update_cpp_jsonnet.sh │ │ ├── util.go │ │ ├── value.go │ │ └── vm.go │ ├── pprof │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── profile │ │ │ ├── encode.go │ │ │ ├── filter.go │ │ │ ├── index.go │ │ │ ├── legacy_java_profile.go │ │ │ ├── legacy_profile.go │ │ │ ├── merge.go │ │ │ ├── profile.go │ │ │ ├── proto.go │ │ │ └── prune.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ └── stream │ │ │ └── s2a_stream.go │ ├── shlex │ │ ├── COPYING │ │ ├── README │ │ └── shlex.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── invoke.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── gordonklaus │ └── ineffassign │ │ ├── LICENSE │ │ └── pkg │ │ └── ineffassign │ │ └── ineffassign.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 ├── gostaticanalysis │ ├── analysisutil │ │ ├── LICENSE │ │ ├── README.md │ │ ├── call.go │ │ ├── diagnostic.go │ │ ├── file.go │ │ ├── pkg.go │ │ ├── ssa.go │ │ ├── ssainspect.go │ │ └── types.go │ ├── comment │ │ ├── LICENSE │ │ ├── README.md │ │ ├── comment.go │ │ └── passes │ │ │ └── commentmap │ │ │ └── commentmap.go │ ├── forcetypeassert │ │ ├── .reviewdog.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── forcetypeassert.go │ └── nilerr │ │ ├── LICENSE │ │ ├── README.md │ │ └── nilerr.go ├── grpc-ecosystem │ ├── go-grpc-prometheus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_reporter.go │ │ ├── makefile │ │ ├── metric_options.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_reporter.go │ │ └── util.go │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── go-version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constraint.go │ │ ├── version.go │ │ └── version_collection.go │ └── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── hexops │ └── gotextdiff │ │ ├── LICENSE │ │ ├── README.md │ │ ├── diff.go │ │ ├── myers │ │ └── diff.go │ │ ├── span │ │ ├── parse.go │ │ ├── span.go │ │ ├── token.go │ │ ├── token111.go │ │ ├── token112.go │ │ ├── uri.go │ │ └── utf16.go │ │ └── unified.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jgautheron │ └── goconst │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── parser.go │ │ └── visitor.go ├── jingyugao │ └── rowserrcheck │ │ ├── LICENSE │ │ └── passes │ │ └── rowserr │ │ └── rowserr.go ├── jirfag │ └── go-printf-func-name │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.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 ├── julz │ └── importas │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── config.go │ │ └── flags.go ├── kisielk │ ├── errcheck │ │ ├── LICENSE │ │ └── errcheck │ │ │ ├── analyzer.go │ │ │ ├── embedded_walker.go │ │ │ ├── errcheck.go │ │ │ ├── excludes.go │ │ │ ├── tags.go │ │ │ └── tags_compat.go │ └── gotool │ │ ├── .travis.yml │ │ ├── LEGAL │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go13.go │ │ ├── go14-15.go │ │ ├── go16-18.go │ │ ├── internal │ │ └── load │ │ │ ├── path.go │ │ │ ├── pkg.go │ │ │ └── search.go │ │ ├── match.go │ │ ├── match18.go │ │ └── tool.go ├── kkHAIKE │ └── contextcheck │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── contextcheck.go ├── kulti │ └── thelper │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ └── report.go ├── kunwardeep │ └── paralleltest │ │ ├── LICENSE │ │ └── pkg │ │ └── paralleltest │ │ └── paralleltest.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ └── diff │ │ └── diff.go ├── kyoh86 │ └── exportloopref │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── exportloopref.go ├── ldez │ ├── gomoddirectives │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── gomoddirectives.go │ │ ├── module.go │ │ └── readme.md │ └── tagliatelle │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── readme.md │ │ └── tagliatelle.go ├── leonklingele │ └── grouper │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ ├── config.go │ │ ├── consts │ │ ├── analyzer.go │ │ └── config.go │ │ ├── flags.go │ │ ├── globals │ │ └── analyzer.go │ │ ├── imports │ │ ├── analyzer.go │ │ └── config.go │ │ ├── types │ │ ├── analyzer.go │ │ └── config.go │ │ └── vars │ │ ├── analyzer.go │ │ └── config.go ├── lufeee │ └── execinquery │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── execinquery.go ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── maratori │ ├── testableexamples │ │ ├── LICENSE │ │ └── pkg │ │ │ └── testableexamples │ │ │ └── testableexamples.go │ └── testpackage │ │ ├── LICENSE │ │ └── pkg │ │ └── testpackage │ │ └── testpackage.go ├── matoous │ └── godox │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .revive.toml │ │ ├── LICENSE │ │ ├── README.md │ │ └── godox.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-runewidth │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.test.sh │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go ├── maxbrunsfeld │ └── counterfeiter │ │ └── v6 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arguments │ │ ├── files.go │ │ ├── parser.go │ │ └── usage.go │ │ ├── command │ │ └── runner.go │ │ ├── generator │ │ ├── cache.go │ │ ├── ctx.go │ │ ├── ctx_old.go │ │ ├── fake.go │ │ ├── file_reader.go │ │ ├── function_loader.go │ │ ├── function_template.go │ │ ├── import.go │ │ ├── interface_loader.go │ │ ├── interface_template.go │ │ ├── loader.go │ │ ├── package_loader.go │ │ ├── package_template.go │ │ ├── param.go │ │ └── return.go │ │ └── main.go ├── mbilski │ └── exhaustivestruct │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── mgechev │ └── revive │ │ ├── LICENSE │ │ ├── config │ │ └── config.go │ │ ├── formatter │ │ ├── checkstyle.go │ │ ├── default.go │ │ ├── friendly.go │ │ ├── json.go │ │ ├── ndjson.go │ │ ├── plain.go │ │ ├── sarif.go │ │ ├── severity.go │ │ ├── stylish.go │ │ └── unix.go │ │ ├── internal │ │ └── typeparams │ │ │ ├── typeparams.go │ │ │ ├── typeparams_go117.go │ │ │ └── typeparams_go118.go │ │ ├── lint │ │ ├── config.go │ │ ├── failure.go │ │ ├── file.go │ │ ├── formatter.go │ │ ├── linter.go │ │ ├── package.go │ │ ├── rule.go │ │ └── utils.go │ │ └── rule │ │ ├── add-constant.go │ │ ├── argument-limit.go │ │ ├── atomic.go │ │ ├── banned-characters.go │ │ ├── bare-return.go │ │ ├── blank-imports.go │ │ ├── bool-literal-in-expr.go │ │ ├── call-to-gc.go │ │ ├── cognitive-complexity.go │ │ ├── confusing-naming.go │ │ ├── confusing-results.go │ │ ├── constant-logical-expr.go │ │ ├── context-as-argument.go │ │ ├── context-keys-type.go │ │ ├── cyclomatic.go │ │ ├── datarace.go │ │ ├── deep-exit.go │ │ ├── defer.go │ │ ├── dot-imports.go │ │ ├── duplicated-imports.go │ │ ├── early-return.go │ │ ├── empty-block.go │ │ ├── empty-lines.go │ │ ├── error-naming.go │ │ ├── error-return.go │ │ ├── error-strings.go │ │ ├── errorf.go │ │ ├── exported.go │ │ ├── file-header.go │ │ ├── flag-param.go │ │ ├── function-length.go │ │ ├── function-result-limit.go │ │ ├── get-return.go │ │ ├── identical-branches.go │ │ ├── if-return.go │ │ ├── import-shadowing.go │ │ ├── imports-blacklist.go │ │ ├── increment-decrement.go │ │ ├── indent-error-flow.go │ │ ├── line-length-limit.go │ │ ├── max-public-structs.go │ │ ├── modifies-param.go │ │ ├── modifies-value-receiver.go │ │ ├── nested-structs.go │ │ ├── optimize-operands-order.go │ │ ├── package-comments.go │ │ ├── range-val-address.go │ │ ├── range-val-in-closure.go │ │ ├── range.go │ │ ├── receiver-naming.go │ │ ├── redefines-builtin-id.go │ │ ├── string-format.go │ │ ├── string-of-int.go │ │ ├── struct-tag.go │ │ ├── superfluous-else.go │ │ ├── time-equal.go │ │ ├── time-naming.go │ │ ├── unconditional-recursion.go │ │ ├── unexported-naming.go │ │ ├── unexported-return.go │ │ ├── unhandled-error.go │ │ ├── unnecessary-stmt.go │ │ ├── unreachable-code.go │ │ ├── unused-param.go │ │ ├── unused-receiver.go │ │ ├── use-any.go │ │ ├── useless-break.go │ │ ├── utils.go │ │ ├── var-declarations.go │ │ ├── var-naming.go │ │ └── waitgroup-by-value.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go ├── moby │ └── spdystream │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── connection.go │ │ ├── handlers.go │ │ ├── priority.go │ │ ├── spdy │ │ ├── dictionary.go │ │ ├── read.go │ │ ├── types.go │ │ └── write.go │ │ ├── stream.go │ │ └── utils.go ├── 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 ├── mogensen │ └── kubernetes-split-yaml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── Readme.md │ │ ├── kubernetes-resources.go │ │ ├── main.go │ │ ├── model.go │ │ ├── newline_darwin.go │ │ ├── newline_linux.go │ │ ├── newline_windows.go │ │ └── yaml.go ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── moricho │ └── tparallel │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── pkg │ │ ├── ssafunc │ │ │ └── ssafunc.go │ │ └── ssainstr │ │ │ └── ssainstr.go │ │ ├── testmap.go │ │ └── tparallel.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── mxk │ └── go-flowrate │ │ ├── LICENSE │ │ └── flowrate │ │ ├── flowrate.go │ │ ├── io.go │ │ └── util.go ├── nakabonne │ └── nestif │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── nestif.go ├── nbutton23 │ └── zxcvbn-go │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── adjacency │ │ └── adjcmartix.go │ │ ├── data │ │ └── bindata.go │ │ ├── entropy │ │ └── entropyCalculator.go │ │ ├── frequency │ │ └── frequency.go │ │ ├── match │ │ └── match.go │ │ ├── matching │ │ ├── dateMatchers.go │ │ ├── dictionaryMatch.go │ │ ├── leet.go │ │ ├── matching.go │ │ ├── repeatMatch.go │ │ ├── sequenceMatch.go │ │ └── spatialMatch.go │ │ ├── scoring │ │ └── scoring.go │ │ ├── utils │ │ └── math │ │ │ └── mathutils.go │ │ └── zxcvbn.go ├── nishanths │ ├── exhaustive │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── comment.go │ │ ├── enum.go │ │ ├── exhaustive.go │ │ ├── fact.go │ │ ├── map.go │ │ └── switch.go │ └── predeclared │ │ ├── LICENSE │ │ └── passes │ │ └── predeclared │ │ ├── go18.go │ │ ├── pre_go18.go │ │ └── predeclared.go ├── olekukonko │ └── tablewriter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── csv.go │ │ ├── table.go │ │ ├── table_with_color.go │ │ ├── util.go │ │ └── wrap.go ├── onsi │ ├── ginkgo │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── config │ │ │ └── deprecated.go │ │ │ ├── core_dsl.go │ │ │ ├── decorator_dsl.go │ │ │ ├── deprecated_dsl.go │ │ │ ├── formatter │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── formatter.go │ │ │ ├── ginkgo │ │ │ ├── build │ │ │ │ └── build_command.go │ │ │ ├── command │ │ │ │ ├── abort.go │ │ │ │ ├── command.go │ │ │ │ └── program.go │ │ │ ├── generators │ │ │ │ ├── boostrap_templates.go │ │ │ │ ├── bootstrap_command.go │ │ │ │ ├── generate_command.go │ │ │ │ ├── generate_templates.go │ │ │ │ └── generators_common.go │ │ │ ├── internal │ │ │ │ ├── compile.go │ │ │ │ ├── gocovmerge.go │ │ │ │ ├── profiles_and_reports.go │ │ │ │ ├── run.go │ │ │ │ ├── test_suite.go │ │ │ │ ├── utils.go │ │ │ │ └── verify_version.go │ │ │ ├── labels │ │ │ │ └── labels_command.go │ │ │ ├── main.go │ │ │ ├── outline │ │ │ │ ├── ginkgo.go │ │ │ │ ├── import.go │ │ │ │ ├── outline.go │ │ │ │ └── outline_command.go │ │ │ ├── run │ │ │ │ └── run_command.go │ │ │ ├── unfocus │ │ │ │ └── unfocus_command.go │ │ │ └── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ ├── suite.go │ │ │ │ └── watch_command.go │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ ├── ginkgo_t_dsl.go │ │ │ ├── internal │ │ │ ├── counter.go │ │ │ ├── failer.go │ │ │ ├── focus.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── group.go │ │ │ ├── interrupt_handler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── node.go │ │ │ ├── ordering.go │ │ │ ├── output_interceptor.go │ │ │ ├── output_interceptor_unix.go │ │ │ ├── output_interceptor_wasm.go │ │ │ ├── output_interceptor_win.go │ │ │ ├── parallel_support │ │ │ │ ├── client_server.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_server.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_server.go │ │ │ │ └── server_handler.go │ │ │ ├── progress_report.go │ │ │ ├── progress_report_bsd.go │ │ │ ├── progress_report_unix.go │ │ │ ├── progress_report_wasm.go │ │ │ ├── progress_report_win.go │ │ │ ├── progress_reporter_manager.go │ │ │ ├── report_entry.go │ │ │ ├── spec.go │ │ │ ├── spec_context.go │ │ │ ├── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── deprecated_reporter.go │ │ │ ├── json_report.go │ │ │ ├── junit_report.go │ │ │ ├── reporter.go │ │ │ └── teamcity_report.go │ │ │ ├── reporting_dsl.go │ │ │ ├── table_dsl.go │ │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── config.go │ │ │ ├── deprecated_types.go │ │ │ ├── deprecation_support.go │ │ │ ├── enum_support.go │ │ │ ├── errors.go │ │ │ ├── file_filter.go │ │ │ ├── flags.go │ │ │ ├── label_filter.go │ │ │ ├── report_entry.go │ │ │ ├── types.go │ │ │ └── version.go │ └── gomega │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ ├── gomega.go │ │ ├── gutil │ │ │ ├── post_ioutil.go │ │ │ └── using_ioutil.go │ │ ├── polling_signal_error.go │ │ └── vetoptdesc.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_comparable_to_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_key_of_matcher.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_each_matcher.go │ │ ├── have_exact_elements.go │ │ ├── have_existing_field_matcher.go │ │ ├── have_field.go │ │ ├── have_http_body_matcher.go │ │ ├── have_http_header_with_value_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── have_value.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── opencontainers │ └── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go ├── openshift │ ├── api │ │ ├── .ci-operator.yaml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── Dockerfile.ocp │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── apiserver │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_apirequestcount.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── deprecated_consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.swagger_doc_generated.go │ │ │ │ └── zz_prerelease_lifecycle_generated.go │ │ ├── authorization │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── codec.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── build │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── cloudnetwork │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── config │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── types.go │ │ │ │ ├── types_apiserver.go │ │ │ │ ├── types_authentication.go │ │ │ │ ├── types_build.go │ │ │ │ ├── types_cluster_image_policy.go │ │ │ │ ├── types_cluster_operator.go │ │ │ │ ├── types_cluster_version.go │ │ │ │ ├── types_console.go │ │ │ │ ├── types_dns.go │ │ │ │ ├── types_feature.go │ │ │ │ ├── types_image.go │ │ │ │ ├── types_image_content_policy.go │ │ │ │ ├── types_image_digest_mirror_set.go │ │ │ │ ├── types_image_policy.go │ │ │ │ ├── types_image_tag_mirror_set.go │ │ │ │ ├── types_infrastructure.go │ │ │ │ ├── types_ingress.go │ │ │ │ ├── types_kmsencryption.go │ │ │ │ ├── types_network.go │ │ │ │ ├── types_node.go │ │ │ │ ├── types_oauth.go │ │ │ │ ├── types_operatorhub.go │ │ │ │ ├── types_project.go │ │ │ │ ├── types_proxy.go │ │ │ │ ├── types_scheduling.go │ │ │ │ ├── types_testreporting.go │ │ │ │ ├── types_tlssecurityprofile.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_backup.go │ │ │ │ ├── types_cluster_image_policy.go │ │ │ │ ├── types_cluster_monitoring.go │ │ │ │ ├── types_image_policy.go │ │ │ │ ├── types_insights.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha2 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_insights.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── console │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_console_cli_download.go │ │ │ │ ├── types_console_external_log_links.go │ │ │ │ ├── types_console_link.go │ │ │ │ ├── types_console_notification.go │ │ │ │ ├── types_console_plugin.go │ │ │ │ ├── types_console_quick_start.go │ │ │ │ ├── types_console_sample.go │ │ │ │ ├── types_console_yaml_sample.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── envtest-releases.yaml │ │ ├── features.md │ │ ├── helm │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1beta1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_helm_chart_repository.go │ │ │ │ ├── types_project_helm_chart_repository.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── image │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── docker10 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_docker.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── dockerpre012 │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_docker.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── imageregistry │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_imagepruner.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── install.go │ │ ├── kubecontrolplane │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── legacyconfig │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── serialization.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── machine │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_alibabaprovider.go │ │ │ │ ├── types_aws.go │ │ │ │ ├── types_controlplanemachineset.go │ │ │ │ ├── types_nutanixprovider.go │ │ │ │ ├── types_powervsprovider.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_openstack.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_awsprovider.go │ │ │ │ ├── types_azureprovider.go │ │ │ │ ├── types_gcpprovider.go │ │ │ │ ├── types_machine.go │ │ │ │ ├── types_machinehealthcheck.go │ │ │ │ ├── types_machineset.go │ │ │ │ ├── types_provider.go │ │ │ │ ├── types_vsphereprovider.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── monitoring │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── network │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_dnsnameresolver.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── networkoperator │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types_egressrouter.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── oauth │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── openapi │ │ │ ├── doc.go │ │ │ └── openapi.json │ │ ├── openshiftcontrolplane │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── operator │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_authentication.go │ │ │ │ ├── types_cloudcredential.go │ │ │ │ ├── types_config.go │ │ │ │ ├── types_console.go │ │ │ │ ├── types_csi_cluster_driver.go │ │ │ │ ├── types_csi_snapshot.go │ │ │ │ ├── types_dns.go │ │ │ │ ├── types_etcd.go │ │ │ │ ├── types_ingress.go │ │ │ │ ├── types_insights.go │ │ │ │ ├── types_kubeapiserver.go │ │ │ │ ├── types_kubecontrollermanager.go │ │ │ │ ├── types_kubestorageversionmigrator.go │ │ │ │ ├── types_machineconfiguration.go │ │ │ │ ├── types_network.go │ │ │ │ ├── types_olm.go │ │ │ │ ├── types_openshiftapiserver.go │ │ │ │ ├── types_openshiftcontrollermanager.go │ │ │ │ ├── types_scheduler.go │ │ │ │ ├── types_serviceca.go │ │ │ │ ├── types_servicecatalogapiserver.go │ │ │ │ ├── types_servicecatalogcontrollermanager.go │ │ │ │ ├── types_storage.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_clusterversion.go │ │ │ │ ├── types_etcdbackup.go │ │ │ │ ├── types_image_content_source_policy.go │ │ │ │ ├── types_olm.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── operatorcontrolplane │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_conditioncheck.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── osin │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── pkg │ │ │ └── serialization │ │ │ │ └── serialization.go │ │ ├── project │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── quota │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── route │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── test-route-validation.sh │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── samples │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types_config.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── security │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── servicecertsigner │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── sharedresource │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_shared_configmap.go │ │ │ │ ├── types_shared_secret.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── template │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── codec.go │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ └── user │ │ │ ├── install.go │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── legacy.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.swagger_doc_generated.go │ ├── build-machinery-go │ │ ├── .ci-operator.yaml │ │ ├── .gitignore │ │ ├── Dockerfile.commitchecker │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── doc.go │ │ ├── make │ │ │ ├── default.example.mk │ │ │ ├── default.example.mk.help.log │ │ │ ├── default.mk │ │ │ ├── doc.go │ │ │ ├── golang.example.mk │ │ │ ├── golang.example.mk.help.log │ │ │ ├── golang.mk │ │ │ ├── lib │ │ │ │ ├── doc.go │ │ │ │ ├── golang.mk │ │ │ │ ├── tmp.mk │ │ │ │ └── version.mk │ │ │ ├── operator.example.mk │ │ │ ├── operator.example.mk.help.log │ │ │ ├── operator.mk │ │ │ └── targets │ │ │ │ ├── doc.go │ │ │ │ ├── golang │ │ │ │ ├── build.mk │ │ │ │ ├── doc.go │ │ │ │ ├── test-unit.mk │ │ │ │ ├── verify-update.mk │ │ │ │ ├── version.mk │ │ │ │ └── vulncheck.mk │ │ │ │ ├── help.mk │ │ │ │ └── openshift │ │ │ │ ├── bindata.mk │ │ │ │ ├── codegen.mk │ │ │ │ ├── controller-gen.mk │ │ │ │ ├── crd-schema-gen.mk │ │ │ │ ├── deps-glide.mk │ │ │ │ ├── deps-gomod.mk │ │ │ │ ├── deps.mk │ │ │ │ ├── doc.go │ │ │ │ ├── imagebuilder.mk │ │ │ │ ├── images.mk │ │ │ │ ├── kustomize.mk │ │ │ │ ├── operator │ │ │ │ ├── doc.go │ │ │ │ ├── mom.mk │ │ │ │ ├── profile-manifests.mk │ │ │ │ ├── release.mk │ │ │ │ └── telepresence.mk │ │ │ │ ├── rpm.mk │ │ │ │ ├── yaml-patch.mk │ │ │ │ └── yq.mk │ │ └── scripts │ │ │ ├── doc.go │ │ │ ├── run-telepresence.sh │ │ │ ├── test-operator-integration.sh │ │ │ ├── update-deps.sh │ │ │ └── vulncheck.sh │ ├── client-go │ │ ├── LICENSE │ │ ├── config │ │ │ ├── applyconfigurations │ │ │ │ ├── config │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── alibabacloudplatformstatus.go │ │ │ │ │ │ ├── alibabacloudresourcetag.go │ │ │ │ │ │ ├── apiserver.go │ │ │ │ │ │ ├── apiserverencryption.go │ │ │ │ │ │ ├── apiservernamedservingcert.go │ │ │ │ │ │ ├── apiserverservingcerts.go │ │ │ │ │ │ ├── apiserverspec.go │ │ │ │ │ │ ├── audit.go │ │ │ │ │ │ ├── auditcustomrule.go │ │ │ │ │ │ ├── authentication.go │ │ │ │ │ │ ├── authenticationspec.go │ │ │ │ │ │ ├── authenticationstatus.go │ │ │ │ │ │ ├── awsdnsspec.go │ │ │ │ │ │ ├── awsingressspec.go │ │ │ │ │ │ ├── awskmsconfig.go │ │ │ │ │ │ ├── awsplatformspec.go │ │ │ │ │ │ ├── awsplatformstatus.go │ │ │ │ │ │ ├── awsresourcetag.go │ │ │ │ │ │ ├── awsserviceendpoint.go │ │ │ │ │ │ ├── azureplatformstatus.go │ │ │ │ │ │ ├── azureresourcetag.go │ │ │ │ │ │ ├── baremetalplatformloadbalancer.go │ │ │ │ │ │ ├── baremetalplatformspec.go │ │ │ │ │ │ ├── baremetalplatformstatus.go │ │ │ │ │ │ ├── basicauthidentityprovider.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── builddefaults.go │ │ │ │ │ │ ├── buildoverrides.go │ │ │ │ │ │ ├── buildspec.go │ │ │ │ │ │ ├── cloudcontrollermanagerstatus.go │ │ │ │ │ │ ├── cloudloadbalancerconfig.go │ │ │ │ │ │ ├── cloudloadbalancerips.go │ │ │ │ │ │ ├── clustercondition.go │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ ├── clusterimagepolicyspec.go │ │ │ │ │ │ ├── clusterimagepolicystatus.go │ │ │ │ │ │ ├── clusternetworkentry.go │ │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ │ ├── clusteroperatorstatus.go │ │ │ │ │ │ ├── clusteroperatorstatuscondition.go │ │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ │ ├── clusterversioncapabilitiesspec.go │ │ │ │ │ │ ├── clusterversioncapabilitiesstatus.go │ │ │ │ │ │ ├── clusterversionspec.go │ │ │ │ │ │ ├── clusterversionstatus.go │ │ │ │ │ │ ├── componentoverride.go │ │ │ │ │ │ ├── componentroutespec.go │ │ │ │ │ │ ├── componentroutestatus.go │ │ │ │ │ │ ├── conditionalupdate.go │ │ │ │ │ │ ├── conditionalupdaterisk.go │ │ │ │ │ │ ├── configmapfilereference.go │ │ │ │ │ │ ├── configmapnamereference.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── consoleauthentication.go │ │ │ │ │ │ ├── consolespec.go │ │ │ │ │ │ ├── consolestatus.go │ │ │ │ │ │ ├── customfeaturegates.go │ │ │ │ │ │ ├── customtlsprofile.go │ │ │ │ │ │ ├── deprecatedwebhooktokenauthenticator.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── dnsplatformspec.go │ │ │ │ │ │ ├── dnsspec.go │ │ │ │ │ │ ├── dnszone.go │ │ │ │ │ │ ├── equinixmetalplatformstatus.go │ │ │ │ │ │ ├── externalipconfig.go │ │ │ │ │ │ ├── externalippolicy.go │ │ │ │ │ │ ├── externalplatformspec.go │ │ │ │ │ │ ├── externalplatformstatus.go │ │ │ │ │ │ ├── extramapping.go │ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ │ ├── featuregateattributes.go │ │ │ │ │ │ ├── featuregatedetails.go │ │ │ │ │ │ ├── featuregateselection.go │ │ │ │ │ │ ├── featuregatespec.go │ │ │ │ │ │ ├── featuregatestatus.go │ │ │ │ │ │ ├── fulciocawithrekor.go │ │ │ │ │ │ ├── gcpplatformstatus.go │ │ │ │ │ │ ├── gcpresourcelabel.go │ │ │ │ │ │ ├── gcpresourcetag.go │ │ │ │ │ │ ├── gcpserviceendpoint.go │ │ │ │ │ │ ├── githubidentityprovider.go │ │ │ │ │ │ ├── gitlabidentityprovider.go │ │ │ │ │ │ ├── googleidentityprovider.go │ │ │ │ │ │ ├── htpasswdidentityprovider.go │ │ │ │ │ │ ├── hubsource.go │ │ │ │ │ │ ├── hubsourcestatus.go │ │ │ │ │ │ ├── ibmcloudplatformspec.go │ │ │ │ │ │ ├── ibmcloudplatformstatus.go │ │ │ │ │ │ ├── ibmcloudserviceendpoint.go │ │ │ │ │ │ ├── identityprovider.go │ │ │ │ │ │ ├── identityproviderconfig.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ │ │ ├── imagecontentpolicyspec.go │ │ │ │ │ │ ├── imagedigestmirrors.go │ │ │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ │ │ ├── imagedigestmirrorsetspec.go │ │ │ │ │ │ ├── imagelabel.go │ │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ │ ├── imagepolicyspec.go │ │ │ │ │ │ ├── imagepolicystatus.go │ │ │ │ │ │ ├── imagespec.go │ │ │ │ │ │ ├── imagestatus.go │ │ │ │ │ │ ├── imagetagmirrors.go │ │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ │ ├── imagetagmirrorsetspec.go │ │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ │ ├── infrastructurespec.go │ │ │ │ │ │ ├── infrastructurestatus.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── ingressplatformspec.go │ │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ │ ├── keystoneidentityprovider.go │ │ │ │ │ │ ├── kmsconfig.go │ │ │ │ │ │ ├── kubevirtplatformstatus.go │ │ │ │ │ │ ├── ldapattributemapping.go │ │ │ │ │ │ ├── ldapidentityprovider.go │ │ │ │ │ │ ├── loadbalancer.go │ │ │ │ │ │ ├── maxagepolicy.go │ │ │ │ │ │ ├── mtumigration.go │ │ │ │ │ │ ├── mtumigrationvalues.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── networkdiagnostics.go │ │ │ │ │ │ ├── networkdiagnosticssourceplacement.go │ │ │ │ │ │ ├── networkdiagnosticstargetplacement.go │ │ │ │ │ │ ├── networkmigration.go │ │ │ │ │ │ ├── networkspec.go │ │ │ │ │ │ ├── networkstatus.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── nodespec.go │ │ │ │ │ │ ├── nodestatus.go │ │ │ │ │ │ ├── nutanixfailuredomain.go │ │ │ │ │ │ ├── nutanixplatformloadbalancer.go │ │ │ │ │ │ ├── nutanixplatformspec.go │ │ │ │ │ │ ├── nutanixplatformstatus.go │ │ │ │ │ │ ├── nutanixprismelementendpoint.go │ │ │ │ │ │ ├── nutanixprismendpoint.go │ │ │ │ │ │ ├── nutanixresourceidentifier.go │ │ │ │ │ │ ├── oauth.go │ │ │ │ │ │ ├── oauthremoteconnectioninfo.go │ │ │ │ │ │ ├── oauthspec.go │ │ │ │ │ │ ├── oauthtemplates.go │ │ │ │ │ │ ├── objectreference.go │ │ │ │ │ │ ├── oidcclientconfig.go │ │ │ │ │ │ ├── oidcclientreference.go │ │ │ │ │ │ ├── oidcclientstatus.go │ │ │ │ │ │ ├── oidcprovider.go │ │ │ │ │ │ ├── openidclaims.go │ │ │ │ │ │ ├── openididentityprovider.go │ │ │ │ │ │ ├── openstackplatformloadbalancer.go │ │ │ │ │ │ ├── openstackplatformspec.go │ │ │ │ │ │ ├── openstackplatformstatus.go │ │ │ │ │ │ ├── operandversion.go │ │ │ │ │ │ ├── operatorhub.go │ │ │ │ │ │ ├── operatorhubspec.go │ │ │ │ │ │ ├── operatorhubstatus.go │ │ │ │ │ │ ├── ovirtplatformloadbalancer.go │ │ │ │ │ │ ├── ovirtplatformstatus.go │ │ │ │ │ │ ├── pki.go │ │ │ │ │ │ ├── pkicertificatesubject.go │ │ │ │ │ │ ├── platformspec.go │ │ │ │ │ │ ├── platformstatus.go │ │ │ │ │ │ ├── policy.go │ │ │ │ │ │ ├── policyfulciosubject.go │ │ │ │ │ │ ├── policyidentity.go │ │ │ │ │ │ ├── policymatchexactrepository.go │ │ │ │ │ │ ├── policymatchremapidentity.go │ │ │ │ │ │ ├── policyrootoftrust.go │ │ │ │ │ │ ├── powervsplatformspec.go │ │ │ │ │ │ ├── powervsplatformstatus.go │ │ │ │ │ │ ├── powervsserviceendpoint.go │ │ │ │ │ │ ├── prefixedclaimmapping.go │ │ │ │ │ │ ├── profilecustomizations.go │ │ │ │ │ │ ├── project.go │ │ │ │ │ │ ├── projectspec.go │ │ │ │ │ │ ├── promqlclustercondition.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ ├── proxyspec.go │ │ │ │ │ │ ├── proxystatus.go │ │ │ │ │ │ ├── publickey.go │ │ │ │ │ │ ├── registrylocation.go │ │ │ │ │ │ ├── registrysources.go │ │ │ │ │ │ ├── release.go │ │ │ │ │ │ ├── repositorydigestmirrors.go │ │ │ │ │ │ ├── requestheaderidentityprovider.go │ │ │ │ │ │ ├── requiredhstspolicy.go │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ ├── schedulerspec.go │ │ │ │ │ │ ├── secretnamereference.go │ │ │ │ │ │ ├── signaturestore.go │ │ │ │ │ │ ├── templatereference.go │ │ │ │ │ │ ├── tlsprofilespec.go │ │ │ │ │ │ ├── tlssecurityprofile.go │ │ │ │ │ │ ├── tokenclaimmapping.go │ │ │ │ │ │ ├── tokenclaimmappings.go │ │ │ │ │ │ ├── tokenclaimorexpressionmapping.go │ │ │ │ │ │ ├── tokenclaimvalidationrule.go │ │ │ │ │ │ ├── tokenconfig.go │ │ │ │ │ │ ├── tokenissuer.go │ │ │ │ │ │ ├── tokenrequiredclaim.go │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ ├── updatehistory.go │ │ │ │ │ │ ├── usernameclaimmapping.go │ │ │ │ │ │ ├── usernameprefix.go │ │ │ │ │ │ ├── vspherefailuredomainhostgroup.go │ │ │ │ │ │ ├── vspherefailuredomainregionaffinity.go │ │ │ │ │ │ ├── vspherefailuredomainzoneaffinity.go │ │ │ │ │ │ ├── vsphereplatformfailuredomainspec.go │ │ │ │ │ │ ├── vsphereplatformloadbalancer.go │ │ │ │ │ │ ├── vsphereplatformnodenetworking.go │ │ │ │ │ │ ├── vsphereplatformnodenetworkingspec.go │ │ │ │ │ │ ├── vsphereplatformspec.go │ │ │ │ │ │ ├── vsphereplatformstatus.go │ │ │ │ │ │ ├── vsphereplatformtopology.go │ │ │ │ │ │ ├── vsphereplatformvcenterspec.go │ │ │ │ │ │ └── webhooktokenauthenticator.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── backup.go │ │ │ │ │ │ ├── backupspec.go │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ ├── clusterimagepolicyspec.go │ │ │ │ │ │ ├── clusterimagepolicystatus.go │ │ │ │ │ │ ├── clustermonitoring.go │ │ │ │ │ │ ├── clustermonitoringspec.go │ │ │ │ │ │ ├── etcdbackupspec.go │ │ │ │ │ │ ├── fulciocawithrekor.go │ │ │ │ │ │ ├── gatherconfig.go │ │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ │ ├── imagepolicyspec.go │ │ │ │ │ │ ├── imagepolicystatus.go │ │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ │ ├── insightsdatagatherspec.go │ │ │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ │ │ ├── pki.go │ │ │ │ │ │ ├── pkicertificatesubject.go │ │ │ │ │ │ ├── policy.go │ │ │ │ │ │ ├── policyfulciosubject.go │ │ │ │ │ │ ├── policyidentity.go │ │ │ │ │ │ ├── policymatchexactrepository.go │ │ │ │ │ │ ├── policymatchremapidentity.go │ │ │ │ │ │ ├── policyrootoftrust.go │ │ │ │ │ │ ├── publickey.go │ │ │ │ │ │ ├── retentionnumberconfig.go │ │ │ │ │ │ ├── retentionpolicy.go │ │ │ │ │ │ ├── retentionsizeconfig.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ └── userdefinedmonitoring.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ ├── gatherconfig.go │ │ │ │ │ │ ├── gathererconfig.go │ │ │ │ │ │ ├── gatherers.go │ │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ │ ├── insightsdatagatherspec.go │ │ │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ │ │ └── storage.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── config │ │ │ │ │ ├── v1 │ │ │ │ │ ├── apiserver.go │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ ├── config_client.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── featuregate.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── oauth.go │ │ │ │ │ ├── operatorhub.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── scheduler.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── backup.go │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ ├── clustermonitoring.go │ │ │ │ │ ├── config_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ └── insightsdatagather.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── config_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── insightsdatagather.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── config │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── apiserver.go │ │ │ │ │ │ ├── authentication.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── oauth.go │ │ │ │ │ │ ├── operatorhub.go │ │ │ │ │ │ ├── project.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ └── scheduler.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── backup.go │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ ├── clustermonitoring.go │ │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── config │ │ │ │ ├── v1 │ │ │ │ ├── apiserver.go │ │ │ │ ├── authentication.go │ │ │ │ ├── build.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clusteroperator.go │ │ │ │ ├── clusterversion.go │ │ │ │ ├── console.go │ │ │ │ ├── dns.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── featuregate.go │ │ │ │ ├── image.go │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ ├── imagepolicy.go │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ ├── infrastructure.go │ │ │ │ ├── ingress.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── oauth.go │ │ │ │ ├── operatorhub.go │ │ │ │ ├── project.go │ │ │ │ ├── proxy.go │ │ │ │ └── scheduler.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── backup.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clustermonitoring.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── imagepolicy.go │ │ │ │ └── insightsdatagather.go │ │ │ │ └── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── insightsdatagather.go │ │ └── operator │ │ │ ├── applyconfigurations │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── operator │ │ │ │ └── v1 │ │ │ │ ├── accesslogging.go │ │ │ │ ├── additionalnetworkdefinition.go │ │ │ │ ├── additionalroutingcapabilities.go │ │ │ │ ├── addpage.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authenticationspec.go │ │ │ │ ├── authenticationstatus.go │ │ │ │ ├── awsclassicloadbalancerparameters.go │ │ │ │ ├── awscsidriverconfigspec.go │ │ │ │ ├── awsefsvolumemetrics.go │ │ │ │ ├── awsefsvolumemetricsrecursivewalkconfig.go │ │ │ │ ├── awsloadbalancerparameters.go │ │ │ │ ├── awsnetworkloadbalancerparameters.go │ │ │ │ ├── awssubnets.go │ │ │ │ ├── azurecsidriverconfigspec.go │ │ │ │ ├── azurediskencryptionset.go │ │ │ │ ├── capability.go │ │ │ │ ├── capabilityvisibility.go │ │ │ │ ├── clienttls.go │ │ │ │ ├── cloudcredential.go │ │ │ │ ├── cloudcredentialspec.go │ │ │ │ ├── cloudcredentialstatus.go │ │ │ │ ├── clustercsidriver.go │ │ │ │ ├── clustercsidriverspec.go │ │ │ │ ├── clustercsidriverstatus.go │ │ │ │ ├── clusternetworkentry.go │ │ │ │ ├── config.go │ │ │ │ ├── configmapfilereference.go │ │ │ │ ├── configspec.go │ │ │ │ ├── configstatus.go │ │ │ │ ├── console.go │ │ │ │ ├── consoleconfigroute.go │ │ │ │ ├── consolecustomization.go │ │ │ │ ├── consoleproviders.go │ │ │ │ ├── consolespec.go │ │ │ │ ├── consolestatus.go │ │ │ │ ├── containerloggingdestinationparameters.go │ │ │ │ ├── csidriverconfigspec.go │ │ │ │ ├── csisnapshotcontroller.go │ │ │ │ ├── csisnapshotcontrollerspec.go │ │ │ │ ├── csisnapshotcontrollerstatus.go │ │ │ │ ├── defaultnetworkdefinition.go │ │ │ │ ├── developerconsolecatalogcategory.go │ │ │ │ ├── developerconsolecatalogcategorymeta.go │ │ │ │ ├── developerconsolecatalogcustomization.go │ │ │ │ ├── developerconsolecatalogtypes.go │ │ │ │ ├── dns.go │ │ │ │ ├── dnscache.go │ │ │ │ ├── dnsnodeplacement.go │ │ │ │ ├── dnsovertlsconfig.go │ │ │ │ ├── dnsspec.go │ │ │ │ ├── dnsstatus.go │ │ │ │ ├── dnstransportconfig.go │ │ │ │ ├── egressipconfig.go │ │ │ │ ├── endpointpublishingstrategy.go │ │ │ │ ├── etcd.go │ │ │ │ ├── etcdspec.go │ │ │ │ ├── etcdstatus.go │ │ │ │ ├── exportnetworkflows.go │ │ │ │ ├── featuresmigration.go │ │ │ │ ├── filereferencesource.go │ │ │ │ ├── forwardplugin.go │ │ │ │ ├── gatewayconfig.go │ │ │ │ ├── gathererstatus.go │ │ │ │ ├── gatherstatus.go │ │ │ │ ├── gcpcsidriverconfigspec.go │ │ │ │ ├── gcpkmskeyreference.go │ │ │ │ ├── gcploadbalancerparameters.go │ │ │ │ ├── generationstatus.go │ │ │ │ ├── healthcheck.go │ │ │ │ ├── hostnetworkstrategy.go │ │ │ │ ├── httpcompressionpolicy.go │ │ │ │ ├── hybridoverlayconfig.go │ │ │ │ ├── ibmcloudcsidriverconfigspec.go │ │ │ │ ├── ibmloadbalancerparameters.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingresscontroller.go │ │ │ │ ├── ingresscontrollercapturehttpcookie.go │ │ │ │ ├── ingresscontrollercapturehttpcookieunion.go │ │ │ │ ├── ingresscontrollercapturehttpheader.go │ │ │ │ ├── ingresscontrollercapturehttpheaders.go │ │ │ │ ├── ingresscontrollerhttpheader.go │ │ │ │ ├── ingresscontrollerhttpheaderactions.go │ │ │ │ ├── ingresscontrollerhttpheaderactionunion.go │ │ │ │ ├── ingresscontrollerhttpheaders.go │ │ │ │ ├── ingresscontrollerhttpuniqueidheaderpolicy.go │ │ │ │ ├── ingresscontrollerlogging.go │ │ │ │ ├── ingresscontrollersethttpheader.go │ │ │ │ ├── ingresscontrollerspec.go │ │ │ │ ├── ingresscontrollerstatus.go │ │ │ │ ├── ingresscontrollertuningoptions.go │ │ │ │ ├── insightsoperator.go │ │ │ │ ├── insightsoperatorspec.go │ │ │ │ ├── insightsoperatorstatus.go │ │ │ │ ├── insightsreport.go │ │ │ │ ├── ipamconfig.go │ │ │ │ ├── ipfixconfig.go │ │ │ │ ├── ipsecconfig.go │ │ │ │ ├── ipsecfullmodeconfig.go │ │ │ │ ├── ipv4gatewayconfig.go │ │ │ │ ├── ipv4ovnkubernetesconfig.go │ │ │ │ ├── ipv6gatewayconfig.go │ │ │ │ ├── ipv6ovnkubernetesconfig.go │ │ │ │ ├── kubeapiserver.go │ │ │ │ ├── kubeapiserverspec.go │ │ │ │ ├── kubeapiserverstatus.go │ │ │ │ ├── kubecontrollermanager.go │ │ │ │ ├── kubecontrollermanagerspec.go │ │ │ │ ├── kubecontrollermanagerstatus.go │ │ │ │ ├── kubescheduler.go │ │ │ │ ├── kubeschedulerspec.go │ │ │ │ ├── kubeschedulerstatus.go │ │ │ │ ├── kubestorageversionmigrator.go │ │ │ │ ├── kubestorageversionmigratorspec.go │ │ │ │ ├── kubestorageversionmigratorstatus.go │ │ │ │ ├── loadbalancerstrategy.go │ │ │ │ ├── loggingdestination.go │ │ │ │ ├── logo.go │ │ │ │ ├── machineconfiguration.go │ │ │ │ ├── machineconfigurationspec.go │ │ │ │ ├── machineconfigurationstatus.go │ │ │ │ ├── machinemanager.go │ │ │ │ ├── machinemanagerselector.go │ │ │ │ ├── managedbootimages.go │ │ │ │ ├── mtumigration.go │ │ │ │ ├── mtumigrationvalues.go │ │ │ │ ├── netflowconfig.go │ │ │ │ ├── network.go │ │ │ │ ├── networkmigration.go │ │ │ │ ├── networkspec.go │ │ │ │ ├── networkstatus.go │ │ │ │ ├── nodedisruptionpolicyclusterstatus.go │ │ │ │ ├── nodedisruptionpolicyconfig.go │ │ │ │ ├── nodedisruptionpolicyspecaction.go │ │ │ │ ├── nodedisruptionpolicyspecfile.go │ │ │ │ ├── nodedisruptionpolicyspecsshkey.go │ │ │ │ ├── nodedisruptionpolicyspecunit.go │ │ │ │ ├── nodedisruptionpolicystatus.go │ │ │ │ ├── nodedisruptionpolicystatusaction.go │ │ │ │ ├── nodedisruptionpolicystatusfile.go │ │ │ │ ├── nodedisruptionpolicystatussshkey.go │ │ │ │ ├── nodedisruptionpolicystatusunit.go │ │ │ │ ├── nodeplacement.go │ │ │ │ ├── nodeportstrategy.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── oauthapiserverstatus.go │ │ │ │ ├── olm.go │ │ │ │ ├── olmspec.go │ │ │ │ ├── olmstatus.go │ │ │ │ ├── openshiftapiserver.go │ │ │ │ ├── openshiftapiserverspec.go │ │ │ │ ├── openshiftapiserverstatus.go │ │ │ │ ├── openshiftcontrollermanager.go │ │ │ │ ├── openshiftcontrollermanagerspec.go │ │ │ │ ├── openshiftcontrollermanagerstatus.go │ │ │ │ ├── openshiftsdnconfig.go │ │ │ │ ├── openstackloadbalancerparameters.go │ │ │ │ ├── operatorcondition.go │ │ │ │ ├── operatorspec.go │ │ │ │ ├── operatorstatus.go │ │ │ │ ├── ovnkubernetesconfig.go │ │ │ │ ├── partialselector.go │ │ │ │ ├── perspective.go │ │ │ │ ├── perspectivevisibility.go │ │ │ │ ├── pinnedresourcereference.go │ │ │ │ ├── policyauditconfig.go │ │ │ │ ├── privatestrategy.go │ │ │ │ ├── projectaccess.go │ │ │ │ ├── providerloadbalancerparameters.go │ │ │ │ ├── proxyconfig.go │ │ │ │ ├── quickstarts.go │ │ │ │ ├── reloadservice.go │ │ │ │ ├── resourceattributesaccessreview.go │ │ │ │ ├── restartservice.go │ │ │ │ ├── routeadmissionpolicy.go │ │ │ │ ├── server.go │ │ │ │ ├── serviceaccountissuerstatus.go │ │ │ │ ├── serviceca.go │ │ │ │ ├── servicecaspec.go │ │ │ │ ├── servicecastatus.go │ │ │ │ ├── servicecatalogapiserver.go │ │ │ │ ├── servicecatalogapiserverspec.go │ │ │ │ ├── servicecatalogapiserverstatus.go │ │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ │ ├── servicecatalogcontrollermanagerspec.go │ │ │ │ ├── servicecatalogcontrollermanagerstatus.go │ │ │ │ ├── sflowconfig.go │ │ │ │ ├── simplemacvlanconfig.go │ │ │ │ ├── staticipamaddresses.go │ │ │ │ ├── staticipamconfig.go │ │ │ │ ├── staticipamdns.go │ │ │ │ ├── staticipamroutes.go │ │ │ │ ├── staticpodoperatorspec.go │ │ │ │ ├── staticpodoperatorstatus.go │ │ │ │ ├── statuspageprovider.go │ │ │ │ ├── storage.go │ │ │ │ ├── storagespec.go │ │ │ │ ├── storagestatus.go │ │ │ │ ├── syslogloggingdestinationparameters.go │ │ │ │ ├── theme.go │ │ │ │ ├── upstream.go │ │ │ │ ├── upstreamresolvers.go │ │ │ │ └── vspherecsidriverconfigspec.go │ │ │ └── clientset │ │ │ └── versioned │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── operator │ │ │ └── v1 │ │ │ ├── authentication.go │ │ │ ├── cloudcredential.go │ │ │ ├── clustercsidriver.go │ │ │ ├── config.go │ │ │ ├── console.go │ │ │ ├── csisnapshotcontroller.go │ │ │ ├── dns.go │ │ │ ├── doc.go │ │ │ ├── etcd.go │ │ │ ├── generated_expansion.go │ │ │ ├── ingresscontroller.go │ │ │ ├── insightsoperator.go │ │ │ ├── kubeapiserver.go │ │ │ ├── kubecontrollermanager.go │ │ │ ├── kubescheduler.go │ │ │ ├── kubestorageversionmigrator.go │ │ │ ├── machineconfiguration.go │ │ │ ├── network.go │ │ │ ├── olm.go │ │ │ ├── openshiftapiserver.go │ │ │ ├── openshiftcontrollermanager.go │ │ │ ├── operator_client.go │ │ │ ├── serviceca.go │ │ │ ├── servicecatalogapiserver.go │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ └── storage.go │ └── library-go │ │ ├── LICENSE │ │ └── pkg │ │ ├── apiserver │ │ └── jsonpatch │ │ │ └── jsonpatch.go │ │ ├── authorization │ │ └── hardcodedauthorizer │ │ │ └── metrics.go │ │ ├── config │ │ ├── client │ │ │ ├── client_config.go │ │ │ └── transport.go │ │ ├── clusteroperator │ │ │ └── v1helpers │ │ │ │ └── status.go │ │ ├── clusterstatus │ │ │ └── clusterstatus.go │ │ ├── configdefaults │ │ │ └── config_default.go │ │ ├── leaderelection │ │ │ └── leaderelection.go │ │ └── serving │ │ │ ├── options.go │ │ │ └── server.go │ │ ├── controller │ │ ├── controllercmd │ │ │ ├── builder.go │ │ │ ├── cmd.go │ │ │ └── flags.go │ │ ├── factory │ │ │ ├── base_controller.go │ │ │ ├── controller_context.go │ │ │ ├── eventfilters.go │ │ │ ├── factory.go │ │ │ └── interfaces.go │ │ └── fileobserver │ │ │ ├── OWNERS │ │ │ ├── observer.go │ │ │ └── observer_polling.go │ │ ├── crypto │ │ ├── OWNERS │ │ ├── crypto.go │ │ └── rotation.go │ │ ├── network │ │ ├── dialer.go │ │ ├── dialer_linux.go │ │ └── dialer_others.go │ │ ├── operator │ │ ├── deploymentcontroller │ │ │ ├── deployment_controller.go │ │ │ └── helpers.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ ├── recorder.go │ │ │ ├── recorder_in_memory.go │ │ │ ├── recorder_logging.go │ │ │ └── recorder_upstream.go │ │ ├── management │ │ │ └── management_state.go │ │ ├── resource │ │ │ ├── resourceapply │ │ │ │ ├── admissionregistration.go │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apiregistration.go │ │ │ │ ├── apps.go │ │ │ │ ├── core.go │ │ │ │ ├── credentialsrequest.go │ │ │ │ ├── generic.go │ │ │ │ ├── json_patch_helpers.go │ │ │ │ ├── migration.go │ │ │ │ ├── monitoring.go │ │ │ │ ├── networking.go │ │ │ │ ├── policy.go │ │ │ │ ├── rbac.go │ │ │ │ ├── resource_cache.go │ │ │ │ ├── storage.go │ │ │ │ ├── unstructured.go │ │ │ │ └── volumesnapshotclass.go │ │ │ ├── resourcehelper │ │ │ │ ├── event_helpers.go │ │ │ │ └── resource_helpers.go │ │ │ ├── resourcemerge │ │ │ │ ├── admissionregistration.go │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apps.go │ │ │ │ ├── generic_config_merger.go │ │ │ │ └── object_merger.go │ │ │ └── resourceread │ │ │ │ ├── admission.go │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apiregistration.go │ │ │ │ ├── apps.go │ │ │ │ ├── config.go │ │ │ │ ├── core.go │ │ │ │ ├── generic.go │ │ │ │ ├── images.go │ │ │ │ ├── migration.go │ │ │ │ ├── networking.go │ │ │ │ ├── policy.go │ │ │ │ ├── rbac.go │ │ │ │ ├── route.go │ │ │ │ ├── storage.go │ │ │ │ └── unstructured.go │ │ ├── staticresourcecontroller │ │ │ └── static_resource_controller.go │ │ ├── status │ │ │ ├── condition.go │ │ │ ├── inertia.go │ │ │ ├── status_controller.go │ │ │ └── version.go │ │ └── v1helpers │ │ │ ├── args.go │ │ │ ├── canonicalize.go │ │ │ ├── core_getters.go │ │ │ ├── fake_informers.go │ │ │ ├── helpers.go │ │ │ ├── informers.go │ │ │ ├── interfaces.go │ │ │ └── test_helpers.go │ │ └── serviceability │ │ ├── logrus.go │ │ ├── panic.go │ │ ├── profiler.go │ │ └── serviceability.go ├── operator-framework │ └── operator-lib │ │ ├── LICENSE │ │ └── proxy │ │ ├── doc.go │ │ └── proxy.go ├── pelletier │ └── go-toml │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── azure-pipelines.yml │ │ ├── benchmark.sh │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── localtime.go │ │ ├── marshal.go │ │ ├── marshal_OrderPreserve_test.toml │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomlpub.go │ │ ├── tomltree_create.go │ │ ├── tomltree_write.go │ │ ├── tomltree_writepub.go │ │ └── v2 │ │ ├── .dockerignore │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── .goreleaser.yaml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ci.sh │ │ ├── decode.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ ├── ast │ │ │ ├── ast.go │ │ │ ├── builder.go │ │ │ └── kind.go │ │ ├── danger │ │ │ ├── danger.go │ │ │ └── typeid.go │ │ └── tracker │ │ │ ├── key.go │ │ │ ├── seen.go │ │ │ └── tracker.go │ │ ├── localtime.go │ │ ├── marshaler.go │ │ ├── parser.go │ │ ├── scanner.go │ │ ├── strict.go │ │ ├── toml.abnf │ │ ├── types.go │ │ ├── unmarshaler.go │ │ └── utf8.go ├── phayes │ └── checkstyle │ │ ├── .scrutinizer.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── checkstyle.go │ │ └── godoc.go ├── pkg │ ├── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go │ └── profile │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ └── profile.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── polyfloyd │ └── go-errorlint │ │ ├── LICENSE │ │ └── errorlint │ │ ├── allowed.go │ │ ├── analysis.go │ │ ├── lint.go │ │ └── printf.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 │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil │ │ │ ├── lint.go │ │ │ ├── promlint │ │ │ │ ├── problem.go │ │ │ │ ├── promlint.go │ │ │ │ ├── validation.go │ │ │ │ └── validations │ │ │ │ │ ├── counter_validations.go │ │ │ │ │ ├── duplicate_validations.go │ │ │ │ │ ├── generic_name_validations.go │ │ │ │ │ ├── help_validations.go │ │ │ │ │ ├── histogram_validations.go │ │ │ │ │ └── units.go │ │ │ └── testutil.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── quasilyte │ ├── go-ruleguard │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── goenv │ │ │ │ └── goenv.go │ │ │ ├── golist │ │ │ │ └── golist.go │ │ │ ├── xsrcimporter │ │ │ │ └── xsrcimporter.go │ │ │ └── xtypes │ │ │ │ └── xtypes.go │ │ └── ruleguard │ │ │ ├── ast_walker.go │ │ │ ├── bundle.go │ │ │ ├── engine.go │ │ │ ├── filters.go │ │ │ ├── go_version.go │ │ │ ├── gorule.go │ │ │ ├── goutil │ │ │ ├── goutil.go │ │ │ └── resolve.go │ │ │ ├── importer.go │ │ │ ├── ir │ │ │ ├── filter_op.gen.go │ │ │ ├── gen_filter_op.go │ │ │ └── ir.go │ │ │ ├── ir_loader.go │ │ │ ├── ir_utils.go │ │ │ ├── irconv │ │ │ └── irconv.go │ │ │ ├── libdsl.go │ │ │ ├── match_data.go │ │ │ ├── nodepath.go │ │ │ ├── profiling │ │ │ ├── no_labels.go │ │ │ └── with_labels.go │ │ │ ├── quasigo │ │ │ ├── compile.go │ │ │ ├── debug_info.go │ │ │ ├── disasm.go │ │ │ ├── env.go │ │ │ ├── eval.go │ │ │ ├── gen_opcodes.go │ │ │ ├── opcode_string.go │ │ │ ├── opcodes.gen.go │ │ │ ├── quasigo.go │ │ │ ├── stdlib │ │ │ │ ├── qfmt │ │ │ │ │ └── qfmt.go │ │ │ │ ├── qstrconv │ │ │ │ │ └── qstrconv.go │ │ │ │ └── qstrings │ │ │ │ │ └── qstrings.go │ │ │ └── utils.go │ │ │ ├── ruleguard.go │ │ │ ├── runner.go │ │ │ ├── textmatch │ │ │ ├── compile.go │ │ │ ├── matchers.go │ │ │ └── textmatch.go │ │ │ ├── typematch │ │ │ ├── patternop_string.go │ │ │ └── typematch.go │ │ │ └── utils.go │ ├── gogrep │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── compile.go │ │ ├── compile_import.go │ │ ├── gen_operations.go │ │ ├── gogrep.go │ │ ├── instructions.go │ │ ├── internal │ │ │ └── stdinfo │ │ │ │ └── stdinfo.go │ │ ├── match.go │ │ ├── nodetag │ │ │ └── nodetag.go │ │ ├── operation_string.go │ │ ├── operations.gen.go │ │ ├── parse.go │ │ └── slices.go │ ├── regex │ │ └── syntax │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ast.go │ │ │ ├── errors.go │ │ │ ├── lexer.go │ │ │ ├── operation.go │ │ │ ├── operation_string.go │ │ │ ├── parser.go │ │ │ ├── pos.go │ │ │ ├── tokenkind_string.go │ │ │ └── utils.go │ └── stdinfo │ │ ├── LICENSE │ │ ├── stdinfo.go │ │ └── stdinfo_gen.go ├── rivo │ └── uniseg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc.go │ │ ├── grapheme.go │ │ └── properties.go ├── robfig │ └── cron │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constantdelay.go │ │ ├── cron.go │ │ ├── doc.go │ │ ├── parser.go │ │ └── spec.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── ryancurrah │ └── gomodguard │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── Dockerfile │ │ ├── Dockerfile.goreleaser │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cmd.go │ │ └── gomodguard.go ├── ryanrolds │ └── sqlclosecheck │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── sanposhiho │ └── wastedassign │ │ └── v2 │ │ ├── LICENSE │ │ ├── README.md │ │ └── wastedassign.go ├── sashamelentyev │ ├── interfacebloat │ │ ├── LICENSE │ │ └── pkg │ │ │ └── analyzer │ │ │ └── analyzer.go │ └── usestdlibvars │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ ├── analyzer.go │ │ └── internal │ │ └── mapping │ │ └── mapping.go ├── securego │ └── gosec │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── USERS.md │ │ ├── action.yml │ │ ├── analyzer.go │ │ ├── call_list.go │ │ ├── config.go │ │ ├── cosign.pub │ │ ├── cwe │ │ ├── data.go │ │ └── types.go │ │ ├── entrypoint.sh │ │ ├── errors.go │ │ ├── helpers.go │ │ ├── import_tracker.go │ │ ├── install.sh │ │ ├── issue.go │ │ ├── renovate.json │ │ ├── report.go │ │ ├── resolve.go │ │ ├── rule.go │ │ └── rules │ │ ├── archive.go │ │ ├── bad_defer.go │ │ ├── bind.go │ │ ├── blocklist.go │ │ ├── decompression-bomb.go │ │ ├── directory-traversal.go │ │ ├── errors.go │ │ ├── fileperms.go │ │ ├── hardcoded_credentials.go │ │ ├── http_serve.go │ │ ├── implicit_aliasing.go │ │ ├── integer_overflow.go │ │ ├── math_big_rat.go │ │ ├── pprof.go │ │ ├── rand.go │ │ ├── readfile.go │ │ ├── rsa.go │ │ ├── rulelist.go │ │ ├── slowloris.go │ │ ├── sql.go │ │ ├── ssh.go │ │ ├── ssrf.go │ │ ├── subproc.go │ │ ├── tempfiles.go │ │ ├── templates.go │ │ ├── tls.go │ │ ├── tls_config.go │ │ ├── unsafe.go │ │ └── weakcrypto.go ├── sergi │ └── go-diff │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── diffmatchpatch │ │ ├── diff.go │ │ ├── diffmatchpatch.go │ │ ├── match.go │ │ ├── mathutil.go │ │ ├── operation_string.go │ │ ├── patch.go │ │ └── stringutil.go ├── shazow │ └── go-diff │ │ ├── LICENSE │ │ └── difflib │ │ └── differ.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── sivchari │ ├── containedctx │ │ ├── .golangci.yml │ │ ├── LICENCE │ │ ├── README.md │ │ └── containedctx.go │ ├── nosnakecase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── nosnakecase.go │ └── tenv │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── tenv.go │ │ └── tenv.png ├── sonatard │ └── noctx │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ngfunc │ │ ├── main.go │ │ ├── report.go │ │ └── types.go │ │ ├── noctx.go │ │ └── reqwithoutctx │ │ ├── main.go │ │ ├── report.go │ │ └── ssa.go ├── sourcegraph │ └── go-diff │ │ ├── LICENSE │ │ └── diff │ │ ├── diff.go │ │ ├── doc.go │ │ ├── parse.go │ │ ├── print.go │ │ └── reader_util.go ├── spf13 │ ├── afero │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default_notepad.go │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.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 │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── experimental_logger.go │ │ ├── flags.go │ │ ├── fs.go │ │ ├── internal │ │ └── encoding │ │ │ ├── decoder.go │ │ │ ├── dotenv │ │ │ ├── codec.go │ │ │ └── map_utils.go │ │ │ ├── encoder.go │ │ │ ├── error.go │ │ │ ├── hcl │ │ │ └── codec.go │ │ │ ├── ini │ │ │ ├── codec.go │ │ │ └── map_utils.go │ │ │ ├── javaproperties │ │ │ ├── codec.go │ │ │ └── map_utils.go │ │ │ ├── json │ │ │ └── codec.go │ │ │ ├── toml │ │ │ ├── codec.go │ │ │ └── codec2.go │ │ │ └── yaml │ │ │ ├── codec.go │ │ │ ├── yaml2.go │ │ │ └── yaml3.go │ │ ├── logger.go │ │ ├── util.go │ │ ├── viper.go │ │ ├── viper_go1_15.go │ │ ├── viper_go1_16.go │ │ ├── watch.go │ │ └── watch_wasm.go ├── ssgreg │ └── nlreturn │ │ └── v2 │ │ ├── LICENSE │ │ └── pkg │ │ └── nlreturn │ │ └── nlreturn.go ├── stbenjam │ └── no-sprintf-host-port │ │ ├── LICENSE │ │ └── pkg │ │ └── analyzer │ │ └── analyzer.go ├── stoewer │ └── go-strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── camel.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── kebab.go │ │ └── snake.go ├── stretchr │ ├── objx │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── accessors.go │ │ ├── conversions.go │ │ ├── doc.go │ │ ├── map.go │ │ ├── mutations.go │ │ ├── security.go │ │ ├── tests.go │ │ ├── type_specific.go │ │ ├── type_specific_codegen.go │ │ └── value.go │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ ├── mock │ │ ├── doc.go │ │ └── mock.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── subosito │ └── gotenv │ │ ├── .env │ │ ├── .env.invalid │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go ├── tdakkota │ └── asciicheck │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ └── asciicheck.go ├── tetafro │ └── godot │ │ ├── .gitignore │ │ ├── .godot.yaml │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── checks.go │ │ ├── getters.go │ │ ├── godot.go │ │ └── settings.go ├── tidwall │ ├── gjson │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SYNTAX.md │ │ └── gjson.go │ ├── match │ │ ├── LICENSE │ │ ├── README.md │ │ └── match.go │ └── pretty │ │ ├── LICENSE │ │ ├── README.md │ │ └── pretty.go ├── timakin │ └── bodyclose │ │ ├── LICENSE │ │ └── passes │ │ └── bodyclose │ │ └── bodyclose.go ├── timonwong │ └── loggercheck │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── internal │ │ ├── bytebufferpool │ │ │ └── pool.go │ │ ├── checkers │ │ │ ├── checker.go │ │ │ ├── common.go │ │ │ ├── general.go │ │ │ ├── printf │ │ │ │ └── printf.go │ │ │ └── zap.go │ │ ├── rules │ │ │ └── rules.go │ │ ├── sets │ │ │ └── string.go │ │ └── stringutil │ │ │ └── is.go │ │ ├── loggercheck.go │ │ ├── options.go │ │ └── staticrules.go ├── tomarrell │ └── wrapcheck │ │ └── v2 │ │ ├── LICENSE │ │ └── wrapcheck │ │ └── wrapcheck.go ├── tommy-muehle │ └── go-mnd │ │ └── v2 │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── action.yml │ │ ├── analyzer.go │ │ ├── checks │ │ ├── argument.go │ │ ├── assign.go │ │ ├── case.go │ │ ├── checks.go │ │ ├── condition.go │ │ ├── operation.go │ │ └── return.go │ │ ├── config │ │ └── config.go │ │ └── entrypoint.sh ├── ultraware │ ├── funlen │ │ ├── LICENSE │ │ ├── README.md │ │ └── main.go │ └── whitespace │ │ ├── LICENSE │ │ ├── README.md │ │ └── main.go ├── urfave │ └── cli │ │ └── v2 │ │ ├── .flake8 │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.go │ │ ├── args.go │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── context.go │ │ ├── docs.go │ │ ├── errors.go │ │ ├── fish.go │ │ ├── flag.go │ │ ├── flag_bool.go │ │ ├── flag_duration.go │ │ ├── flag_float64.go │ │ ├── flag_float64_slice.go │ │ ├── flag_generic.go │ │ ├── flag_int.go │ │ ├── flag_int64.go │ │ ├── flag_int64_slice.go │ │ ├── flag_int_slice.go │ │ ├── flag_path.go │ │ ├── flag_string.go │ │ ├── flag_string_slice.go │ │ ├── flag_timestamp.go │ │ ├── flag_uint.go │ │ ├── flag_uint64.go │ │ ├── funcs.go │ │ ├── help.go │ │ ├── parse.go │ │ ├── sort.go │ │ └── template.go ├── uudashr │ └── gocognit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── gocognit.go │ │ ├── recv.go │ │ └── recv_pre118.go ├── x448 │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go ├── xlab │ └── treeprint │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helpers.go │ │ ├── struct.go │ │ └── treeprint.go ├── yagipy │ └── maintidx │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── maintidx.go │ │ ├── pkg │ │ ├── cyc │ │ │ └── cyc.go │ │ └── halstvol │ │ │ ├── halstvol.go │ │ │ └── handle.go │ │ └── visitor.go └── yeya24 │ └── promlinter │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── promlinter.go ├── gitlab.com └── bosi │ └── decorder │ ├── .gitignore │ ├── .gitlab-ci.params.yml │ ├── .gitlab-ci.yml │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── analyzer.go │ └── renovate.json ├── go.etcd.io └── etcd │ ├── api │ └── v3 │ │ ├── LICENSE │ │ ├── authpb │ │ ├── auth.pb.go │ │ └── auth.proto │ │ ├── etcdserverpb │ │ ├── etcdserver.pb.go │ │ ├── etcdserver.proto │ │ ├── raft_internal.pb.go │ │ ├── raft_internal.proto │ │ ├── raft_internal_stringer.go │ │ ├── rpc.pb.go │ │ └── rpc.proto │ │ ├── membershippb │ │ ├── membership.pb.go │ │ └── membership.proto │ │ ├── mvccpb │ │ ├── kv.pb.go │ │ └── kv.proto │ │ ├── v3rpc │ │ └── rpctypes │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── md.go │ │ │ └── metadatafields.go │ │ └── version │ │ └── version.go │ └── client │ ├── pkg │ └── v3 │ │ ├── LICENSE │ │ ├── fileutil │ │ ├── dir_unix.go │ │ ├── dir_windows.go │ │ ├── doc.go │ │ ├── filereader.go │ │ ├── fileutil.go │ │ ├── lock.go │ │ ├── lock_flock.go │ │ ├── lock_linux.go │ │ ├── lock_plan9.go │ │ ├── lock_solaris.go │ │ ├── lock_unix.go │ │ ├── lock_windows.go │ │ ├── preallocate.go │ │ ├── preallocate_darwin.go │ │ ├── preallocate_unix.go │ │ ├── preallocate_unsupported.go │ │ ├── purge.go │ │ ├── read_dir.go │ │ ├── sync.go │ │ ├── sync_darwin.go │ │ └── sync_linux.go │ │ ├── logutil │ │ ├── doc.go │ │ ├── log_level.go │ │ ├── zap.go │ │ └── zap_journal.go │ │ ├── systemd │ │ ├── doc.go │ │ └── journal.go │ │ ├── tlsutil │ │ ├── cipher_suites.go │ │ ├── doc.go │ │ ├── tlsutil.go │ │ └── versions.go │ │ ├── transport │ │ ├── doc.go │ │ ├── keepalive_listener.go │ │ ├── keepalive_listener_openbsd.go │ │ ├── keepalive_listener_unix.go │ │ ├── limit_listen.go │ │ ├── listener.go │ │ ├── listener_opts.go │ │ ├── listener_tls.go │ │ ├── sockopt.go │ │ ├── sockopt_solaris.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_windows.go │ │ ├── timeout_conn.go │ │ ├── timeout_dialer.go │ │ ├── timeout_listener.go │ │ ├── timeout_transport.go │ │ ├── tls.go │ │ ├── transport.go │ │ └── unix_listener.go │ │ └── types │ │ ├── doc.go │ │ ├── id.go │ │ ├── set.go │ │ ├── slice.go │ │ ├── urls.go │ │ └── urlsmap.go │ └── v3 │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── client.go │ ├── cluster.go │ ├── compact_op.go │ ├── compare.go │ ├── config.go │ ├── credentials │ └── credentials.go │ ├── ctx.go │ ├── doc.go │ ├── internal │ ├── endpoint │ │ └── endpoint.go │ └── resolver │ │ └── resolver.go │ ├── kubernetes │ ├── client.go │ └── interface.go │ ├── kv.go │ ├── lease.go │ ├── logger.go │ ├── maintenance.go │ ├── op.go │ ├── options.go │ ├── retry.go │ ├── retry_interceptor.go │ ├── sort.go │ ├── txn.go │ ├── utils.go │ └── watch.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ └── resource.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── semconv.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go ├── otel │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── doc.go │ ├── error_handler.go │ ├── exporters │ │ └── otlp │ │ │ └── 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 │ │ │ └── version.go │ ├── get_main_pkgs.sh │ ├── handler.go │ ├── internal │ │ ├── attribute │ │ │ └── attribute.go │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ ├── gen.go │ │ ├── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ │ └── rawhelpers.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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── version.go │ │ └── version.go │ ├── semconv │ │ ├── internal │ │ │ └── http.go │ │ ├── v1.12.0 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.17.0 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ └── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_readmes.sh │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── collector │ └── trace │ │ └── v1 │ │ ├── trace_service.pb.go │ │ ├── trace_service.pb.gw.go │ │ └── trace_service_grpc.pb.go │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── resource │ └── v1 │ │ └── resource.pb.go │ └── trace │ └── v1 │ └── trace.pb.go ├── go.uber.org ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ ├── level_enabler.go │ ├── pool │ │ └── pool.go │ └── stacktrace │ │ └── stack.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ ├── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go │ └── zapgrpc │ └── zapgrpc.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ └── xchacha20poly1305.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── nacl │ │ └── secretbox │ │ │ └── secretbox.go │ └── salsa20 │ │ └── salsa │ │ ├── hsalsa20.go │ │ ├── salsa208.go │ │ ├── salsa20_amd64.go │ │ ├── salsa20_amd64.s │ │ ├── salsa20_noasm.go │ │ └── salsa20_ref.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── maps │ │ └── maps.go │ ├── slices │ │ ├── slices.go │ │ └── sort.go │ └── typeparams │ │ ├── LICENSE │ │ ├── common.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ ├── typeparams_go117.go │ │ ├── typeparams_go118.go │ │ └── typeterm.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── modfile │ │ ├── print.go │ │ ├── read.go │ │ ├── rule.go │ │ └── work.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go124.go │ │ ├── config_pre_go124.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── timer.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ └── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ ├── semaphore │ │ └── semaphore.go │ └── singleflight │ │ └── singleflight.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── message.go │ │ │ ├── plural.go │ │ │ └── tables.go │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── codec.go │ │ │ └── varint.go │ │ ├── format │ │ │ ├── format.go │ │ │ └── parser.go │ │ ├── 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 │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── format.go │ │ │ ├── number.go │ │ │ ├── pattern.go │ │ │ ├── roundingmode_string.go │ │ │ └── tables.go │ │ ├── stringset │ │ │ └── set.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── message.go │ │ └── print.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ └── width │ │ ├── kind_string.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 │ │ ├── trieval.go │ │ └── width.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── cover │ └── profile.go │ ├── go │ ├── analysis │ │ ├── analysis.go │ │ ├── diagnostic.go │ │ ├── doc.go │ │ ├── passes │ │ │ ├── asmdecl │ │ │ │ └── asmdecl.go │ │ │ ├── assign │ │ │ │ ├── assign.go │ │ │ │ └── doc.go │ │ │ ├── atomic │ │ │ │ ├── atomic.go │ │ │ │ └── doc.go │ │ │ ├── atomicalign │ │ │ │ └── atomicalign.go │ │ │ ├── bools │ │ │ │ └── bools.go │ │ │ ├── buildssa │ │ │ │ └── buildssa.go │ │ │ ├── buildtag │ │ │ │ └── buildtag.go │ │ │ ├── cgocall │ │ │ │ ├── cgocall.go │ │ │ │ ├── cgocall_go120.go │ │ │ │ └── cgocall_go121.go │ │ │ ├── composite │ │ │ │ ├── composite.go │ │ │ │ └── whitelist.go │ │ │ ├── copylock │ │ │ │ └── copylock.go │ │ │ ├── ctrlflow │ │ │ │ └── ctrlflow.go │ │ │ ├── deepequalerrors │ │ │ │ └── deepequalerrors.go │ │ │ ├── errorsas │ │ │ │ └── errorsas.go │ │ │ ├── fieldalignment │ │ │ │ └── fieldalignment.go │ │ │ ├── findcall │ │ │ │ └── findcall.go │ │ │ ├── framepointer │ │ │ │ └── framepointer.go │ │ │ ├── httpresponse │ │ │ │ └── httpresponse.go │ │ │ ├── ifaceassert │ │ │ │ ├── doc.go │ │ │ │ └── ifaceassert.go │ │ │ ├── inspect │ │ │ │ └── inspect.go │ │ │ ├── internal │ │ │ │ └── analysisutil │ │ │ │ │ └── util.go │ │ │ ├── loopclosure │ │ │ │ ├── doc.go │ │ │ │ └── loopclosure.go │ │ │ ├── lostcancel │ │ │ │ ├── doc.go │ │ │ │ └── lostcancel.go │ │ │ ├── nilfunc │ │ │ │ ├── doc.go │ │ │ │ └── nilfunc.go │ │ │ ├── nilness │ │ │ │ ├── doc.go │ │ │ │ └── nilness.go │ │ │ ├── pkgfact │ │ │ │ └── pkgfact.go │ │ │ ├── printf │ │ │ │ ├── doc.go │ │ │ │ ├── printf.go │ │ │ │ └── types.go │ │ │ ├── reflectvaluecompare │ │ │ │ ├── doc.go │ │ │ │ └── reflectvaluecompare.go │ │ │ ├── shadow │ │ │ │ ├── doc.go │ │ │ │ └── shadow.go │ │ │ ├── shift │ │ │ │ ├── dead.go │ │ │ │ └── shift.go │ │ │ ├── sigchanyzer │ │ │ │ ├── doc.go │ │ │ │ └── sigchanyzer.go │ │ │ ├── sortslice │ │ │ │ └── analyzer.go │ │ │ ├── stdmethods │ │ │ │ ├── doc.go │ │ │ │ └── stdmethods.go │ │ │ ├── stringintconv │ │ │ │ ├── doc.go │ │ │ │ └── string.go │ │ │ ├── structtag │ │ │ │ └── structtag.go │ │ │ ├── testinggoroutine │ │ │ │ ├── doc.go │ │ │ │ ├── testinggoroutine.go │ │ │ │ └── util.go │ │ │ ├── tests │ │ │ │ ├── doc.go │ │ │ │ └── tests.go │ │ │ ├── unmarshal │ │ │ │ ├── doc.go │ │ │ │ └── unmarshal.go │ │ │ ├── unreachable │ │ │ │ ├── doc.go │ │ │ │ └── unreachable.go │ │ │ ├── unsafeptr │ │ │ │ ├── doc.go │ │ │ │ └── unsafeptr.go │ │ │ ├── unusedresult │ │ │ │ ├── doc.go │ │ │ │ └── unusedresult.go │ │ │ └── unusedwrite │ │ │ │ ├── doc.go │ │ │ │ └── unusedwrite.go │ │ └── validate.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 │ ├── buildutil │ │ ├── allpackages.go │ │ ├── fakecontext.go │ │ ├── overlay.go │ │ ├── tags.go │ │ └── util.go │ ├── cfg │ │ ├── builder.go │ │ └── cfg.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── internal │ │ └── cgo │ │ │ ├── cgo.go │ │ │ └── cgo_pkgconfig.go │ ├── loader │ │ ├── doc.go │ │ ├── loader.go │ │ └── util.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ ├── ssa │ │ ├── TODO │ │ ├── block.go │ │ ├── blockopt.go │ │ ├── builder.go │ │ ├── const.go │ │ ├── create.go │ │ ├── doc.go │ │ ├── dom.go │ │ ├── emit.go │ │ ├── func.go │ │ ├── instantiate.go │ │ ├── lift.go │ │ ├── lvalue.go │ │ ├── methods.go │ │ ├── mode.go │ │ ├── print.go │ │ ├── sanity.go │ │ ├── source.go │ │ ├── ssa.go │ │ ├── ssautil │ │ │ ├── deprecated.go │ │ │ ├── load.go │ │ │ ├── switch.go │ │ │ └── visit.go │ │ ├── subst.go │ │ ├── task.go │ │ ├── typeset.go │ │ ├── util.go │ │ └── wrappers.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 │ ├── analysisinternal │ ├── analysis.go │ └── extractdoc.go │ ├── astutil │ ├── clone.go │ ├── comment.go │ └── util.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── fmtstr │ └── parse.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── iimport_go122.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 │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── cloudresourcemanager │ │ └── v1 │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iam │ │ └── v1 │ │ │ ├── iam-api.json │ │ │ └── iam-gen.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── gensupport │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ ├── send.go │ │ │ └── version.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ └── transport │ │ └── http │ │ ├── dial.go │ │ └── internal │ │ └── propagation │ │ └── http.go ├── genproto │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ ├── expr │ │ │ └── v1alpha1 │ │ │ │ ├── checked.pb.go │ │ │ │ ├── eval.pb.go │ │ │ │ ├── explain.pb.go │ │ │ │ ├── syntax.pb.go │ │ │ │ └── value.pb.go │ │ ├── httpbody │ │ │ └── httpbody.pb.go │ │ └── launch_stage.pb.go │ │ └── rpc │ │ ├── LICENSE │ │ ├── code │ │ └── code.pb.go │ │ ├── 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 │ │ ├── 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 │ │ │ ├── oncefunc.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 │ │ ├── resolver │ │ │ ├── config_selector.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 │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ └── placeholder.go │ ├── 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_go120.go │ │ └── strings_unsafe_go121.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ ├── value_unsafe_go120.go │ │ └── value_unsafe_go121.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── dynamicpb │ ├── dynamic.go │ └── types.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── evanphx │ └── json-patch.v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── ini.v1 │ ├── .editorconfig │ ├── .gitignore │ ├── .golangci.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.go ├── natefinch │ └── lumberjack.v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chown.go │ │ ├── chown_linux.go │ │ └── lumberjack.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── honnef.co └── go │ └── tools │ ├── LICENSE │ ├── LICENSE-THIRD-PARTY │ ├── analysis │ ├── code │ │ ├── code.go │ │ └── visit.go │ ├── edit │ │ └── edit.go │ ├── facts │ │ ├── deprecated │ │ │ └── deprecated.go │ │ ├── directives │ │ │ └── directives.go │ │ ├── generated │ │ │ └── generated.go │ │ ├── nilness │ │ │ └── nilness.go │ │ ├── purity │ │ │ └── purity.go │ │ ├── tokenfile │ │ │ └── token.go │ │ └── typedness │ │ │ └── typedness.go │ ├── lint │ │ └── lint.go │ └── report │ │ └── report.go │ ├── config │ ├── config.go │ └── example.conf │ ├── go │ ├── ast │ │ └── astutil │ │ │ ├── upstream.go │ │ │ └── util.go │ ├── ir │ │ ├── LICENSE │ │ ├── UPSTREAM │ │ ├── blockopt.go │ │ ├── builder.go │ │ ├── const.go │ │ ├── create.go │ │ ├── doc.go │ │ ├── dom.go │ │ ├── emit.go │ │ ├── exits.go │ │ ├── func.go │ │ ├── html.go │ │ ├── irutil │ │ │ ├── load.go │ │ │ ├── loops.go │ │ │ ├── stub.go │ │ │ ├── switch.go │ │ │ ├── terminates.go │ │ │ ├── util.go │ │ │ └── visit.go │ │ ├── lift.go │ │ ├── lvalue.go │ │ ├── methods.go │ │ ├── mode.go │ │ ├── print.go │ │ ├── sanity.go │ │ ├── source.go │ │ ├── ssa.go │ │ ├── staticcheck.conf │ │ ├── util.go │ │ ├── wrappers.go │ │ └── write.go │ └── types │ │ └── typeutil │ │ ├── ext.go │ │ ├── typeparams.go │ │ ├── upstream.go │ │ └── util.go │ ├── internal │ ├── passes │ │ └── buildir │ │ │ └── buildir.go │ └── sharedcheck │ │ └── lint.go │ ├── knowledge │ ├── arg.go │ ├── deprecated.go │ ├── doc.go │ └── signatures.go │ ├── pattern │ ├── convert.go │ ├── doc.go │ ├── fuzz.go │ ├── lexer.go │ ├── match.go │ ├── parser.go │ └── pattern.go │ ├── printf │ ├── fuzz.go │ └── printf.go │ ├── simple │ ├── analysis.go │ ├── doc.go │ └── lint.go │ ├── staticcheck │ ├── analysis.go │ ├── buildtag.go │ ├── doc.go │ ├── fakejson │ │ └── encode.go │ ├── fakereflect │ │ └── fakereflect.go │ ├── fakexml │ │ ├── marshal.go │ │ ├── typeinfo.go │ │ └── xml.go │ ├── lint.go │ ├── rules.go │ └── structtag.go │ ├── stylecheck │ ├── analysis.go │ ├── doc.go │ ├── lint.go │ └── names.go │ └── unused │ ├── edge.go │ ├── edgekind_string.go │ ├── implements.go │ └── unused.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apidiscovery │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── certificates │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── lifecycle.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── well_known_taints.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── discovery │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── events │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── 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 │ │ ├── v1alpha1 │ │ │ ├── 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_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 │ │ ├── v1alpha3 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── scheduling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── storage │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ └── storagemigration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.prerelease-lifecycle.go ├── apiextensions-apiserver │ ├── LICENSE │ └── pkg │ │ ├── apis │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── client │ │ ├── applyconfiguration │ │ │ └── apiextensions │ │ │ │ ├── v1 │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ ├── webhookclientconfig.go │ │ │ │ └── webhookconversion.go │ │ │ │ └── v1beta1 │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ └── webhookclientconfig.go │ │ └── clientset │ │ │ └── clientset │ │ │ ├── clientset.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ └── features │ │ ├── OWNERS │ │ └── kube_features.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_restmapper.go │ │ │ ├── operation │ │ │ │ └── operation.go │ │ │ ├── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── safe │ │ │ │ └── safe.go │ │ │ ├── validate │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── constraints │ │ │ │ │ └── constraints.go │ │ │ │ ├── content │ │ │ │ │ └── errors.go │ │ │ │ ├── doc.go │ │ │ │ ├── each.go │ │ │ │ ├── immutable.go │ │ │ │ ├── limits.go │ │ │ │ ├── required.go │ │ │ │ ├── subfield.go │ │ │ │ └── testing.go │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ └── path │ │ │ │ └── name.go │ │ ├── apis │ │ │ ├── asn1 │ │ │ │ └── oid.go │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── types.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_fuzz.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ └── 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 │ │ │ │ ├── validation │ │ │ │ └── validation.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 │ │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ └── encode.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 │ │ │ │ └── yaml │ │ │ │ │ ├── meta.go │ │ │ │ │ └── yaml.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 │ │ │ │ └── diff.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── httpstream │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── spdy │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ └── upgrade.go │ │ │ │ └── wsstream │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stream.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── 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 │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ ├── versioncheck.go │ │ │ │ │ └── versionconverter.go │ │ │ │ ├── node.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── scalehandler.go │ │ │ │ └── typeconverter.go │ │ │ ├── mergepatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── portforward │ │ │ │ └── constants.go │ │ │ ├── proxy │ │ │ │ ├── dial.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ └── upgradeaware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── remotecommand │ │ │ │ └── constants.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── field │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ ├── ip.go │ │ │ │ └── validation.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ ├── waitgroup │ │ │ │ ├── doc.go │ │ │ │ ├── ratelimited_waitgroup.go │ │ │ │ └── waitgroup.go │ │ │ └── yaml │ │ │ │ ├── decoder.go │ │ │ │ └── stream_reader.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ ├── netutil │ │ └── addr.go │ │ └── reflect │ │ └── deep_equal.go ├── apiserver │ ├── LICENSE │ ├── pkg │ │ ├── admission │ │ │ ├── attributes.go │ │ │ ├── audit.go │ │ │ ├── chain.go │ │ │ ├── config.go │ │ │ ├── configuration │ │ │ │ ├── configuration_manager.go │ │ │ │ ├── mutating_webhook_manager.go │ │ │ │ └── validating_webhook_manager.go │ │ │ ├── conversion.go │ │ │ ├── decorator.go │ │ │ ├── errors.go │ │ │ ├── handler.go │ │ │ ├── initializer │ │ │ │ ├── initializer.go │ │ │ │ └── interfaces.go │ │ │ ├── interfaces.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── plugin │ │ │ │ ├── authorizer │ │ │ │ │ └── caching_authorizer.go │ │ │ │ ├── cel │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── activation.go │ │ │ │ │ ├── compile.go │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── mutation.go │ │ │ │ ├── namespace │ │ │ │ │ └── lifecycle │ │ │ │ │ │ └── admission.go │ │ │ │ ├── policy │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ ├── policy_dispatcher.go │ │ │ │ │ │ ├── policy_matcher.go │ │ │ │ │ │ ├── policy_source.go │ │ │ │ │ │ └── policy_test_context.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── generic │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── informer.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── lister.go │ │ │ │ │ ├── matching │ │ │ │ │ │ └── matching.go │ │ │ │ │ ├── mutating │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── compilation.go │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── patch │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── json_patch.go │ │ │ │ │ │ │ ├── smd.go │ │ │ │ │ │ │ └── typeconverter.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ └── reinvocationcontext.go │ │ │ │ │ └── validating │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── initializer.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── message.go │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── metrics.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ ├── policy_decision.go │ │ │ │ │ │ ├── typechecking.go │ │ │ │ │ │ └── validator.go │ │ │ │ └── webhook │ │ │ │ │ ├── accessors.go │ │ │ │ │ ├── config │ │ │ │ │ ├── apis │ │ │ │ │ │ └── webhookadmission │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── kubeconfig.go │ │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── statuserror.go │ │ │ │ │ ├── generic │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── webhook.go │ │ │ │ │ ├── matchconditions │ │ │ │ │ ├── interface.go │ │ │ │ │ └── matcher.go │ │ │ │ │ ├── mutating │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── reinvocationcontext.go │ │ │ │ │ ├── predicates │ │ │ │ │ ├── namespace │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── matcher.go │ │ │ │ │ ├── object │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── matcher.go │ │ │ │ │ └── rules │ │ │ │ │ │ └── rules.go │ │ │ │ │ ├── request │ │ │ │ │ ├── admissionreview.go │ │ │ │ │ └── doc.go │ │ │ │ │ └── validating │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── plugin.go │ │ │ ├── plugins.go │ │ │ ├── reinvocation.go │ │ │ └── util.go │ │ ├── apis │ │ │ ├── apidiscovery │ │ │ │ └── v2 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ ├── apiserver │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_encryption.go │ │ │ │ ├── v1 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_encryption.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── validation │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_encryption.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── audit │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── cel │ │ │ │ └── config.go │ │ │ └── flowcontrol │ │ │ │ └── bootstrap │ │ │ │ └── default.go │ │ ├── audit │ │ │ ├── OWNERS │ │ │ ├── context.go │ │ │ ├── evaluator.go │ │ │ ├── format.go │ │ │ ├── metrics.go │ │ │ ├── policy │ │ │ │ ├── checker.go │ │ │ │ ├── reader.go │ │ │ │ └── util.go │ │ │ ├── request.go │ │ │ ├── scheme.go │ │ │ ├── types.go │ │ │ └── union.go │ │ ├── authentication │ │ │ ├── authenticator │ │ │ │ ├── audagnostic.go │ │ │ │ ├── audiences.go │ │ │ │ └── interfaces.go │ │ │ ├── authenticatorfactory │ │ │ │ ├── delegating.go │ │ │ │ ├── loopback.go │ │ │ │ ├── metrics.go │ │ │ │ └── requestheader.go │ │ │ ├── cel │ │ │ │ ├── compile.go │ │ │ │ ├── interface.go │ │ │ │ └── mapper.go │ │ │ ├── group │ │ │ │ ├── authenticated_group_adder.go │ │ │ │ ├── group_adder.go │ │ │ │ └── token_group_adder.go │ │ │ ├── request │ │ │ │ ├── anonymous │ │ │ │ │ └── anonymous.go │ │ │ │ ├── bearertoken │ │ │ │ │ └── bearertoken.go │ │ │ │ ├── headerrequest │ │ │ │ │ ├── requestheader.go │ │ │ │ │ └── requestheader_controller.go │ │ │ │ ├── union │ │ │ │ │ └── union.go │ │ │ │ ├── websocket │ │ │ │ │ └── protocol.go │ │ │ │ └── x509 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── verify_options.go │ │ │ │ │ └── x509.go │ │ │ ├── serviceaccount │ │ │ │ └── util.go │ │ │ ├── token │ │ │ │ ├── cache │ │ │ │ │ ├── cache_simple.go │ │ │ │ │ ├── cache_striped.go │ │ │ │ │ ├── cached_token_authenticator.go │ │ │ │ │ └── stats.go │ │ │ │ └── tokenfile │ │ │ │ │ └── tokenfile.go │ │ │ └── user │ │ │ │ ├── doc.go │ │ │ │ └── user.go │ │ ├── authorization │ │ │ ├── authorizer │ │ │ │ ├── interfaces.go │ │ │ │ └── rule.go │ │ │ ├── authorizerfactory │ │ │ │ ├── builtin.go │ │ │ │ ├── delegating.go │ │ │ │ └── metrics.go │ │ │ ├── cel │ │ │ │ ├── compile.go │ │ │ │ ├── interface.go │ │ │ │ ├── matcher.go │ │ │ │ └── metrics.go │ │ │ ├── path │ │ │ │ ├── doc.go │ │ │ │ └── path.go │ │ │ └── union │ │ │ │ └── union.go │ │ ├── cel │ │ │ ├── OWNERS │ │ │ ├── cidr.go │ │ │ ├── common │ │ │ │ ├── adaptor.go │ │ │ │ ├── equality.go │ │ │ │ ├── maplist.go │ │ │ │ ├── schemas.go │ │ │ │ ├── typeprovider.go │ │ │ │ └── values.go │ │ │ ├── environment │ │ │ │ ├── base.go │ │ │ │ └── environment.go │ │ │ ├── errors.go │ │ │ ├── escaping.go │ │ │ ├── format.go │ │ │ ├── ip.go │ │ │ ├── lazy │ │ │ │ └── lazy.go │ │ │ ├── library │ │ │ │ ├── authz.go │ │ │ │ ├── cidr.go │ │ │ │ ├── cost.go │ │ │ │ ├── format.go │ │ │ │ ├── ip.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── libraries.go │ │ │ │ ├── lists.go │ │ │ │ ├── quantity.go │ │ │ │ ├── regex.go │ │ │ │ ├── semverlib.go │ │ │ │ ├── test.go │ │ │ │ └── urls.go │ │ │ ├── limits.go │ │ │ ├── mutation │ │ │ │ ├── dynamic │ │ │ │ │ └── objects.go │ │ │ │ ├── jsonpatch.go │ │ │ │ └── typeresolver.go │ │ │ ├── openapi │ │ │ │ ├── adaptor.go │ │ │ │ ├── extensions.go │ │ │ │ └── resolver │ │ │ │ │ ├── combined.go │ │ │ │ │ ├── definitions.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── refs.go │ │ │ │ │ └── resolver.go │ │ │ ├── quantity.go │ │ │ ├── semver.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ └── value.go │ │ ├── endpoints │ │ │ ├── OWNERS │ │ │ ├── deprecation │ │ │ │ └── deprecation.go │ │ │ ├── discovery │ │ │ │ ├── OWNERS │ │ │ │ ├── addresses.go │ │ │ │ ├── aggregated │ │ │ │ │ ├── etag.go │ │ │ │ │ ├── fake.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── negotiation.go │ │ │ │ │ └── wrapper.go │ │ │ │ ├── group.go │ │ │ │ ├── legacy.go │ │ │ │ ├── root.go │ │ │ │ ├── storageversionhash.go │ │ │ │ ├── util.go │ │ │ │ └── version.go │ │ │ ├── doc.go │ │ │ ├── filterlatency │ │ │ │ └── filterlatency.go │ │ │ ├── filters │ │ │ │ ├── OWNERS │ │ │ │ ├── audit.go │ │ │ │ ├── audit_init.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authn_audit.go │ │ │ │ ├── authorization.go │ │ │ │ ├── cachecontrol.go │ │ │ │ ├── doc.go │ │ │ │ ├── impersonation.go │ │ │ │ ├── metrics.go │ │ │ │ ├── mux_discovery_complete.go │ │ │ │ ├── request_deadline.go │ │ │ │ ├── request_received_time.go │ │ │ │ ├── requestinfo.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── traces.go │ │ │ │ ├── warning.go │ │ │ │ └── webhook_duration.go │ │ │ ├── groupversion.go │ │ │ ├── handlers │ │ │ │ ├── create.go │ │ │ │ ├── delete.go │ │ │ │ ├── doc.go │ │ │ │ ├── fieldmanager │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── admission.go │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── equality.go │ │ │ │ │ ├── node.yaml │ │ │ │ │ └── pod.yaml │ │ │ │ ├── finisher │ │ │ │ │ └── finisher.go │ │ │ │ ├── get.go │ │ │ │ ├── helpers.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── namer.go │ │ │ │ ├── negotiation │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── negotiate.go │ │ │ │ ├── patch.go │ │ │ │ ├── response.go │ │ │ │ ├── responsewriters │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── status.go │ │ │ │ │ └── writers.go │ │ │ │ ├── rest.go │ │ │ │ ├── trace_util.go │ │ │ │ ├── update.go │ │ │ │ └── watch.go │ │ │ ├── installer.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── openapi │ │ │ │ └── openapi.go │ │ │ ├── request │ │ │ │ ├── OWNERS │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── received_time.go │ │ │ │ ├── requestinfo.go │ │ │ │ ├── server_shutdown_signal.go │ │ │ │ └── webhook_duration.go │ │ │ ├── responsewriter │ │ │ │ ├── fake.go │ │ │ │ └── wrapper.go │ │ │ └── warning │ │ │ │ └── warning.go │ │ ├── features │ │ │ ├── OWNERS │ │ │ └── kube_features.go │ │ ├── quota │ │ │ └── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── interfaces.go │ │ │ │ └── resources.go │ │ ├── registry │ │ │ ├── generic │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── matcher.go │ │ │ │ ├── options.go │ │ │ │ ├── registry │ │ │ │ │ ├── corrupt_obj_deleter.go │ │ │ │ │ ├── decorated_watcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dryrun.go │ │ │ │ │ ├── storage_factory.go │ │ │ │ │ └── store.go │ │ │ │ └── storage_decorator.go │ │ │ └── rest │ │ │ │ ├── OWNERS │ │ │ │ ├── create.go │ │ │ │ ├── create_update.go │ │ │ │ ├── delete.go │ │ │ │ ├── doc.go │ │ │ │ ├── meta.go │ │ │ │ ├── rest.go │ │ │ │ ├── table.go │ │ │ │ ├── update.go │ │ │ │ └── validate.go │ │ ├── server │ │ │ ├── config.go │ │ │ ├── config_selfclient.go │ │ │ ├── deleted_kinds.go │ │ │ ├── deprecated_insecure_serving.go │ │ │ ├── doc.go │ │ │ ├── dynamiccertificates │ │ │ │ ├── cert_key.go │ │ │ │ ├── client_ca.go │ │ │ │ ├── configmap_cafile_content.go │ │ │ │ ├── dynamic_cafile_content.go │ │ │ │ ├── dynamic_serving_content.go │ │ │ │ ├── dynamic_sni_content.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── named_certificates.go │ │ │ │ ├── static_content.go │ │ │ │ ├── tlsconfig.go │ │ │ │ ├── union_content.go │ │ │ │ └── util.go │ │ │ ├── egressselector │ │ │ │ ├── config.go │ │ │ │ ├── egress_selector.go │ │ │ │ └── metrics │ │ │ │ │ └── metrics.go │ │ │ ├── filters │ │ │ │ ├── OWNERS │ │ │ │ ├── content_type.go │ │ │ │ ├── cors.go │ │ │ │ ├── doc.go │ │ │ │ ├── goaway.go │ │ │ │ ├── hsts.go │ │ │ │ ├── longrunning.go │ │ │ │ ├── maxinflight.go │ │ │ │ ├── priority-and-fairness.go │ │ │ │ ├── timeout.go │ │ │ │ ├── waitgroup.go │ │ │ │ ├── watch_termination.go │ │ │ │ ├── with_retry_after.go │ │ │ │ └── wrap.go │ │ │ ├── genericapiserver.go │ │ │ ├── handler.go │ │ │ ├── healthz.go │ │ │ ├── healthz │ │ │ │ ├── doc.go │ │ │ │ └── healthz.go │ │ │ ├── hooks.go │ │ │ ├── httplog │ │ │ │ ├── doc.go │ │ │ │ └── httplog.go │ │ │ ├── lifecycle_signals.go │ │ │ ├── mux │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── pathrecorder.go │ │ │ ├── options │ │ │ │ ├── OWNERS │ │ │ │ ├── admission.go │ │ │ │ ├── api_enablement.go │ │ │ │ ├── audit.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authentication_dynamic_request_header.go │ │ │ │ ├── authorization.go │ │ │ │ ├── coreapi.go │ │ │ │ ├── doc.go │ │ │ │ ├── egress_selector.go │ │ │ │ ├── encryptionconfig │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── config.go │ │ │ │ │ ├── controller │ │ │ │ │ │ └── controller.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── metrics.go │ │ │ │ ├── etcd.go │ │ │ │ ├── feature.go │ │ │ │ ├── recommended.go │ │ │ │ ├── server_run_options.go │ │ │ │ ├── serving.go │ │ │ │ ├── serving_unix.go │ │ │ │ ├── serving_windows.go │ │ │ │ ├── serving_with_loopback.go │ │ │ │ └── tracing.go │ │ │ ├── plugins.go │ │ │ ├── resourceconfig │ │ │ │ ├── doc.go │ │ │ │ └── helpers.go │ │ │ ├── routes │ │ │ │ ├── OWNERS │ │ │ │ ├── debugsocket.go │ │ │ │ ├── doc.go │ │ │ │ ├── flags.go │ │ │ │ ├── index.go │ │ │ │ ├── metrics.go │ │ │ │ ├── openapi.go │ │ │ │ ├── profiling.go │ │ │ │ └── version.go │ │ │ ├── routine │ │ │ │ └── routine.go │ │ │ ├── secure_serving.go │ │ │ ├── signal.go │ │ │ ├── signal_posix.go │ │ │ ├── signal_windows.go │ │ │ ├── storage │ │ │ │ ├── doc.go │ │ │ │ ├── resource_config.go │ │ │ │ ├── resource_encoding_config.go │ │ │ │ ├── storage_codec.go │ │ │ │ └── storage_factory.go │ │ │ └── storage_readiness_hook.go │ │ ├── storage │ │ │ ├── OWNERS │ │ │ ├── api_object_versioner.go │ │ │ ├── cacher │ │ │ │ ├── cache_watcher.go │ │ │ │ ├── cacher.go │ │ │ │ ├── caching_object.go │ │ │ │ ├── delegator.go │ │ │ │ ├── delegator │ │ │ │ │ └── interface.go │ │ │ │ ├── lister_watcher.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── progress │ │ │ │ │ └── watch_progress.go │ │ │ │ ├── ready.go │ │ │ │ ├── store.go │ │ │ │ ├── store_btree.go │ │ │ │ ├── time_budget.go │ │ │ │ ├── util.go │ │ │ │ ├── watch_cache.go │ │ │ │ └── watch_cache_interval.go │ │ │ ├── continue.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── storage.go │ │ │ ├── etcd3 │ │ │ │ ├── OWNERS │ │ │ │ ├── compact.go │ │ │ │ ├── corrupt_obj_deleter.go │ │ │ │ ├── decoder.go │ │ │ │ ├── errors.go │ │ │ │ ├── event.go │ │ │ │ ├── healthcheck.go │ │ │ │ ├── latency_tracker.go │ │ │ │ ├── lease_manager.go │ │ │ │ ├── logger.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── store.go │ │ │ │ └── watcher.go │ │ │ ├── feature │ │ │ │ └── feature_support_checker.go │ │ │ ├── interfaces.go │ │ │ ├── names │ │ │ │ └── generate.go │ │ │ ├── selection_predicate.go │ │ │ ├── storagebackend │ │ │ │ ├── OWNERS │ │ │ │ ├── config.go │ │ │ │ └── factory │ │ │ │ │ ├── etcd3.go │ │ │ │ │ └── factory.go │ │ │ ├── util.go │ │ │ └── value │ │ │ │ ├── OWNERS │ │ │ │ ├── encrypt │ │ │ │ ├── aes │ │ │ │ │ ├── aes.go │ │ │ │ │ ├── aes_extended_nonce.go │ │ │ │ │ └── cache.go │ │ │ │ ├── envelope │ │ │ │ │ ├── envelope.go │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ ├── kmsv2 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── envelope.go │ │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── api.pb.go │ │ │ │ │ │ │ ├── api.proto │ │ │ │ │ │ │ └── v2.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── metrics.go │ │ │ │ ├── identity │ │ │ │ │ └── identity.go │ │ │ │ └── secretbox │ │ │ │ │ └── secretbox.go │ │ │ │ ├── metrics.go │ │ │ │ └── transformer.go │ │ ├── storageversion │ │ │ ├── OWNERS │ │ │ ├── manager.go │ │ │ └── updater.go │ │ ├── util │ │ │ ├── apihelpers │ │ │ │ └── helpers.go │ │ │ ├── compatibility │ │ │ │ ├── registry.go │ │ │ │ └── version.go │ │ │ ├── dryrun │ │ │ │ └── dryrun.go │ │ │ ├── feature │ │ │ │ └── feature_gate.go │ │ │ ├── flowcontrol │ │ │ │ ├── OWNERS │ │ │ │ ├── apf_context.go │ │ │ │ ├── apf_controller.go │ │ │ │ ├── apf_controller_debug.go │ │ │ │ ├── apf_filter.go │ │ │ │ ├── conc_alloc.go │ │ │ │ ├── debug │ │ │ │ │ └── dump.go │ │ │ │ ├── dropped_requests_tracker.go │ │ │ │ ├── fairqueuing │ │ │ │ │ ├── eventclock │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── real.go │ │ │ │ │ ├── integrator.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── promise │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── promise.go │ │ │ │ │ └── queueset │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fifo_list.go │ │ │ │ │ │ ├── queueset.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── format │ │ │ │ │ └── formatting.go │ │ │ │ ├── formatting.go │ │ │ │ ├── max_seats.go │ │ │ │ ├── metrics │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── timing_ratio_histogram.go │ │ │ │ │ ├── union_gauge.go │ │ │ │ │ └── vec_element_pair.go │ │ │ │ ├── request │ │ │ │ │ ├── config.go │ │ │ │ │ ├── list_work_estimator.go │ │ │ │ │ ├── mutating_work_estimator.go │ │ │ │ │ ├── object_count_tracker.go │ │ │ │ │ ├── seat_seconds.go │ │ │ │ │ └── width.go │ │ │ │ ├── rule.go │ │ │ │ └── watch_tracker.go │ │ │ ├── flushwriter │ │ │ │ ├── doc.go │ │ │ │ └── writer.go │ │ │ ├── peerproxy │ │ │ │ └── metrics │ │ │ │ │ └── metrics.go │ │ │ ├── shufflesharding │ │ │ │ └── shufflesharding.go │ │ │ ├── webhook │ │ │ │ ├── authentication.go │ │ │ │ ├── client.go │ │ │ │ ├── error.go │ │ │ │ ├── gencerts.sh │ │ │ │ ├── metrics.go │ │ │ │ ├── serviceresolver.go │ │ │ │ ├── validation.go │ │ │ │ └── webhook.go │ │ │ └── x509metrics │ │ │ │ └── server_cert_deprecations.go │ │ ├── validation │ │ │ └── metrics.go │ │ └── warning │ │ │ └── context.go │ └── plugin │ │ └── pkg │ │ ├── audit │ │ ├── buffered │ │ │ ├── buffered.go │ │ │ └── doc.go │ │ ├── log │ │ │ └── backend.go │ │ ├── truncate │ │ │ ├── doc.go │ │ │ └── truncate.go │ │ └── webhook │ │ │ └── webhook.go │ │ ├── authenticator │ │ └── token │ │ │ └── webhook │ │ │ ├── metrics.go │ │ │ └── webhook.go │ │ └── authorizer │ │ └── webhook │ │ ├── gencerts.sh │ │ ├── metrics │ │ └── metrics.go │ │ └── webhook.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── OWNERS │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validation.go │ │ │ │ └── variable.go │ │ │ └── v1beta1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.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 │ │ │ └── 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 │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.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 │ │ │ │ ├── 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 │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.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 │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ ├── devicetaintselector.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 │ │ │ ├── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.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 │ │ │ │ ├── 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 │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ └── volumeerror.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── storagemigration │ │ │ └── v1alpha1 │ │ │ │ ├── groupversionresource.go │ │ │ │ ├── migrationcondition.go │ │ │ │ ├── storageversionmigration.go │ │ │ │ ├── storageversionmigrationspec.go │ │ │ │ └── storageversionmigrationstatus.go │ │ └── utils.go │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── cached │ │ │ └── memory │ │ │ │ └── memcache.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ ├── fake │ │ │ └── discovery.go │ │ └── helper.go │ ├── dynamic │ │ ├── dynamicinformer │ │ │ ├── informer.go │ │ │ └── interface.go │ │ ├── dynamiclister │ │ │ ├── interface.go │ │ │ ├── lister.go │ │ │ └── shim.go │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.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 │ │ │ ├── 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_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.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 │ │ │ │ └── generated_expansion.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_devicetaintrule.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 │ │ │ ├── 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 │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ipaddress.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── storageversionmigration.go │ ├── metadata │ │ ├── interface.go │ │ └── metadata.go │ ├── openapi │ │ ├── OWNERS │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ ├── groupversion.go │ │ └── typeconverter.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ └── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ ├── rest │ │ ├── .mockery.yaml │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── restmapper │ │ ├── category_expansion.go │ │ ├── discovery.go │ │ └── shortcut.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── object-names.go │ │ │ ├── reflector.go │ │ │ ├── reflector_data_consistency_detector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── synctrack │ │ │ │ ├── lazy.go │ │ │ │ └── synctrack.go │ │ │ ├── the_real_fifo.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merge.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event_broadcaster.go │ │ │ ├── event_recorder.go │ │ │ ├── fake.go │ │ │ ├── helper.go │ │ │ └── interfaces.go │ │ ├── internal │ │ │ └── events │ │ │ │ └── interfaces.go │ │ ├── leaderelection │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── leasecandidate.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ ├── reference │ │ │ └── ref.go │ │ └── remotecommand │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── errorstream.go │ │ │ ├── fallback.go │ │ │ ├── reader.go │ │ │ ├── remotecommand.go │ │ │ ├── resize.go │ │ │ ├── spdy.go │ │ │ ├── v1.go │ │ │ ├── v2.go │ │ │ ├── v3.go │ │ │ ├── v4.go │ │ │ ├── v5.go │ │ │ └── websocket.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── spdy │ │ │ └── spdy.go │ │ ├── token_source.go │ │ ├── transport.go │ │ └── websocket │ │ │ └── roundtripper.go │ └── util │ │ ├── apply │ │ └── apply.go │ │ ├── cert │ │ ├── OWNERS │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ ├── pem.go │ │ └── server_inspection.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── consistencydetector │ │ ├── data_consistency_detector.go │ │ ├── list_data_consistency_detector.go │ │ └── watch_list_data_consistency_detector.go │ │ ├── exec │ │ └── exec.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── keyutil │ │ ├── OWNERS │ │ └── key.go │ │ ├── retry │ │ ├── OWNERS │ │ └── util.go │ │ ├── watchlist │ │ └── watch_list.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 │ ├── OWNERS │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── cmd │ │ ├── applyconfiguration-gen │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ └── externaltypes.go │ │ │ ├── generators │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── internal.go │ │ │ │ ├── jsontagutil.go │ │ │ │ ├── openapi.go │ │ │ │ ├── refgraph.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── util.go │ │ │ └── main.go │ │ ├── client-gen │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ ├── gvpackages.go │ │ │ │ └── gvtype.go │ │ │ ├── generators │ │ │ │ ├── client_generator.go │ │ │ │ ├── fake │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ ├── generator_for_clientset.go │ │ │ │ ├── generator_for_expansion.go │ │ │ │ ├── generator_for_group.go │ │ │ │ ├── generator_for_type.go │ │ │ │ ├── scheme │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ └── util │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ ├── main.go │ │ │ └── types │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ ├── conversion-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── conversion.go │ │ │ └── main.go │ │ ├── deepcopy-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── deepcopy.go │ │ │ └── main.go │ │ ├── defaulter-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── defaulter.go │ │ │ └── main.go │ │ ├── go-to-protobuf │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ ├── main.go │ │ │ ├── protobuf │ │ │ │ ├── cmd.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── namer.go │ │ │ │ ├── package.go │ │ │ │ ├── parser.go │ │ │ │ └── tags.go │ │ │ └── protoc-gen-gogo │ │ │ │ └── main.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 │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── component-base │ ├── LICENSE │ ├── cli │ │ ├── OWNERS │ │ ├── flag │ │ │ ├── ciphersuites_flag.go │ │ │ ├── colon_separated_multimap_string_string.go │ │ │ ├── configuration_map.go │ │ │ ├── flags.go │ │ │ ├── langle_separated_map_string_string.go │ │ │ ├── map_string_bool.go │ │ │ ├── map_string_string.go │ │ │ ├── namedcertkey_flag.go │ │ │ ├── noop.go │ │ │ ├── omitempty.go │ │ │ ├── sectioned.go │ │ │ ├── string_flag.go │ │ │ ├── string_slice_flag.go │ │ │ ├── tracker_flag.go │ │ │ └── tristate.go │ │ └── run.go │ ├── compatibility │ │ ├── OWNERS │ │ ├── registry.go │ │ └── version.go │ ├── featuregate │ │ ├── OWNERS │ │ └── feature_gate.go │ ├── logs │ │ ├── OWNERS │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── kube_features.go │ │ │ │ ├── options.go │ │ │ │ ├── options_no_slog.go │ │ │ │ ├── options_slog.go │ │ │ │ ├── pflags.go │ │ │ │ ├── registry.go │ │ │ │ ├── text.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── internal │ │ │ └── setverbositylevel │ │ │ │ └── setverbositylevel.go │ │ ├── klogflags │ │ │ └── klogflags.go │ │ └── logs.go │ ├── metrics │ │ ├── OWNERS │ │ ├── buckets.go │ │ ├── collector.go │ │ ├── counter.go │ │ ├── desc.go │ │ ├── features │ │ │ └── kube_features.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ ├── http.go │ │ ├── labels.go │ │ ├── legacyregistry │ │ │ └── registry.go │ │ ├── metric.go │ │ ├── options.go │ │ ├── opts.go │ │ ├── processstarttime.go │ │ ├── processstarttime_others.go │ │ ├── processstarttime_windows.go │ │ ├── prometheus │ │ │ ├── clientgo │ │ │ │ ├── leaderelection │ │ │ │ │ └── metrics.go │ │ │ │ └── metrics.go │ │ │ ├── feature │ │ │ │ └── metrics.go │ │ │ ├── restclient │ │ │ │ └── metrics.go │ │ │ ├── slis │ │ │ │ ├── metrics.go │ │ │ │ ├── registry.go │ │ │ │ └── routes.go │ │ │ └── workqueue │ │ │ │ └── metrics.go │ │ ├── prometheusextension │ │ │ ├── timing_histogram.go │ │ │ ├── timing_histogram_vec.go │ │ │ ├── weighted_histogram.go │ │ │ └── weighted_histogram_vec.go │ │ ├── registry.go │ │ ├── summary.go │ │ ├── testutil │ │ │ ├── metrics.go │ │ │ ├── promlint.go │ │ │ └── testutil.go │ │ ├── timing_histogram.go │ │ ├── value.go │ │ ├── version.go │ │ ├── version_parser.go │ │ └── wrappers.go │ ├── tracing │ │ ├── OWNERS │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── tracing.go │ │ └── utils.go │ ├── version │ │ ├── OWNERS │ │ ├── base.go │ │ ├── dynamic.go │ │ └── version.go │ └── zpages │ │ ├── features │ │ ├── doc.go │ │ └── kube_features.go │ │ ├── flagz │ │ ├── flagreader.go │ │ └── flagz.go │ │ └── httputil │ │ └── httputil.go ├── component-helpers │ ├── LICENSE │ ├── node │ │ └── util │ │ │ └── sysctl │ │ │ ├── namespace.go │ │ │ └── sysctl.go │ ├── resource │ │ ├── OWNERS │ │ └── helpers.go │ └── scheduling │ │ └── corev1 │ │ ├── doc.go │ │ ├── helpers.go │ │ └── nodeaffinity │ │ └── nodeaffinity.go ├── controller-manager │ ├── LICENSE │ └── pkg │ │ └── features │ │ ├── OWNERS │ │ └── kube_features.go ├── gengo │ └── v2 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── 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 │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── contextual_slog.go │ │ ├── exit.go │ │ ├── format.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ ├── keyvalues.go │ │ │ ├── keyvalues_no_slog.go │ │ │ └── keyvalues_slog.go │ │ ├── severity │ │ │ └── severity.go │ │ ├── sloghandler │ │ │ └── sloghandler_slog.go │ │ └── verbosity │ │ │ └── verbosity.go │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ ├── safeptr.go │ │ └── textlogger │ │ ├── options.go │ │ ├── textlogger.go │ │ └── textlogger_slog.go ├── kms │ ├── LICENSE │ ├── apis │ │ ├── v1beta1 │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ └── v1beta1.go │ │ └── v2 │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ └── v2.go │ └── pkg │ │ ├── service │ │ ├── grpc_service.go │ │ └── interface.go │ │ └── util │ │ └── util.go ├── kube-aggregator │ ├── LICENSE │ └── pkg │ │ ├── apis │ │ └── apiregistration │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ └── clientset_generated │ │ └── clientset │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── apiregistration │ │ └── v1 │ │ ├── apiregistration_client.go │ │ ├── apiservice.go │ │ ├── doc.go │ │ └── generated_expansion.go ├── kube-openapi │ ├── LICENSE │ ├── cmd │ │ └── openapi-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ └── openapi-gen.go │ └── pkg │ │ ├── builder │ │ ├── doc.go │ │ ├── openapi.go │ │ ├── parameters.go │ │ └── util.go │ │ ├── builder3 │ │ ├── openapi.go │ │ ├── util.go │ │ └── util │ │ │ └── util.go │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ ├── interfaces.go │ │ └── restfuladapter │ │ │ ├── adapter.go │ │ │ ├── param_adapter.go │ │ │ ├── response_error_adapter.go │ │ │ ├── route_adapter.go │ │ │ └── webservice_adapter.go │ │ ├── generators │ │ ├── README.md │ │ ├── api_linter.go │ │ ├── config.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── markers.go │ │ ├── openapi.go │ │ ├── rules │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── idl_tag.go │ │ │ ├── list_type_streaming_tags.go │ │ │ ├── names_match.go │ │ │ └── omitempty_match_case.go │ │ └── union.go │ │ ├── handler │ │ ├── default_pruning.go │ │ └── handler.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 │ │ │ └── govalidator │ │ │ ├── LICENSE │ │ │ ├── patterns.go │ │ │ └── validator.go │ │ ├── schemaconv │ │ ├── openapi.go │ │ ├── proto_models.go │ │ └── smd.go │ │ ├── schemamutation │ │ └── walker.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── fuzz.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ ├── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ └── openapi.go │ │ ├── sets │ │ │ ├── empty.go │ │ │ └── string.go │ │ ├── trie.go │ │ └── util.go │ │ └── validation │ │ ├── errors │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── api.go │ │ ├── doc.go │ │ ├── headers.go │ │ └── schema.go │ │ ├── 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 │ │ └── strfmt │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bson.go │ │ ├── bson │ │ └── objectid.go │ │ ├── date.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── format.go │ │ └── time.go ├── kubelet │ ├── LICENSE │ └── pkg │ │ └── apis │ │ └── well_known_labels.go ├── kubernetes │ ├── LICENSE │ └── pkg │ │ ├── api │ │ ├── service │ │ │ ├── OWNERS │ │ │ ├── util.go │ │ │ └── warnings.go │ │ └── v1 │ │ │ └── service │ │ │ └── util.go │ │ ├── apis │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── OWNERS │ │ │ ├── annotations.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── core │ │ │ ├── OWNERS │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── helper │ │ │ ├── helpers.go │ │ │ └── qos │ │ │ │ └── qos.go │ │ │ ├── json.go │ │ │ ├── objectreference.go │ │ │ ├── pods │ │ │ └── helpers.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ ├── OWNERS │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── helper │ │ │ │ └── helpers.go │ │ │ ├── register.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.validations.go │ │ │ ├── validation │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── events.go │ │ │ ├── names.go │ │ │ └── validation.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── capabilities │ │ ├── capabilities.go │ │ └── doc.go │ │ ├── features │ │ ├── OWNERS │ │ ├── client_adapter.go │ │ └── kube_features.go │ │ ├── fieldpath │ │ ├── doc.go │ │ └── fieldpath.go │ │ └── util │ │ ├── parsers │ │ └── parsers.go │ │ └── tolerations │ │ ├── doc.go │ │ └── tolerations.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 │ ├── path │ └── file.go │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ ├── strings │ └── slices │ │ └── slices.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt ├── mvdan.cc ├── gofumpt │ ├── LICENSE │ ├── LICENSE.google │ ├── format │ │ ├── format.go │ │ ├── rewrite.go │ │ └── simplify.go │ └── internal │ │ └── version │ │ └── version.go ├── interfacer │ ├── LICENSE │ └── check │ │ ├── cache.go │ │ ├── check.go │ │ └── types.go ├── lint │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ └── lint.go └── unparam │ ├── LICENSE │ └── check │ └── check.go └── sigs.k8s.io ├── apiserver-network-proxy └── konnectivity-client │ ├── LICENSE │ ├── pkg │ ├── client │ │ ├── client.go │ │ ├── conn.go │ │ └── metrics │ │ │ └── metrics.go │ └── common │ │ └── metrics │ │ └── metrics.go │ └── proto │ └── client │ ├── client.pb.go │ ├── client.proto │ └── client_grpc.pb.go ├── controller-runtime ├── .gitignore ├── .golangci.yml ├── .gomodcheck.yaml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── TMP-LOGGING.md ├── VERSIONING.md ├── alias.go ├── code-of-conduct.md ├── doc.go ├── pkg │ ├── builder │ │ ├── controller.go │ │ ├── doc.go │ │ ├── options.go │ │ └── webhook.go │ ├── cache │ │ ├── cache.go │ │ ├── delegating_by_gvk_cache.go │ │ ├── doc.go │ │ ├── informer_cache.go │ │ ├── internal │ │ │ ├── cache_reader.go │ │ │ ├── informers.go │ │ │ └── selector.go │ │ └── multi_namespace_cache.go │ ├── certwatcher │ │ ├── certwatcher.go │ │ ├── doc.go │ │ └── metrics │ │ │ └── metrics.go │ ├── client │ │ ├── apiutil │ │ │ ├── apimachinery.go │ │ │ ├── errors.go │ │ │ └── restmapper.go │ │ ├── client.go │ │ ├── client_rest_resources.go │ │ ├── codec.go │ │ ├── config │ │ │ ├── config.go │ │ │ └── doc.go │ │ ├── doc.go │ │ ├── dryrun.go │ │ ├── fieldowner.go │ │ ├── fieldvalidation.go │ │ ├── interfaces.go │ │ ├── metadata_client.go │ │ ├── namespaced_client.go │ │ ├── object.go │ │ ├── options.go │ │ ├── patch.go │ │ ├── typed_client.go │ │ ├── unstructured_client.go │ │ └── watch.go │ ├── cluster │ │ ├── cluster.go │ │ └── internal.go │ ├── config │ │ └── controller.go │ ├── controller │ │ ├── controller.go │ │ ├── controllerutil │ │ │ ├── controllerutil.go │ │ │ └── doc.go │ │ ├── doc.go │ │ └── name.go │ ├── conversion │ │ └── conversion.go │ ├── event │ │ ├── doc.go │ │ └── event.go │ ├── handler │ │ ├── doc.go │ │ ├── enqueue.go │ │ ├── enqueue_mapped.go │ │ ├── enqueue_owner.go │ │ └── eventhandler.go │ ├── healthz │ │ ├── doc.go │ │ └── healthz.go │ ├── internal │ │ ├── controller │ │ │ ├── controller.go │ │ │ └── metrics │ │ │ │ └── metrics.go │ │ ├── field │ │ │ └── selector │ │ │ │ └── utils.go │ │ ├── httpserver │ │ │ └── server.go │ │ ├── log │ │ │ └── log.go │ │ ├── recorder │ │ │ └── recorder.go │ │ ├── source │ │ │ ├── event_handler.go │ │ │ └── kind.go │ │ └── syncs │ │ │ └── syncs.go │ ├── leaderelection │ │ ├── doc.go │ │ └── leader_election.go │ ├── log │ │ ├── deleg.go │ │ ├── log.go │ │ ├── null.go │ │ └── warning_handler.go │ ├── manager │ │ ├── doc.go │ │ ├── internal.go │ │ ├── manager.go │ │ ├── runnable_group.go │ │ ├── server.go │ │ └── signals │ │ │ ├── doc.go │ │ │ ├── signal.go │ │ │ ├── signal_posix.go │ │ │ └── signal_windows.go │ ├── metrics │ │ ├── client_go_adapter.go │ │ ├── doc.go │ │ ├── leaderelection.go │ │ ├── registry.go │ │ ├── server │ │ │ ├── doc.go │ │ │ └── server.go │ │ └── workqueue.go │ ├── predicate │ │ ├── doc.go │ │ └── predicate.go │ ├── reconcile │ │ ├── doc.go │ │ └── reconcile.go │ ├── recorder │ │ └── recorder.go │ ├── scheme │ │ └── scheme.go │ ├── source │ │ ├── doc.go │ │ └── source.go │ └── webhook │ │ ├── admission │ │ ├── decode.go │ │ ├── defaulter.go │ │ ├── defaulter_custom.go │ │ ├── doc.go │ │ ├── http.go │ │ ├── metrics │ │ │ └── metrics.go │ │ ├── multi.go │ │ ├── response.go │ │ ├── validator.go │ │ ├── validator_custom.go │ │ └── webhook.go │ │ ├── alias.go │ │ ├── conversion │ │ ├── conversion.go │ │ └── decoder.go │ │ ├── doc.go │ │ ├── internal │ │ └── metrics │ │ │ └── metrics.go │ │ └── server.go └── tools │ └── setup-envtest │ ├── LICENSE │ ├── README.md │ ├── env │ ├── env.go │ ├── exit.go │ └── helpers.go │ ├── main.go │ ├── remote │ └── client.go │ ├── store │ ├── helpers.go │ └── store.go │ ├── versions │ ├── parse.go │ ├── platform.go │ └── version.go │ └── workflows │ └── workflows.go ├── controller-tools ├── LICENSE ├── cmd │ └── controller-gen │ │ └── main.go └── pkg │ ├── crd │ ├── conv.go │ ├── desc_visitor.go │ ├── doc.go │ ├── flatten.go │ ├── gen.go │ ├── known_types.go │ ├── markers │ │ ├── crd.go │ │ ├── doc.go │ │ ├── package.go │ │ ├── patch_validation.go │ │ ├── priority.go │ │ ├── register.go │ │ ├── topology.go │ │ ├── validation.go │ │ └── zz_generated.markerhelp.go │ ├── parser.go │ ├── patch_schema.go │ ├── schema.go │ ├── schema_visitor.go │ ├── spec.go │ └── zz_generated.markerhelp.go │ ├── deepcopy │ ├── doc.go │ ├── gen.go │ ├── traverse.go │ └── zz_generated.markerhelp.go │ ├── genall │ ├── doc.go │ ├── genall.go │ ├── help │ │ ├── doc.go │ │ ├── pretty │ │ │ ├── doc.go │ │ │ ├── help.go │ │ │ ├── print.go │ │ │ └── table.go │ │ ├── sort.go │ │ └── types.go │ ├── input.go │ ├── options.go │ ├── output.go │ └── zz_generated.markerhelp.go │ ├── loader │ ├── doc.go │ ├── errors.go │ ├── loader.go │ ├── paths.go │ ├── refs.go │ └── visit.go │ ├── markers │ ├── collect.go │ ├── doc.go │ ├── help.go │ ├── parse.go │ ├── reg.go │ ├── regutil.go │ └── zip.go │ ├── rbac │ ├── parser.go │ └── zz_generated.markerhelp.go │ ├── schemapatcher │ ├── gen.go │ ├── internal │ │ └── yaml │ │ │ ├── convert.go │ │ │ ├── nested.go │ │ │ └── set.go │ ├── patch_gen.go │ └── zz_generated.markerhelp.go │ ├── version │ └── version.go │ └── webhook │ ├── parser.go │ └── zz_generated.markerhelp.go ├── gateway-api ├── LICENSE └── apis │ └── v1 │ ├── doc.go │ ├── gateway_types.go │ ├── gatewayclass_types.go │ ├── grpcroute_types.go │ ├── httproute_types.go │ ├── object_reference_types.go │ ├── shared_types.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── internal │ └── golang │ │ └── encoding │ │ └── json │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── kubernetes_patch.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go └── json.go ├── kube-storage-version-migrator ├── LICENSE └── pkg │ ├── apis │ └── migration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ └── clients │ └── clientset │ ├── clientset.go │ ├── doc.go │ ├── scheme │ ├── doc.go │ └── register.go │ └── typed │ └── migration │ └── v1alpha1 │ ├── doc.go │ ├── generated_expansion.go │ ├── migration_client.go │ ├── storagestate.go │ └── storageversionmigration.go ├── kustomize ├── api │ ├── LICENSE │ ├── filters │ │ ├── annotations │ │ │ ├── annotations.go │ │ │ └── doc.go │ │ ├── fieldspec │ │ │ ├── doc.go │ │ │ └── fieldspec.go │ │ ├── filtersutil │ │ │ └── setters.go │ │ ├── fsslice │ │ │ ├── doc.go │ │ │ └── fsslice.go │ │ ├── iampolicygenerator │ │ │ ├── doc.go │ │ │ └── iampolicygenerator.go │ │ ├── imagetag │ │ │ ├── doc.go │ │ │ ├── imagetag.go │ │ │ ├── legacy.go │ │ │ └── updater.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── nameref │ │ │ ├── doc.go │ │ │ ├── nameref.go │ │ │ └── seqfilter.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ └── namespace.go │ │ ├── patchjson6902 │ │ │ ├── doc.go │ │ │ └── patchjson6902.go │ │ ├── patchstrategicmerge │ │ │ ├── doc.go │ │ │ └── patchstrategicmerge.go │ │ ├── prefix │ │ │ ├── doc.go │ │ │ └── prefix.go │ │ ├── refvar │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ └── refvar.go │ │ ├── replacement │ │ │ ├── doc.go │ │ │ └── replacement.go │ │ ├── replicacount │ │ │ ├── doc.go │ │ │ └── replicacount.go │ │ ├── suffix │ │ │ ├── doc.go │ │ │ └── suffix.go │ │ └── valueadd │ │ │ └── valueadd.go │ ├── hasher │ │ └── hasher.go │ ├── ifc │ │ └── ifc.go │ ├── internal │ │ ├── accumulator │ │ │ ├── loadconfigfromcrds.go │ │ │ ├── namereferencetransformer.go │ │ │ ├── refvartransformer.go │ │ │ └── resaccumulator.go │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── IAMPolicyGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixTransformer.go │ │ │ ├── ReplacementTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── SortOrderTransformer.go │ │ │ ├── SuffixTransformer.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── generators │ │ │ ├── configmap.go │ │ │ ├── secret.go │ │ │ └── utils.go │ │ ├── git │ │ │ ├── cloner.go │ │ │ ├── gitrunner.go │ │ │ └── repospec.go │ │ ├── image │ │ │ └── image.go │ │ ├── konfig │ │ │ └── builtinpluginconsts │ │ │ │ ├── commonannotations.go │ │ │ │ ├── commonlabels.go │ │ │ │ ├── defaultconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── images.go │ │ │ │ ├── metadatalabels.go │ │ │ │ ├── nameprefix.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namesuffix.go │ │ │ │ ├── replicas.go │ │ │ │ ├── templatelabels.go │ │ │ │ └── varreference.go │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── loader │ │ │ ├── errors.go │ │ │ ├── fileloader.go │ │ │ ├── loader.go │ │ │ └── loadrestrictions.go │ │ ├── localizer │ │ │ ├── builtinplugins.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── localizer.go │ │ │ ├── locloader.go │ │ │ └── util.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ └── execplugin.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ ├── load_go_plugin.go │ │ │ │ ├── load_go_plugin_disabled.go │ │ │ │ └── loader.go │ │ │ └── utils │ │ │ │ └── utils.go │ │ ├── target │ │ │ ├── errmissingkustomization.go │ │ │ ├── kusttarget.go │ │ │ ├── kusttarget_configplugin.go │ │ │ └── multitransformer.go │ │ ├── utils │ │ │ ├── annotations.go │ │ │ ├── errtimeout.go │ │ │ ├── makeResIds.go │ │ │ ├── stringslice.go │ │ │ └── timedcall.go │ │ └── validate │ │ │ └── fieldvalidator.go │ ├── konfig │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ ├── localizer │ │ │ └── runner.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── pkg │ │ ├── loader │ │ │ └── loader.go │ │ └── util │ │ │ └── image.go │ ├── provenance │ │ └── provenance.go │ ├── provider │ │ └── depprovider.go │ ├── resmap │ │ ├── factory.go │ │ ├── resmap.go │ │ └── reswrangler.go │ ├── resource │ │ ├── doc.go │ │ ├── factory.go │ │ ├── idset.go │ │ ├── origin.go │ │ └── resource.go │ └── types │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── sortoptions.go │ │ ├── typemeta.go │ │ └── var.go ├── cmd │ └── config │ │ ├── LICENSE │ │ ├── completion │ │ └── completion.go │ │ ├── configcobra │ │ ├── cfg.go │ │ ├── cmds.go │ │ └── fn.go │ │ ├── ext │ │ └── ext.go │ │ ├── internal │ │ ├── commands │ │ │ ├── cat.go │ │ │ ├── count.go │ │ │ ├── grep.go │ │ │ ├── internal │ │ │ │ └── k8sgen │ │ │ │ │ └── pkg │ │ │ │ │ └── api │ │ │ │ │ └── resource │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── math.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ └── suffix.go │ │ │ ├── run-fns.go │ │ │ └── tree.go │ │ └── generateddocs │ │ │ ├── api │ │ │ └── docs.go │ │ │ ├── commands │ │ │ └── docs.go │ │ │ └── tutorials │ │ │ └── docs.go │ │ └── runner │ │ └── runner.go ├── kustomize │ └── v5 │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── commands │ │ ├── build │ │ │ ├── build.go │ │ │ ├── flagaddmanagedby.go │ │ │ ├── flagenablehelm.go │ │ │ ├── flagenableplugins.go │ │ │ ├── flagloadrestrictor.go │ │ │ ├── flagoutputpath.go │ │ │ ├── flagsforfunctions.go │ │ │ ├── reorderoutput.go │ │ │ └── writer.go │ │ ├── commands.go │ │ ├── create │ │ │ └── create.go │ │ ├── edit │ │ │ ├── add │ │ │ │ ├── addbase.go │ │ │ │ ├── addbuildmetadata.go │ │ │ │ ├── addcomponent.go │ │ │ │ ├── addconfigmap.go │ │ │ │ ├── addgenerator.go │ │ │ │ ├── addmetadata.go │ │ │ │ ├── addpatch.go │ │ │ │ ├── addresource.go │ │ │ │ ├── addsecret.go │ │ │ │ ├── addtransformer.go │ │ │ │ └── all.go │ │ │ ├── all.go │ │ │ ├── fix │ │ │ │ ├── convert.go │ │ │ │ └── fix.go │ │ │ ├── listbuiltin │ │ │ │ └── listbuiltin.go │ │ │ ├── remove │ │ │ │ ├── all.go │ │ │ │ ├── removebuildmetadata.go │ │ │ │ ├── removeconfigmap.go │ │ │ │ ├── removemetadata.go │ │ │ │ ├── removepatch.go │ │ │ │ ├── removeresource.go │ │ │ │ ├── removesecret.go │ │ │ │ └── removetransformer.go │ │ │ └── set │ │ │ │ ├── all.go │ │ │ │ ├── set_name_prefix.go │ │ │ │ ├── set_name_suffix.go │ │ │ │ ├── setannotation.go │ │ │ │ ├── setbuildmetadata.go │ │ │ │ ├── setconfigmap.go │ │ │ │ ├── setimage.go │ │ │ │ ├── setlabel.go │ │ │ │ ├── setnamespace.go │ │ │ │ ├── setreplicas.go │ │ │ │ └── setsecret.go │ │ ├── internal │ │ │ ├── kustfile │ │ │ │ └── kustomizationfile.go │ │ │ └── util │ │ │ │ ├── configmapSecretFlagsAndArgs.go │ │ │ │ ├── util.go │ │ │ │ └── validate.go │ │ ├── localize │ │ │ └── localize.go │ │ ├── openapi │ │ │ ├── fetch │ │ │ │ └── fetch.go │ │ │ ├── info │ │ │ │ └── info.go │ │ │ └── openapi.go │ │ └── version │ │ │ └── version.go │ │ └── main.go └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── copyutil │ └── copyutil.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ └── runtime │ │ ├── container │ │ └── container.go │ │ ├── exec │ │ ├── doc.go │ │ └── exec.go │ │ └── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── filters │ │ ├── filters.go │ │ ├── fmtr.go │ │ ├── grep.go │ │ ├── local.go │ │ ├── merge.go │ │ ├── merge3.go │ │ ├── modify.go │ │ └── stripcomments.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1_21_2 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── pathutil │ └── pathutil.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── runfn │ └── runfn.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── merge3 │ ├── merge3.go │ └── visitor.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go ├── randfill ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY_CONTACTS ├── bytesource │ └── bytesource.go ├── code-of-conduct.md └── randfill.go ├── structured-merge-diff └── v4 │ ├── 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 ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── goyaml.v2 ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── OWNERS ├── 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 ├── goyaml.v3 ├── LICENSE ├── NOTICE ├── OWNERS ├── README.md ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── parserc.go ├── patch.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go ├── yaml.go └── yaml_go110.go /.ci-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/.ci-operator.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/.snyk -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/OWNERS -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/operator/v1alpha1/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/api/operator/v1alpha1/conditions.go -------------------------------------------------------------------------------- /api/operator/v1alpha1/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/api/operator/v1alpha1/conditions_test.go -------------------------------------------------------------------------------- /api/operator/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/api/operator/v1alpha1/doc.go -------------------------------------------------------------------------------- /api/operator/v1alpha1/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/api/operator/v1alpha1/features.go -------------------------------------------------------------------------------- /api/operator/v1alpha1/istiocsr_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/api/operator/v1alpha1/istiocsr_types.go -------------------------------------------------------------------------------- /api/operator/v1alpha1/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/api/operator/v1alpha1/meta.go -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/certmanager_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/certmanager_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/certmanager_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/certmanager_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/tech-preview/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - operator.openshift.io_v1alpha1_istiocsr.yaml 3 | -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /docs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/docs/OWNERS -------------------------------------------------------------------------------- /docs/cloud_credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/docs/cloud_credentials.md -------------------------------------------------------------------------------- /docs/operand_metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/docs/operand_metrics.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack/go-fips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/go-fips.sh -------------------------------------------------------------------------------- /hack/helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/helm.sh -------------------------------------------------------------------------------- /hack/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/lib/init.sh -------------------------------------------------------------------------------- /hack/lib/yq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/lib/yq.sh -------------------------------------------------------------------------------- /hack/local-run-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/local-run-config.yaml -------------------------------------------------------------------------------- /hack/operator-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/operator-sdk.sh -------------------------------------------------------------------------------- /hack/typelinter/typelinter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/typelinter/typelinter.go -------------------------------------------------------------------------------- /hack/update-cert-manager-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/update-cert-manager-manifests.sh -------------------------------------------------------------------------------- /hack/update-clientgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/update-clientgen.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /hack/update-istio-csr-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/update-istio-csr-manifests.sh -------------------------------------------------------------------------------- /hack/update-protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/update-protobuf.sh -------------------------------------------------------------------------------- /hack/update-swagger-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/update-swagger-docs.sh -------------------------------------------------------------------------------- /hack/verify-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-bundle.sh -------------------------------------------------------------------------------- /hack/verify-clientgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-clientgen.sh -------------------------------------------------------------------------------- /hack/verify-crds-version-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-crds-version-upgrade.sh -------------------------------------------------------------------------------- /hack/verify-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-crds.sh -------------------------------------------------------------------------------- /hack/verify-deepcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-deepcopy.sh -------------------------------------------------------------------------------- /hack/verify-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-deps.sh -------------------------------------------------------------------------------- /hack/verify-protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-protobuf.sh -------------------------------------------------------------------------------- /hack/verify-swagger-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-swagger-docs.sh -------------------------------------------------------------------------------- /hack/verify-types.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/hack/verify-types.sh -------------------------------------------------------------------------------- /images/ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/images/ci/Dockerfile -------------------------------------------------------------------------------- /images/ci/operand.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/images/ci/operand.Dockerfile -------------------------------------------------------------------------------- /jsonnet/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/jsonnet/main.jsonnet -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/main.go -------------------------------------------------------------------------------- /pkg/cmd/operator/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/cmd/operator/cmd.go -------------------------------------------------------------------------------- /pkg/controller/deployment/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/deployment/common.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/OWNERS -------------------------------------------------------------------------------- /pkg/controller/istiocsr/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/certificates.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/client.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/constants.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/controller.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/deployments.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/errors.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/rbacs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/rbacs.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/rbacs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/rbacs_test.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/services.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/services_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/services_test.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/test_utils.go -------------------------------------------------------------------------------- /pkg/controller/istiocsr/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/controller/istiocsr/utils.go -------------------------------------------------------------------------------- /pkg/dependencymagnet/dependencymagnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/dependencymagnet/dependencymagnet.go -------------------------------------------------------------------------------- /pkg/features/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/features/features.go -------------------------------------------------------------------------------- /pkg/features/features_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/features/features_test.go -------------------------------------------------------------------------------- /pkg/operator/assets/bindata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/operator/assets/bindata.go -------------------------------------------------------------------------------- /pkg/operator/setup_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/operator/setup_manager.go -------------------------------------------------------------------------------- /pkg/operator/starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/operator/starter.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/OWNERS -------------------------------------------------------------------------------- /test/e2e/condition_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/condition_matcher_test.go -------------------------------------------------------------------------------- /test/e2e/condition_matcher_unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/condition_matcher_unit_test.go -------------------------------------------------------------------------------- /test/e2e/config_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/config_template.go -------------------------------------------------------------------------------- /test/e2e/issuer_acme_dns01_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/issuer_acme_dns01_test.go -------------------------------------------------------------------------------- /test/e2e/issuer_acme_http01_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/issuer_acme_http01_test.go -------------------------------------------------------------------------------- /test/e2e/issuer_selfsigned_ca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/issuer_selfsigned_ca_test.go -------------------------------------------------------------------------------- /test/e2e/issuer_vault_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/issuer_vault_test.go -------------------------------------------------------------------------------- /test/e2e/istio_csr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/istio_csr_test.go -------------------------------------------------------------------------------- /test/e2e/overrides_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/overrides_test.go -------------------------------------------------------------------------------- /test/e2e/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/suite_test.go -------------------------------------------------------------------------------- /test/e2e/testdata/acme/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/testdata/acme/deployment.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/acme/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/testdata/acme/service.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/istio/grpcurl_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/testdata/istio/grpcurl_job.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/vault/helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/testdata/vault/helm-values.yaml -------------------------------------------------------------------------------- /test/e2e/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/e2e/utils_test.go -------------------------------------------------------------------------------- /test/library/cert_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/library/cert_utils.go -------------------------------------------------------------------------------- /test/library/dynamic_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/library/dynamic_resources.go -------------------------------------------------------------------------------- /test/library/istiocsr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/library/istiocsr.go -------------------------------------------------------------------------------- /test/library/kube_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/library/kube_client.go -------------------------------------------------------------------------------- /test/library/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/test/library/utils.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/tools/tools.go -------------------------------------------------------------------------------- /vendor/4d63.com/gochecknoglobals/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/4d63.com/gochecknoglobals/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.0.1 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/.gitattributes -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/checked.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/checked.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/cloudbuild.yaml -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/explain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/explain.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/regen_go_proto.sh -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/cloud.google.com/go/auth/auth.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/aws/smithy-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/blang/semver/v4/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blizzy78/varnamelen/.gitignore: -------------------------------------------------------------------------------- 1 | /cmd/__debug_bin 2 | -------------------------------------------------------------------------------- /vendor/github.com/breml/bidichk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/breml/bidichk/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/charithe/durationcheck/.gitignore: -------------------------------------------------------------------------------- 1 | /durationcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/chavacava/garif/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | .devcontainer/ -------------------------------------------------------------------------------- /vendor/github.com/chavacava/garif/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/chavacava/garif/doc.go -------------------------------------------------------------------------------- /vendor/github.com/chavacava/garif/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/chavacava/garif/io.go -------------------------------------------------------------------------------- /vendor/github.com/curioswitch/go-reassign/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/curioswitch/go-reassign/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .VSCode 3 | .envrc 4 | 5 | build 6 | dist 7 | -------------------------------------------------------------------------------- /vendor/github.com/daixiang0/gci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/daixiang0/gci/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/denis-tingaikin/go-header/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/ettle/strcase/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/ettle/strcase/Makefile -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/caser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/ettle/strcase/caser.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/ettle/strcase/doc.go -------------------------------------------------------------------------------- /vendor/github.com/ettle/strcase/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/ettle/strcase/split.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fzipp/gocyclo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/recv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fzipp/gocyclo/recv.go -------------------------------------------------------------------------------- /vendor/github.com/fzipp/gocyclo/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/fzipp/gocyclo/stats.go -------------------------------------------------------------------------------- /vendor/github.com/go-bindata/go-bindata/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C testdata 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-bindata/go-bindata/go-bindata/.gitignore: -------------------------------------------------------------------------------- 1 | go-bindata 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/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/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-logr/zapr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/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/openshift/cert-manager-operator/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-toolsmith/astequal/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | pkg 3 | src/main 4 | tmp 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-toolsmith/astp/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | pkg 3 | src/main 4 | tmp -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gobwas/glob/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gobwas/glob/readme.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gofrs/flock/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gofrs/flock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gofrs/flock/README.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gofrs/flock/flock.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/check/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/golangci/check/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/dupl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/golangci/dupl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golangci/dupl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/golangci/dupl/main.go -------------------------------------------------------------------------------- /vendor/github.com/golangci/gofmt/gofmt/readme.md: -------------------------------------------------------------------------------- 1 | # Hard Fork of gofmt 2 | 3 | 2022-08-31: Sync with go1.18.5 4 | -------------------------------------------------------------------------------- /vendor/github.com/golangci/gofmt/goimports/readme.md: -------------------------------------------------------------------------------- 1 | # Hard Fork of goimports 2 | 3 | 2022-08-31: Sync with golang.org/x/tools v0.1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/golangci/revgrep/.gitignore: -------------------------------------------------------------------------------- 1 | testdata/git 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/cel-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-jsonnet/.tool-versions: -------------------------------------------------------------------------------- 1 | bazel 1.2.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/shlex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/shlex/shlex.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.13.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /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/julz/importas/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | importas 3 | -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/julz/importas/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/julz/importas/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/julz/importas/flags.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/kisielk/gotool/LEGAL -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/kisielk/gotool/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/kisielk/gotool/go13.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/kisielk/gotool/tool.go -------------------------------------------------------------------------------- /vendor/github.com/kulti/thelper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/kulti/thelper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ldez/gomoddirectives/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /gomoddirectives 3 | -------------------------------------------------------------------------------- /vendor/github.com/ldez/tagliatelle/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /tagliatelle 3 | notes.md 4 | -------------------------------------------------------------------------------- /vendor/github.com/lufeee/execinquery/.gitignore: -------------------------------------------------------------------------------- 1 | execinquery 2 | -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/matoous/godox/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/matoous/godox/godox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/matoous/godox/godox.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/maxbrunsfeld/counterfeiter/v6/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgechev/revive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/mgechev/revive/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/spdystream/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/moby/spdystream/NOTICE -------------------------------------------------------------------------------- /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/mogensen/kubernetes-split-yaml/.gitattributes: -------------------------------------------------------------------------------- 1 | vendor/* linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/mogensen/kubernetes-split-yaml/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/mogensen/kubernetes-split-yaml/newline_darwin.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const LineBreak = "\n" 4 | -------------------------------------------------------------------------------- /vendor/github.com/mogensen/kubernetes-split-yaml/newline_linux.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const LineBreak = "\n" 4 | -------------------------------------------------------------------------------- /vendor/github.com/mogensen/kubernetes-split-yaml/newline_windows.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const LineBreak = "\r\n" 4 | -------------------------------------------------------------------------------- /vendor/github.com/moricho/tparallel/.gitignore: -------------------------------------------------------------------------------- 1 | /tparallel 2 | .envrc 3 | /dist 4 | -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/.gitignore: -------------------------------------------------------------------------------- 1 | zxcvbn 2 | debug.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/onsi/ginkgo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.21.0" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/openshift/api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/openshift/api/Makefile -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/openshift/api/OWNERS -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apiserver/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/cloudnetwork/.codegen.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/helm/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/imageregistry/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/kubecontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/networkoperator/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/oauth/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/openshiftcontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | swaggerdocs: 3 | commentPolicy: Warn 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operatorcontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/project/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mfojtik 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/route/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | swaggerdocs: 3 | commentPolicy: Warn 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/samples/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/servicecertsigner/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/sharedresource/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.log.raw 2 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/profile/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/profile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/profile/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/pkg/profile/profile.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/openshift/cert-manager-operator/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/quasilyte/gogrep/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | coverage.txt 4 | bin 5 | -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/rivo/uniseg/README.md -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/README.md -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/cron.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/doc.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/parser.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/robfig/cron/spec.go -------------------------------------------------------------------------------- /vendor/github.com/ryancurrah/gomodguard/.dockerignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sergi/go-diff/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sergi/go-diff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/shazow/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/shazow/go-diff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sivchari/tenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sivchari/tenv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sivchari/tenv/tenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sivchari/tenv/tenv.go -------------------------------------------------------------------------------- /vendor/github.com/sivchari/tenv/tenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sivchari/tenv/tenv.png -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /vendor/github.com/sonatard/noctx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/sonatard/noctx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/fs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/logger.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/spf13/viper/watch.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/stretchr/objx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | profile.cov 5 | -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tetafro/godot/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tetafro/godot/Makefile -------------------------------------------------------------------------------- /vendor/github.com/tetafro/godot/godot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tetafro/godot/godot.go -------------------------------------------------------------------------------- /vendor/github.com/tidwall/gjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tidwall/gjson/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tidwall/gjson/gjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tidwall/gjson/gjson.go -------------------------------------------------------------------------------- /vendor/github.com/tidwall/match/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tidwall/match/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tidwall/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tidwall/match/match.go -------------------------------------------------------------------------------- /vendor/github.com/tidwall/pretty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/tidwall/pretty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tommy-muehle/go-mnd/v2/checks/checks.go: -------------------------------------------------------------------------------- 1 | package checks 2 | 3 | const reportMsg = "Magic number: %v, in <%s> detected" 4 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/args.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/docs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/fish.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/parse.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/urfave/cli/v2/sort.go -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/x448/float16/README.md -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | .idea 3 | **/**.iml 4 | -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/github.com/xlab/treeprint/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/yagipy/maintidx/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | bin 3 | -------------------------------------------------------------------------------- /vendor/gitlab.com/bosi/decorder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gitlab.com/bosi/decorder/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/api/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/api/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/auth.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/ctx.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/kv.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/op.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/sort.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/txn.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/metadata.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.3.0 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/timer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/plan9/str.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/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/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/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/golang.org/x/tools/go/ssa/TODO -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/honnef.co/go/tools/LICENSE -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/honnef.co/go/tools/go/ir/doc.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/honnef.co/go/tools/go/ir/dom.go -------------------------------------------------------------------------------- /vendor/honnef.co/go/tools/go/ir/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/honnef.co/go/tools/go/ir/ssa.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/ip.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/url.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/request/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/listers/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/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/openshift/cert-manager-operator/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/code-generator/tools.go -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/parser/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/gengo/v2/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kms/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kms/apis/v2/api.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kms/apis/v2/api.proto -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kms/apis/v2/v2.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kms/pkg/util/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kube-aggregator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubelet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kubelet/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/apis/core/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - sig/apps 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/path/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/path/file.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/pointer/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/pointer/pointer.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/mvdan.cc/gofumpt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/gofumpt/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/gofumpt/LICENSE.google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/gofumpt/LICENSE.google -------------------------------------------------------------------------------- /vendor/mvdan.cc/interfacer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/interfacer/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/lint/.travis.yml -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/lint/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/lint/README.md -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/lint/lint.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/unparam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/unparam/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/unparam/check/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/mvdan.cc/unparam/check/check.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/gateway-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/gateway-api/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/randfill/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/randfill/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/cert-manager-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------