├── .DEREK.yml ├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yaml │ └── publish.yaml ├── .gitignore ├── .tools ├── README.md ├── code-generator.mod └── code-generator.sum ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── chart └── inlets-operator │ ├── .gitignore │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ └── operator.inlets.dev_tunnels.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ └── rbac.yaml │ └── values.yaml ├── config.go ├── config_test.go ├── contrib └── nginx-sample-deployment.yaml ├── controller.go ├── docs ├── DEV.md ├── controller-client-go.md ├── images │ └── client-go-controller-interaction.jpeg ├── index.yaml ├── inlets-operator-0.1.0.tgz ├── inlets-operator-0.10.0.tgz ├── inlets-operator-0.10.1.tgz ├── inlets-operator-0.10.2.tgz ├── inlets-operator-0.10.3.tgz ├── inlets-operator-0.11.0.tgz ├── inlets-operator-0.12.0.tgz ├── inlets-operator-0.13.0.tgz ├── inlets-operator-0.14.1.tgz ├── inlets-operator-0.14.2.tgz ├── inlets-operator-0.14.3.tgz ├── inlets-operator-0.14.4.tgz ├── inlets-operator-0.14.5.tgz ├── inlets-operator-0.14.6.tgz ├── inlets-operator-0.15.0.tgz ├── inlets-operator-0.15.1.tgz ├── inlets-operator-0.15.2.tgz ├── inlets-operator-0.15.3.tgz ├── inlets-operator-0.15.4.tgz ├── inlets-operator-0.15.5.tgz ├── inlets-operator-0.16.0.tgz ├── inlets-operator-0.16.1.tgz ├── inlets-operator-0.16.2.tgz ├── inlets-operator-0.16.3.tgz ├── inlets-operator-0.16.4.tgz ├── inlets-operator-0.16.5.tgz ├── inlets-operator-0.16.6.tgz ├── inlets-operator-0.17.0.tgz ├── inlets-operator-0.17.1.tgz ├── inlets-operator-0.17.10.tgz ├── inlets-operator-0.17.11.tgz ├── inlets-operator-0.17.12.tgz ├── inlets-operator-0.17.13.tgz ├── inlets-operator-0.17.2.tgz ├── inlets-operator-0.17.3.tgz ├── inlets-operator-0.17.4.tgz ├── inlets-operator-0.17.5.tgz ├── inlets-operator-0.17.6.tgz ├── inlets-operator-0.17.7.tgz ├── inlets-operator-0.17.8.tgz ├── inlets-operator-0.17.9.tgz ├── inlets-operator-0.2.0.tgz ├── inlets-operator-0.2.1.tgz ├── inlets-operator-0.2.2.tgz ├── inlets-operator-0.3.0.tgz ├── inlets-operator-0.4.0.tgz ├── inlets-operator-0.4.1.tgz ├── inlets-operator-0.4.2.tgz ├── inlets-operator-0.4.3.tgz ├── inlets-operator-0.5.4.tgz ├── inlets-operator-0.5.5.tgz ├── inlets-operator-0.5.6.tgz ├── inlets-operator-0.6.0.tgz ├── inlets-operator-0.6.2.tgz ├── inlets-operator-0.6.3.tgz ├── inlets-operator-0.6.4.tgz ├── inlets-operator-0.6.5.tgz ├── inlets-operator-0.6.6.tgz ├── inlets-operator-0.6.7.tgz ├── inlets-operator-0.7.0.tgz ├── inlets-operator-0.7.1.tgz ├── inlets-operator-0.7.4.tgz ├── inlets-operator-0.7.6.tgz ├── inlets-operator-0.8.0.tgz ├── inlets-operator-0.8.1.tgz ├── inlets-operator-0.8.2.tgz ├── inlets-operator-0.8.3.tgz ├── inlets-operator-0.8.4.tgz ├── inlets-operator-0.8.5.tgz ├── inlets-operator-0.8.6.tgz ├── inlets-operator-0.8.7.tgz ├── inlets-operator-0.8.8.tgz ├── inlets-operator-0.9.0.tgz └── inlets-operator-0.9.2.tgz ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── custom-boilerplate.go.txt ├── install-buildx.sh ├── install-docker.sh ├── print-codegen-version.sh ├── update-codegen.sh ├── update-crds.sh └── verify-codegen.sh ├── image_test.go ├── main.go ├── pkg ├── apis │ └── inletsoperator │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── generated │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── inletsoperator │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_inletsoperator_client.go │ │ │ └── fake_tunnel.go │ │ │ ├── generated_expansion.go │ │ │ ├── inletsoperator_client.go │ │ │ └── tunnel.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── inletsoperator │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── tunnel.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── inletsoperator │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── tunnel.go ├── signals │ ├── signal.go │ ├── signal_posix.go │ └── signal_windows.go └── version │ └── version.go ├── validate.go ├── validate_test.go └── vendor ├── 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 │ │ │ │ ├── idtoken.go │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── httptransport │ │ ├── httptransport.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 │ ├── log.go │ ├── metadata.go │ ├── retry.go │ ├── retry_linux.go │ ├── syscheck.go │ ├── syscheck_linux.go │ └── syscheck_windows.go ├── github.com ├── Azure │ └── azure-sdk-for-go │ │ └── sdk │ │ ├── azcore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── arm │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ │ └── resource │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ └── resource_type.go │ │ │ ├── policy │ │ │ │ └── policy.go │ │ │ ├── resource_identifier.go │ │ │ ├── resource_type.go │ │ │ └── runtime │ │ │ │ ├── pipeline.go │ │ │ │ ├── policy_bearer_token.go │ │ │ │ ├── policy_register_rp.go │ │ │ │ ├── policy_trace_namespace.go │ │ │ │ └── runtime.go │ │ ├── ci.yml │ │ ├── cloud │ │ │ ├── cloud.go │ │ │ └── doc.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── etag.go │ │ ├── internal │ │ │ ├── exported │ │ │ │ ├── exported.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── request.go │ │ │ │ └── response_error.go │ │ │ ├── log │ │ │ │ └── log.go │ │ │ ├── pollers │ │ │ │ ├── async │ │ │ │ │ └── async.go │ │ │ │ ├── body │ │ │ │ │ └── body.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── loc │ │ │ │ │ └── loc.go │ │ │ │ ├── op │ │ │ │ │ └── op.go │ │ │ │ ├── poller.go │ │ │ │ └── util.go │ │ │ └── shared │ │ │ │ ├── constants.go │ │ │ │ └── shared.go │ │ ├── log │ │ │ ├── doc.go │ │ │ └── log.go │ │ ├── policy │ │ │ ├── doc.go │ │ │ └── policy.go │ │ ├── runtime │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── pager.go │ │ │ ├── pipeline.go │ │ │ ├── policy_api_version.go │ │ │ ├── policy_bearer_token.go │ │ │ ├── policy_body_download.go │ │ │ ├── policy_http_header.go │ │ │ ├── policy_http_trace.go │ │ │ ├── policy_include_response.go │ │ │ ├── policy_key_credential.go │ │ │ ├── policy_logging.go │ │ │ ├── policy_request_id.go │ │ │ ├── policy_retry.go │ │ │ ├── policy_sas_credential.go │ │ │ ├── policy_telemetry.go │ │ │ ├── poller.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── transport_default_dialer_other.go │ │ │ ├── transport_default_dialer_wasm.go │ │ │ └── transport_default_http_client.go │ │ ├── streaming │ │ │ ├── doc.go │ │ │ └── progress.go │ │ ├── to │ │ │ ├── doc.go │ │ │ └── to.go │ │ └── tracing │ │ │ ├── constants.go │ │ │ └── tracing.go │ │ ├── azidentity │ │ ├── .gitignore │ │ ├── BREAKING_CHANGES.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── TOKEN_CACHING.MD │ │ ├── TROUBLESHOOTING.md │ │ ├── assets.json │ │ ├── authentication_record.go │ │ ├── azidentity.go │ │ ├── azure_cli_credential.go │ │ ├── azure_developer_cli_credential.go │ │ ├── azure_pipelines_credential.go │ │ ├── chained_token_credential.go │ │ ├── ci.yml │ │ ├── client_assertion_credential.go │ │ ├── client_certificate_credential.go │ │ ├── client_secret_credential.go │ │ ├── confidential_client.go │ │ ├── default_azure_credential.go │ │ ├── developer_credential_util.go │ │ ├── device_code_credential.go │ │ ├── environment_credential.go │ │ ├── errors.go │ │ ├── go.work │ │ ├── interactive_browser_credential.go │ │ ├── internal │ │ │ └── cache.go │ │ ├── logging.go │ │ ├── managed-identity-matrix.json │ │ ├── managed_identity_client.go │ │ ├── managed_identity_credential.go │ │ ├── on_behalf_of_credential.go │ │ ├── public_client.go │ │ ├── test-resources-post.ps1 │ │ ├── test-resources-pre.ps1 │ │ ├── test-resources.bicep │ │ ├── username_password_credential.go │ │ ├── version.go │ │ └── workload_identity.go │ │ ├── internal │ │ ├── LICENSE.txt │ │ ├── diag │ │ │ ├── diag.go │ │ │ └── doc.go │ │ ├── errorinfo │ │ │ ├── doc.go │ │ │ └── errorinfo.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── log │ │ │ ├── doc.go │ │ │ └── log.go │ │ ├── poller │ │ │ └── util.go │ │ ├── temporal │ │ │ └── resource.go │ │ └── uuid │ │ │ ├── doc.go │ │ │ └── uuid.go │ │ └── resourcemanager │ │ ├── compute │ │ └── armcompute │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── autorest.md │ │ │ ├── build.go │ │ │ ├── ci.yml │ │ │ ├── zz_generated_availabilitysets_client.go │ │ │ ├── zz_generated_capacityreservationgroups_client.go │ │ │ ├── zz_generated_capacityreservations_client.go │ │ │ ├── zz_generated_cloudserviceoperatingsystems_client.go │ │ │ ├── zz_generated_cloudserviceroleinstances_client.go │ │ │ ├── zz_generated_cloudserviceroles_client.go │ │ │ ├── zz_generated_cloudservices_client.go │ │ │ ├── zz_generated_cloudservicesupdatedomain_client.go │ │ │ ├── zz_generated_communitygalleries_client.go │ │ │ ├── zz_generated_communitygalleryimages_client.go │ │ │ ├── zz_generated_communitygalleryimageversions_client.go │ │ │ ├── zz_generated_constants.go │ │ │ ├── zz_generated_dedicatedhostgroups_client.go │ │ │ ├── zz_generated_dedicatedhosts_client.go │ │ │ ├── zz_generated_diskaccesses_client.go │ │ │ ├── zz_generated_diskencryptionsets_client.go │ │ │ ├── zz_generated_diskrestorepoint_client.go │ │ │ ├── zz_generated_disks_client.go │ │ │ ├── zz_generated_galleries_client.go │ │ │ ├── zz_generated_galleryapplications_client.go │ │ │ ├── zz_generated_galleryapplicationversions_client.go │ │ │ ├── zz_generated_galleryimages_client.go │ │ │ ├── zz_generated_galleryimageversions_client.go │ │ │ ├── zz_generated_gallerysharingprofile_client.go │ │ │ ├── zz_generated_images_client.go │ │ │ ├── zz_generated_loganalytics_client.go │ │ │ ├── zz_generated_models.go │ │ │ ├── zz_generated_models_serde.go │ │ │ ├── zz_generated_operations_client.go │ │ │ ├── zz_generated_proximityplacementgroups_client.go │ │ │ ├── zz_generated_resourceskus_client.go │ │ │ ├── zz_generated_response_types.go │ │ │ ├── zz_generated_restorepointcollections_client.go │ │ │ ├── zz_generated_restorepoints_client.go │ │ │ ├── zz_generated_sharedgalleries_client.go │ │ │ ├── zz_generated_sharedgalleryimages_client.go │ │ │ ├── zz_generated_sharedgalleryimageversions_client.go │ │ │ ├── zz_generated_snapshots_client.go │ │ │ ├── zz_generated_sshpublickeys_client.go │ │ │ ├── zz_generated_time_rfc3339.go │ │ │ ├── zz_generated_usage_client.go │ │ │ ├── zz_generated_virtualmachineextensionimages_client.go │ │ │ ├── zz_generated_virtualmachineextensions_client.go │ │ │ ├── zz_generated_virtualmachineimages_client.go │ │ │ ├── zz_generated_virtualmachineimagesedgezone_client.go │ │ │ ├── zz_generated_virtualmachineruncommands_client.go │ │ │ ├── zz_generated_virtualmachines_client.go │ │ │ ├── zz_generated_virtualmachinescalesetextensions_client.go │ │ │ ├── zz_generated_virtualmachinescalesetrollingupgrades_client.go │ │ │ ├── zz_generated_virtualmachinescalesets_client.go │ │ │ ├── zz_generated_virtualmachinescalesetvmextensions_client.go │ │ │ ├── zz_generated_virtualmachinescalesetvmruncommands_client.go │ │ │ ├── zz_generated_virtualmachinescalesetvms_client.go │ │ │ └── zz_generated_virtualmachinesizes_client.go │ │ ├── network │ │ └── armnetwork │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── adminrulecollections_client.go │ │ │ ├── adminrules_client.go │ │ │ ├── applicationgatewayprivateendpointconnections_client.go │ │ │ ├── applicationgatewayprivatelinkresources_client.go │ │ │ ├── applicationgateways_client.go │ │ │ ├── applicationsecuritygroups_client.go │ │ │ ├── autorest.md │ │ │ ├── availabledelegations_client.go │ │ │ ├── availableendpointservices_client.go │ │ │ ├── availableprivateendpointtypes_client.go │ │ │ ├── availableresourcegroupdelegations_client.go │ │ │ ├── availableservicealiases_client.go │ │ │ ├── azurefirewallfqdntags_client.go │ │ │ ├── azurefirewalls_client.go │ │ │ ├── bastionhosts_client.go │ │ │ ├── bgpservicecommunities_client.go │ │ │ ├── build.go │ │ │ ├── ci.yml │ │ │ ├── configurationpolicygroups_client.go │ │ │ ├── connectionmonitors_client.go │ │ │ ├── connectivityconfigurations_client.go │ │ │ ├── constants.go │ │ │ ├── customipprefixes_client.go │ │ │ ├── ddoscustompolicies_client.go │ │ │ ├── ddosprotectionplans_client.go │ │ │ ├── defaultsecurityrules_client.go │ │ │ ├── dscpconfiguration_client.go │ │ │ ├── expressroutecircuitauthorizations_client.go │ │ │ ├── expressroutecircuitconnections_client.go │ │ │ ├── expressroutecircuitpeerings_client.go │ │ │ ├── expressroutecircuits_client.go │ │ │ ├── expressrouteconnections_client.go │ │ │ ├── expressroutecrossconnectionpeerings_client.go │ │ │ ├── expressroutecrossconnections_client.go │ │ │ ├── expressroutegateways_client.go │ │ │ ├── expressroutelinks_client.go │ │ │ ├── expressrouteportauthorizations_client.go │ │ │ ├── expressrouteports_client.go │ │ │ ├── expressrouteportslocations_client.go │ │ │ ├── expressrouteproviderportslocation_client.go │ │ │ ├── expressrouteserviceproviders_client.go │ │ │ ├── firewallpolicies_client.go │ │ │ ├── firewallpolicyidpssignatures_client.go │ │ │ ├── firewallpolicyidpssignaturesfiltervalues_client.go │ │ │ ├── firewallpolicyidpssignaturesoverrides_client.go │ │ │ ├── firewallpolicyrulecollectiongroups_client.go │ │ │ ├── flowlogs_client.go │ │ │ ├── groups_client.go │ │ │ ├── hubroutetables_client.go │ │ │ ├── hubvirtualnetworkconnections_client.go │ │ │ ├── inboundnatrules_client.go │ │ │ ├── inboundsecurityrule_client.go │ │ │ ├── interfaceipconfigurations_client.go │ │ │ ├── interfaceloadbalancers_client.go │ │ │ ├── interfaces_client.go │ │ │ ├── interfacetapconfigurations_client.go │ │ │ ├── ipallocations_client.go │ │ │ ├── ipgroups_client.go │ │ │ ├── loadbalancerbackendaddresspools_client.go │ │ │ ├── loadbalancerfrontendipconfigurations_client.go │ │ │ ├── loadbalancerloadbalancingrules_client.go │ │ │ ├── loadbalancernetworkinterfaces_client.go │ │ │ ├── loadbalanceroutboundrules_client.go │ │ │ ├── loadbalancerprobes_client.go │ │ │ ├── loadbalancers_client.go │ │ │ ├── localnetworkgateways_client.go │ │ │ ├── management_client.go │ │ │ ├── managementgroupnetworkmanagerconnections_client.go │ │ │ ├── managercommits_client.go │ │ │ ├── managerdeploymentstatus_client.go │ │ │ ├── managers_client.go │ │ │ ├── models.go │ │ │ ├── models_serde.go │ │ │ ├── natgateways_client.go │ │ │ ├── natrules_client.go │ │ │ ├── operations_client.go │ │ │ ├── p2svpngateways_client.go │ │ │ ├── packetcaptures_client.go │ │ │ ├── peerexpressroutecircuitconnections_client.go │ │ │ ├── polymorphic_helpers.go │ │ │ ├── privatednszonegroups_client.go │ │ │ ├── privateendpoints_client.go │ │ │ ├── privatelinkservices_client.go │ │ │ ├── profiles_client.go │ │ │ ├── publicipaddresses_client.go │ │ │ ├── publicipprefixes_client.go │ │ │ ├── resourcenavigationlinks_client.go │ │ │ ├── response_types.go │ │ │ ├── routefilterrules_client.go │ │ │ ├── routefilters_client.go │ │ │ ├── routes_client.go │ │ │ ├── routetables_client.go │ │ │ ├── routingintent_client.go │ │ │ ├── scopeconnections_client.go │ │ │ ├── securityadminconfigurations_client.go │ │ │ ├── securitygroups_client.go │ │ │ ├── securitypartnerproviders_client.go │ │ │ ├── securityrules_client.go │ │ │ ├── serviceassociationlinks_client.go │ │ │ ├── serviceendpointpolicies_client.go │ │ │ ├── serviceendpointpolicydefinitions_client.go │ │ │ ├── servicetaginformation_client.go │ │ │ ├── servicetags_client.go │ │ │ ├── staticmembers_client.go │ │ │ ├── subnets_client.go │ │ │ ├── subscriptionnetworkmanagerconnections_client.go │ │ │ ├── time_rfc3339.go │ │ │ ├── usages_client.go │ │ │ ├── virtualappliances_client.go │ │ │ ├── virtualappliancesites_client.go │ │ │ ├── virtualapplianceskus_client.go │ │ │ ├── virtualhubbgpconnection_client.go │ │ │ ├── virtualhubbgpconnections_client.go │ │ │ ├── virtualhubipconfiguration_client.go │ │ │ ├── virtualhubroutetablev2s_client.go │ │ │ ├── virtualhubs_client.go │ │ │ ├── virtualnetworkgatewayconnections_client.go │ │ │ ├── virtualnetworkgatewaynatrules_client.go │ │ │ ├── virtualnetworkgateways_client.go │ │ │ ├── virtualnetworkpeerings_client.go │ │ │ ├── virtualnetworks_client.go │ │ │ ├── virtualnetworktaps_client.go │ │ │ ├── virtualrouterpeerings_client.go │ │ │ ├── virtualrouters_client.go │ │ │ ├── virtualwans_client.go │ │ │ ├── vpnconnections_client.go │ │ │ ├── vpngateways_client.go │ │ │ ├── vpnlinkconnections_client.go │ │ │ ├── vpnserverconfigurations_client.go │ │ │ ├── vpnserverconfigurationsassociatedwithvirtualwan_client.go │ │ │ ├── vpnsitelinkconnections_client.go │ │ │ ├── vpnsitelinks_client.go │ │ │ ├── vpnsites_client.go │ │ │ ├── vpnsitesconfiguration_client.go │ │ │ ├── watchers_client.go │ │ │ ├── webapplicationfirewallpolicies_client.go │ │ │ └── webcategories_client.go │ │ └── resources │ │ └── armresources │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── assets.json │ │ ├── autorest.md │ │ ├── build.go │ │ ├── ci.yml │ │ ├── client.go │ │ ├── client_factory.go │ │ ├── constants.go │ │ ├── deploymentoperations_client.go │ │ ├── deployments_client.go │ │ ├── models.go │ │ ├── models_serde.go │ │ ├── operations_client.go │ │ ├── options.go │ │ ├── providerresourcetypes_client.go │ │ ├── providers_client.go │ │ ├── resourcegroups_client.go │ │ ├── response_types.go │ │ ├── tags_client.go │ │ └── time_rfc3339.go ├── AzureAD │ └── microsoft-authentication-library-for-go │ │ ├── LICENSE │ │ └── apps │ │ ├── cache │ │ └── cache.go │ │ ├── confidential │ │ └── confidential.go │ │ ├── errors │ │ ├── error_design.md │ │ └── errors.go │ │ ├── internal │ │ ├── base │ │ │ ├── base.go │ │ │ └── internal │ │ │ │ └── storage │ │ │ │ ├── items.go │ │ │ │ ├── partitioned_storage.go │ │ │ │ └── storage.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── json │ │ │ ├── design.md │ │ │ ├── json.go │ │ │ ├── mapslice.go │ │ │ ├── marshal.go │ │ │ ├── struct.go │ │ │ └── types │ │ │ │ └── time │ │ │ │ └── time.go │ │ ├── local │ │ │ └── server.go │ │ ├── oauth │ │ │ ├── oauth.go │ │ │ ├── ops │ │ │ │ ├── accesstokens │ │ │ │ │ ├── accesstokens.go │ │ │ │ │ ├── apptype_string.go │ │ │ │ │ └── tokens.go │ │ │ │ ├── authority │ │ │ │ │ ├── authority.go │ │ │ │ │ └── authorizetype_string.go │ │ │ │ ├── internal │ │ │ │ │ ├── comm │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ └── compress.go │ │ │ │ │ └── grant │ │ │ │ │ │ └── grant.go │ │ │ │ ├── ops.go │ │ │ │ └── wstrust │ │ │ │ │ ├── defs │ │ │ │ │ ├── endpointtype_string.go │ │ │ │ │ ├── mex_document_definitions.go │ │ │ │ │ ├── saml_assertion_definitions.go │ │ │ │ │ ├── version_string.go │ │ │ │ │ ├── wstrust_endpoint.go │ │ │ │ │ └── wstrust_mex_document.go │ │ │ │ │ └── wstrust.go │ │ │ └── resolvers.go │ │ ├── options │ │ │ └── options.go │ │ ├── shared │ │ │ └── shared.go │ │ └── version │ │ │ └── version.go │ │ └── public │ │ └── public.go ├── aws │ └── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ ├── auth │ │ │ └── bearer │ │ │ │ └── token.go │ │ ├── awserr │ │ │ ├── error.go │ │ │ └── types.go │ │ ├── awsutil │ │ │ ├── copy.go │ │ │ ├── equal.go │ │ │ ├── path_value.go │ │ │ ├── prettify.go │ │ │ └── string_value.go │ │ ├── client │ │ │ ├── client.go │ │ │ ├── default_retryer.go │ │ │ ├── logger.go │ │ │ ├── metadata │ │ │ │ └── client_info.go │ │ │ └── no_op_retryer.go │ │ ├── config.go │ │ ├── context_1_5.go │ │ ├── context_1_9.go │ │ ├── context_background_1_5.go │ │ ├── context_background_1_7.go │ │ ├── context_sleep.go │ │ ├── convert_types.go │ │ ├── corehandlers │ │ │ ├── awsinternal.go │ │ │ ├── handlers.go │ │ │ ├── param_validator.go │ │ │ └── user_agent.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ ├── context_background_go1.5.go │ │ │ ├── context_background_go1.7.go │ │ │ ├── context_go1.5.go │ │ │ ├── context_go1.9.go │ │ │ ├── credentials.go │ │ │ ├── ec2rolecreds │ │ │ │ └── ec2_role_provider.go │ │ │ ├── endpointcreds │ │ │ │ └── provider.go │ │ │ ├── env_provider.go │ │ │ ├── example.ini │ │ │ ├── processcreds │ │ │ │ └── provider.go │ │ │ ├── shared_credentials_provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── os.go │ │ │ │ ├── os_windows.go │ │ │ │ ├── provider.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ └── token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── csm │ │ │ ├── doc.go │ │ │ ├── enable.go │ │ │ ├── metric.go │ │ │ ├── metric_chan.go │ │ │ ├── metric_exception.go │ │ │ └── reporter.go │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ └── shared_config.go │ │ ├── doc.go │ │ ├── ec2metadata │ │ │ ├── api.go │ │ │ ├── service.go │ │ │ └── token_provider.go │ │ ├── endpoints │ │ │ ├── decode.go │ │ │ ├── defaults.go │ │ │ ├── dep_service_ids.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── legacy_regions.go │ │ │ ├── v3model.go │ │ │ └── v3model_codegen.go │ │ ├── errors.go │ │ ├── jsonvalue.go │ │ ├── logger.go │ │ ├── request │ │ │ ├── connection_reset_error.go │ │ │ ├── handlers.go │ │ │ ├── http_request.go │ │ │ ├── offset_reader.go │ │ │ ├── request.go │ │ │ ├── request_1_7.go │ │ │ ├── request_1_8.go │ │ │ ├── request_context.go │ │ │ ├── request_context_1_6.go │ │ │ ├── request_pagination.go │ │ │ ├── retryer.go │ │ │ ├── timeout_read_closer.go │ │ │ ├── validation.go │ │ │ └── waiter.go │ │ ├── session │ │ │ ├── credentials.go │ │ │ ├── custom_transport.go │ │ │ ├── custom_transport_go1.12.go │ │ │ ├── custom_transport_go1.5.go │ │ │ ├── custom_transport_go1.6.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── session.go │ │ │ └── shared_config.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── options.go │ │ │ │ ├── request_context_go1.5.go │ │ │ │ ├── request_context_go1.7.go │ │ │ │ ├── stream.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ ├── types.go │ │ ├── url.go │ │ ├── url_1_7.go │ │ └── version.go │ │ ├── internal │ │ ├── context │ │ │ └── background_go1.5.go │ │ ├── ini │ │ │ ├── ast.go │ │ │ ├── comma_token.go │ │ │ ├── comment_token.go │ │ │ ├── doc.go │ │ │ ├── empty_token.go │ │ │ ├── expression.go │ │ │ ├── fuzz.go │ │ │ ├── ini.go │ │ │ ├── ini_lexer.go │ │ │ ├── ini_parser.go │ │ │ ├── literal_tokens.go │ │ │ ├── newline_token.go │ │ │ ├── number_helper.go │ │ │ ├── op_tokens.go │ │ │ ├── parse_error.go │ │ │ ├── parse_stack.go │ │ │ ├── sep_tokens.go │ │ │ ├── skipper.go │ │ │ ├── statement.go │ │ │ ├── value_util.go │ │ │ ├── visitor.go │ │ │ ├── walker.go │ │ │ └── ws_token.go │ │ ├── sdkio │ │ │ ├── byte.go │ │ │ ├── io_go1.6.go │ │ │ └── io_go1.7.go │ │ ├── sdkmath │ │ │ ├── floor.go │ │ │ └── floor_go1.9.go │ │ ├── sdkrand │ │ │ ├── locked_source.go │ │ │ ├── read.go │ │ │ └── read_1_5.go │ │ ├── sdkuri │ │ │ └── path.go │ │ ├── shareddefaults │ │ │ ├── ecs_container.go │ │ │ ├── shared_config.go │ │ │ ├── shared_config_resolve_home.go │ │ │ └── shared_config_resolve_home_go1.12.go │ │ ├── strings │ │ │ └── strings.go │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ └── singleflight.go │ │ ├── private │ │ └── protocol │ │ │ ├── ec2query │ │ │ ├── build.go │ │ │ └── unmarshal.go │ │ │ ├── host.go │ │ │ ├── host_prefix.go │ │ │ ├── idempotency.go │ │ │ ├── json │ │ │ └── jsonutil │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ ├── jsonrpc │ │ │ ├── jsonrpc.go │ │ │ └── unmarshal_error.go │ │ │ ├── jsonvalue.go │ │ │ ├── payload.go │ │ │ ├── protocol.go │ │ │ ├── query │ │ │ ├── build.go │ │ │ ├── queryutil │ │ │ │ └── queryutil.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_error.go │ │ │ ├── rest │ │ │ ├── build.go │ │ │ ├── payload.go │ │ │ └── unmarshal.go │ │ │ ├── restjson │ │ │ ├── restjson.go │ │ │ └── unmarshal_error.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ ├── unmarshal_error.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── sort.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ ├── ec2 │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── waiters.go │ │ ├── sso │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── ssoiface │ │ │ └── interface.go │ │ ├── ssooidc │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ └── service.go │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── stsiface │ │ └── interface.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── digitalocean │ └── godo │ │ ├── .gitignore │ │ ├── .whitesource │ │ ├── 1-click.go │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── account.go │ │ ├── action.go │ │ ├── apps.gen.go │ │ ├── apps.go │ │ ├── apps_accessors.go │ │ ├── balance.go │ │ ├── billing_history.go │ │ ├── cdn.go │ │ ├── certificates.go │ │ ├── databases.go │ │ ├── doc.go │ │ ├── domains.go │ │ ├── droplet_actions.go │ │ ├── droplet_autoscale.go │ │ ├── droplets.go │ │ ├── errors.go │ │ ├── firewalls.go │ │ ├── floating_ips.go │ │ ├── floating_ips_actions.go │ │ ├── functions.go │ │ ├── godo.go │ │ ├── image_actions.go │ │ ├── images.go │ │ ├── invoices.go │ │ ├── keys.go │ │ ├── kubernetes.go │ │ ├── links.go │ │ ├── load_balancers.go │ │ ├── meta.go │ │ ├── metrics │ │ ├── metrics.go │ │ ├── time.go │ │ └── values.go │ │ ├── monitoring.go │ │ ├── partner_interconnect_attachments.go │ │ ├── projects.go │ │ ├── regions.go │ │ ├── registry.go │ │ ├── reserved_ips.go │ │ ├── reserved_ips_actions.go │ │ ├── reserved_ipv6.go │ │ ├── reserved_ipv6_actions.go │ │ ├── sizes.go │ │ ├── snapshots.go │ │ ├── spaces_keys.go │ │ ├── storage.go │ │ ├── storage_actions.go │ │ ├── strings.go │ │ ├── tags.go │ │ ├── timestamp.go │ │ ├── uptime.go │ │ ├── vpc_peerings.go │ │ └── vpcs.go ├── dimchansky │ └── utfbom │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── utfbom.go ├── dirien │ └── ovh-go-sdk │ │ ├── LICENSE │ │ └── pkg │ │ └── sdk │ │ └── sdk.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 ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fxamacker │ └── cbor │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bytestring.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── decode.go │ │ ├── diagnose.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_map.go │ │ ├── encode_map_go117.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.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-resty │ └── resty │ │ └── v2 │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── client.go │ │ ├── digest.go │ │ ├── middleware.go │ │ ├── redirect.go │ │ ├── request.go │ │ ├── response.go │ │ ├── resty.go │ │ ├── retry.go │ │ ├── shellescape │ │ ├── BUILD.bazel │ │ └── shellescape.go │ │ ├── trace.go │ │ ├── transport.go │ │ ├── transport112.go │ │ ├── transport_js.go │ │ ├── transport_other.go │ │ ├── util.go │ │ └── util_curl.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang-jwt │ └── jwt │ │ └── v5 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── registered_claims.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ ├── token_option.go │ │ ├── types.go │ │ └── validator.go ├── golang │ ├── mock │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── gomock │ │ │ ├── call.go │ │ │ ├── callset.go │ │ │ ├── controller.go │ │ │ └── matchers.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 ├── google │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── 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-querystring │ │ ├── LICENSE │ │ └── query │ │ │ └── encode.go │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytesource │ │ │ └── bytesource.go │ │ ├── doc.go │ │ └── fuzz.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ └── stream │ │ │ └── s2a_stream.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── internallog │ │ ├── internal │ │ │ └── internal.go │ │ └── internallog.go │ │ ├── invoke.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── hashicorp │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ └── go-retryablehttp │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cert_error_go119.go │ │ ├── cert_error_go120.go │ │ ├── client.go │ │ └── roundtripper.go ├── hetznercloud │ └── hcloud-go │ │ ├── LICENSE │ │ └── hcloud │ │ ├── action.go │ │ ├── action_waiter.go │ │ ├── action_watch.go │ │ ├── architecture.go │ │ ├── certificate.go │ │ ├── client.go │ │ ├── datacenter.go │ │ ├── deprecation.go │ │ ├── error.go │ │ ├── firewall.go │ │ ├── floating_ip.go │ │ ├── hcloud.go │ │ ├── helper.go │ │ ├── image.go │ │ ├── internal │ │ └── instrumentation │ │ │ └── metrics.go │ │ ├── iso.go │ │ ├── labels.go │ │ ├── load_balancer.go │ │ ├── load_balancer_type.go │ │ ├── location.go │ │ ├── network.go │ │ ├── placement_group.go │ │ ├── pricing.go │ │ ├── primary_ip.go │ │ ├── rdns.go │ │ ├── resource.go │ │ ├── schema.go │ │ ├── schema │ │ ├── action.go │ │ ├── certificate.go │ │ ├── datacenter.go │ │ ├── deprecation.go │ │ ├── error.go │ │ ├── firewall.go │ │ ├── floating_ip.go │ │ ├── image.go │ │ ├── iso.go │ │ ├── load_balancer.go │ │ ├── load_balancer_type.go │ │ ├── location.go │ │ ├── meta.go │ │ ├── network.go │ │ ├── placement_group.go │ │ ├── pricing.go │ │ ├── primary_ip.go │ │ ├── server.go │ │ ├── server_type.go │ │ ├── ssh_key.go │ │ └── volume.go │ │ ├── server.go │ │ ├── server_type.go │ │ ├── ssh_key.go │ │ ├── testing.go │ │ └── volume.go ├── inlets │ └── cloud-provision │ │ ├── LICENSE │ │ └── provision │ │ ├── azure.go │ │ ├── digitalocean.go │ │ ├── ec2.go │ │ ├── gce.go │ │ ├── hetzner.go │ │ ├── linode.go │ │ ├── mock_linode.go │ │ ├── ovh.go │ │ ├── provision.go │ │ ├── scaleway.go │ │ ├── userdata.go │ │ └── vultr.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.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 ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ ├── diff │ │ └── diff.go │ │ └── pretty │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── public.go │ │ ├── reflect.go │ │ └── structure.go ├── linode │ └── linodego │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── account.go │ │ ├── account_agreements.go │ │ ├── account_availability.go │ │ ├── account_betas.go │ │ ├── account_child.go │ │ ├── account_events.go │ │ ├── account_invoices.go │ │ ├── account_logins.go │ │ ├── account_maintenance.go │ │ ├── account_notifications.go │ │ ├── account_oauth_client.go │ │ ├── account_payment_methods.go │ │ ├── account_payments.go │ │ ├── account_promo_credits.go │ │ ├── account_service_transfer.go │ │ ├── account_settings.go │ │ ├── account_transfer.go │ │ ├── account_user_grants.go │ │ ├── account_users.go │ │ ├── base_types.go │ │ ├── betas.go │ │ ├── client.go │ │ ├── client_http.go │ │ ├── config.go │ │ ├── databases.go │ │ ├── domain_records.go │ │ ├── domains.go │ │ ├── env.sample │ │ ├── errors.go │ │ ├── filter.go │ │ ├── firewall_devices.go │ │ ├── firewall_rules.go │ │ ├── firewalls.go │ │ ├── go.work │ │ ├── go.work.sum │ │ ├── images.go │ │ ├── instance_config_interfaces.go │ │ ├── instance_configs.go │ │ ├── instance_disks.go │ │ ├── instance_firewalls.go │ │ ├── instance_ips.go │ │ ├── instance_nodebalancers.go │ │ ├── instance_snapshots.go │ │ ├── instance_stats.go │ │ ├── instance_volumes.go │ │ ├── instances.go │ │ ├── internal │ │ ├── duration │ │ │ └── duration.go │ │ └── parseabletime │ │ │ └── parseable_time.go │ │ ├── kernels.go │ │ ├── lke_cluster_pools.go │ │ ├── lke_clusters.go │ │ ├── lke_clusters_control_plane.go │ │ ├── lke_node_pools.go │ │ ├── lke_types.go │ │ ├── logger.go │ │ ├── longview.go │ │ ├── longview_subscriptions.go │ │ ├── mysql.go │ │ ├── network_ips.go │ │ ├── network_pools.go │ │ ├── network_ranges.go │ │ ├── network_reserved_ips.go │ │ ├── network_transfer_prices.go │ │ ├── nodebalancer.go │ │ ├── nodebalancer_config_nodes.go │ │ ├── nodebalancer_configs.go │ │ ├── nodebalancer_firewalls.go │ │ ├── nodebalancer_stats.go │ │ ├── nodebalancer_types.go │ │ ├── object_storage.go │ │ ├── object_storage_bucket_certs.go │ │ ├── object_storage_buckets.go │ │ ├── object_storage_clusters.go │ │ ├── object_storage_endpoints.go │ │ ├── object_storage_keys.go │ │ ├── object_storage_object.go │ │ ├── paged_response_structs.go │ │ ├── pagination.go │ │ ├── placement_groups.go │ │ ├── pointer_helpers.go │ │ ├── postgres.go │ │ ├── profile.go │ │ ├── profile_apps.go │ │ ├── profile_devices.go │ │ ├── profile_grants_list.go │ │ ├── profile_logins.go │ │ ├── profile_phone_number.go │ │ ├── profile_preferences.go │ │ ├── profile_security_questions.go │ │ ├── profile_sshkeys.go │ │ ├── profile_tfa.go │ │ ├── profile_tokens.go │ │ ├── regions.go │ │ ├── regions_availability.go │ │ ├── request_helpers.go │ │ ├── retries.go │ │ ├── retries_http.go │ │ ├── stackscripts.go │ │ ├── support.go │ │ ├── tags.go │ │ ├── types.go │ │ ├── version.go │ │ ├── vlans.go │ │ ├── volumes.go │ │ ├── volumes_types.go │ │ ├── vpc.go │ │ ├── vpc_ips.go │ │ ├── vpc_subnet.go │ │ └── waitfor.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── ovh │ └── go-ovh │ │ ├── LICENSE │ │ └── ovh │ │ ├── configuration.go │ │ ├── consumer_key.go │ │ ├── error.go │ │ ├── logger.go │ │ └── ovh.go ├── pkg │ ├── browser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.go │ │ ├── browser_darwin.go │ │ ├── browser_freebsd.go │ │ ├── browser_linux.go │ │ ├── browser_netbsd.go │ │ ├── browser_openbsd.go │ │ ├── browser_unsupported.go │ │ └── browser_windows.go │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── 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_hung.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── nfnetlink_queue.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_statm.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── scaleway │ └── scaleway-sdk-go │ │ ├── LICENSE │ │ ├── api │ │ ├── block │ │ │ └── v1alpha1 │ │ │ │ ├── block_sdk.go │ │ │ │ ├── snapshot_utils.go │ │ │ │ └── volume_utils.go │ │ ├── instance │ │ │ └── v1 │ │ │ │ ├── image_utils.go │ │ │ │ ├── instance_metadata_sdk.go │ │ │ │ ├── instance_sdk.go │ │ │ │ ├── instance_utils.go │ │ │ │ ├── server_utils.go │ │ │ │ ├── snapshot_utils.go │ │ │ │ └── volume_utils.go │ │ └── marketplace │ │ │ └── v2 │ │ │ ├── marketplace_sdk.go │ │ │ └── marketplace_utils.go │ │ ├── internal │ │ ├── async │ │ │ └── wait.go │ │ ├── auth │ │ │ ├── access_key.go │ │ │ ├── auth.go │ │ │ ├── jwt.go │ │ │ ├── no_auth.go │ │ │ └── token.go │ │ ├── errors │ │ │ └── error.go │ │ ├── generic │ │ │ ├── fields.go │ │ │ ├── ptr.go │ │ │ └── sort.go │ │ ├── marshaler │ │ │ └── duration.go │ │ └── parameter │ │ │ └── query.go │ │ ├── logger │ │ ├── default_logger.go │ │ └── logger.go │ │ ├── namegenerator │ │ └── name_generator.go │ │ ├── scw │ │ ├── README.md │ │ ├── client.go │ │ ├── client_option.go │ │ ├── config.go │ │ ├── convert.go │ │ ├── custom_types.go │ │ ├── env.go │ │ ├── errors.go │ │ ├── locality.go │ │ ├── path.go │ │ ├── request.go │ │ ├── request_header.go │ │ ├── request_header_wasm.go │ │ ├── request_option.go │ │ ├── transport.go │ │ └── version.go │ │ └── validation │ │ └── is.go ├── sethvargo │ └── go-password │ │ ├── LICENSE │ │ └── password │ │ ├── generate.go │ │ └── mock.go ├── spf13 │ └── 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 ├── vultr │ └── govultr │ │ └── v2 │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── account.go │ │ ├── application.go │ │ ├── backup.go │ │ ├── bare_metal_server.go │ │ ├── billing.go │ │ ├── block_storage.go │ │ ├── domain_records.go │ │ ├── domains.go │ │ ├── firewall_group.go │ │ ├── firewall_rule.go │ │ ├── govultr.go │ │ ├── instance.go │ │ ├── ip.go │ │ ├── iso.go │ │ ├── kubernetes.go │ │ ├── listOptions.go │ │ ├── load_balancer.go │ │ ├── meta.go │ │ ├── network.go │ │ ├── object_storage.go │ │ ├── os.go │ │ ├── plans.go │ │ ├── regions.go │ │ ├── reserved_ip.go │ │ ├── snapshot.go │ │ ├── ssh_key.go │ │ ├── startup_script.go │ │ ├── user.go │ │ └── vpc.go └── x448 │ └── float16 │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ └── float16.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ └── 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 │ ├── 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 │ ├── semconv │ ├── v1.20.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ └── v1.26.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── exception.go │ │ ├── metric.go │ │ └── schema.go │ ├── 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 ├── go.yaml.in └── yaml │ └── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── 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 │ └── pkcs12 │ │ ├── bmp-string.go │ │ ├── crypto.go │ │ ├── errors.go │ │ ├── internal │ │ └── rc2 │ │ │ └── rc2.go │ │ ├── mac.go │ │ ├── pbkdf.go │ │ ├── pkcs12.go │ │ └── safebags.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── publicsuffix │ │ ├── data │ │ │ ├── children │ │ │ ├── nodes │ │ │ └── text │ │ ├── list.go │ │ └── table.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── clientcredentials │ │ └── clientcredentials.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 │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ └── tag │ │ │ └── tag.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ ├── ast │ │ ├── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ ├── imports │ └── forward.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── gopathwalk │ └── walk.go │ ├── imports │ ├── fix.go │ ├── imports.go │ ├── mod.go │ ├── mod_cache.go │ ├── sortimports.go │ ├── source.go │ ├── source_env.go │ └── source_modindex.go │ ├── modindex │ ├── directories.go │ ├── index.go │ ├── lookup.go │ ├── modindex.go │ └── symbols.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ ├── varkind_go124.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── compute │ │ └── v1 │ │ │ ├── compute-api.json │ │ │ ├── compute-gen.go │ │ │ ├── compute2-gen.go │ │ │ └── compute3-gen.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── 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 ├── genproto │ └── googleapis │ │ └── 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 │ │ └── 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 │ ├── 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 │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ └── timestamppb │ └── timestamp.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 ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ ├── 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 │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.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 │ │ │ ├── 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 ├── 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 │ │ │ ├── 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 │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── splice.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── expiring.go │ │ │ │ └── lruexpirecache.go │ │ │ ├── diff │ │ │ │ └── diff.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── managedfields │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── extract.go │ │ │ │ ├── fieldmanager.go │ │ │ │ ├── gvkparser.go │ │ │ │ ├── internal │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ ├── conflict.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ ├── managedfields.go │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── pathelement.go │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ └── decoder.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 │ │ └── reflect │ │ └── deep_equal.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validation.go │ │ │ │ └── variable.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.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 │ │ │ │ ├── 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 │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ └── forzone.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 │ │ ├── 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 │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ └── servicebackendport.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 │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.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 │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.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 │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ ├── fake │ │ │ └── discovery.go │ │ └── helper.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 │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.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 │ │ │ │ └── networkpolicy.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 │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.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 │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.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 │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.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 │ │ │ │ └── networkpolicy.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 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ ├── openapi │ │ ├── OWNERS │ │ ├── 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 │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── tools │ │ ├── auth │ │ │ ├── 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 │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merge.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── internal │ │ │ └── events │ │ │ │ └── interfaces.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ └── reference │ │ │ └── ref.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── token_source.go │ │ └── transport.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 │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── keyutil │ │ ├── OWNERS │ │ └── key.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 │ ├── LICENSE │ ├── cmd │ │ └── client-gen │ │ │ ├── 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 │ │ │ └── types │ │ │ ├── helpers.go │ │ │ └── types.go │ └── pkg │ │ └── namer │ │ └── tag-override.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 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ ├── klog_file.go │ └── 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 │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ └── safeptr.go ├── kube-openapi │ ├── LICENSE │ └── pkg │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.go │ │ ├── handler3 │ │ └── handler.go │ │ ├── internal │ │ ├── flags.go │ │ ├── serialization.go │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arshal.go │ │ │ ├── arshal_any.go │ │ │ ├── arshal_default.go │ │ │ ├── arshal_funcs.go │ │ │ ├── arshal_inlined.go │ │ │ ├── arshal_methods.go │ │ │ ├── arshal_time.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── fold.go │ │ │ ├── intern.go │ │ │ ├── pools.go │ │ │ ├── state.go │ │ │ ├── token.go │ │ │ └── value.go │ │ ├── schemaconv │ │ ├── openapi.go │ │ ├── proto_models.go │ │ └── smd.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── fuzz.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ └── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ └── openapi.go │ │ └── validation │ │ └── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ ├── clock.go │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_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 │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt └── sigs.k8s.io ├── 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 ├── 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 ├── yaml.go └── yaml_go110.go /.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.DEREK.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | ./inlets-operator -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /inlets-operator 2 | /artifacts/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /.tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.tools/README.md -------------------------------------------------------------------------------- /.tools/code-generator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.tools/code-generator.mod -------------------------------------------------------------------------------- /.tools/code-generator.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/.tools/code-generator.sum -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/README.md -------------------------------------------------------------------------------- /chart/inlets-operator/.gitignore: -------------------------------------------------------------------------------- 1 | /values-ae.yaml 2 | -------------------------------------------------------------------------------- /chart/inlets-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/.helmignore -------------------------------------------------------------------------------- /chart/inlets-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/Chart.yaml -------------------------------------------------------------------------------- /chart/inlets-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/README.md -------------------------------------------------------------------------------- /chart/inlets-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /chart/inlets-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/inlets-operator/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/templates/rbac.yaml -------------------------------------------------------------------------------- /chart/inlets-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/chart/inlets-operator/values.yaml -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/config_test.go -------------------------------------------------------------------------------- /contrib/nginx-sample-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/contrib/nginx-sample-deployment.yaml -------------------------------------------------------------------------------- /controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/controller.go -------------------------------------------------------------------------------- /docs/DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/DEV.md -------------------------------------------------------------------------------- /docs/controller-client-go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/controller-client-go.md -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/index.yaml -------------------------------------------------------------------------------- /docs/inlets-operator-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.1.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.10.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.10.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.10.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.10.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.10.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.10.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.10.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.10.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.11.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.11.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.12.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.12.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.13.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.13.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.14.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.14.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.14.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.14.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.14.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.14.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.14.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.14.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.14.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.14.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.14.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.14.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.15.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.15.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.15.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.15.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.15.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.15.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.15.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.15.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.15.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.15.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.15.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.15.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.16.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.16.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.10.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.10.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.11.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.11.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.12.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.12.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.13.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.13.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.7.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.8.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.17.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.17.9.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.2.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.2.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.2.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.3.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.4.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.4.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.4.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.4.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.4.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.4.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.5.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.5.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.5.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.5.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.5.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.5.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.6.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.6.7.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.7.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.7.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.7.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.7.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.7.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.7.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.7.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.1.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.2.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.3.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.4.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.5.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.6.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.7.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.8.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.8.8.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.9.0.tgz -------------------------------------------------------------------------------- /docs/inlets-operator-0.9.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/docs/inlets-operator-0.9.2.tgz -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/custom-boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/custom-boilerplate.go.txt -------------------------------------------------------------------------------- /hack/install-buildx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/install-buildx.sh -------------------------------------------------------------------------------- /hack/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/install-docker.sh -------------------------------------------------------------------------------- /hack/print-codegen-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/print-codegen-version.sh -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/update-crds.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/image_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/main.go -------------------------------------------------------------------------------- /pkg/apis/inletsoperator/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/apis/inletsoperator/register.go -------------------------------------------------------------------------------- /pkg/apis/inletsoperator/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/apis/inletsoperator/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/inletsoperator/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/apis/inletsoperator/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/inletsoperator/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/apis/inletsoperator/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/generated/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/generated/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/generated/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/generated/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/signals/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/signals/signal.go -------------------------------------------------------------------------------- /pkg/signals/signal_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/signals/signal_posix.go -------------------------------------------------------------------------------- /pkg/signals/signal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/signals/signal_windows.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/validate.go -------------------------------------------------------------------------------- /validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/validate_test.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/cloud.google.com/go/auth/CHANGES.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/cloud.google.com/go/auth/README.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/cloud.google.com/go/auth/auth.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/.gitignore: -------------------------------------------------------------------------------- 1 | # live test artifacts 2 | Dockerfile 3 | k8s.yaml 4 | sshkey* 5 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work: -------------------------------------------------------------------------------- 1 | go 1.18 2 | 3 | use ( 4 | . 5 | ./cache 6 | ) 7 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/corehandlers/awsinternal.go: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT 2 | package corehandlers 3 | 4 | const isAwsInternal = "" -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/aws/aws-sdk-go/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/aws/aws-sdk-go/aws/types.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/aws/aws-sdk-go/aws/url.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/cespare/xxhash/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/cespare/xxhash/v2/xxhash.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/README.md -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/action.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/apps.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/cdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/cdn.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/errors.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/godo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/godo.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/images.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/keys.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/links.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/meta.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/sizes.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/tags.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/uptime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/uptime.go -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/vpcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/digitalocean/godo/vpcs.go -------------------------------------------------------------------------------- /vendor/github.com/dimchansky/utfbom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/dimchansky/utfbom/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dimchansky/utfbom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/dimchansky/utfbom/README.md -------------------------------------------------------------------------------- /vendor/github.com/dimchansky/utfbom/utfbom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/dimchansky/utfbom/utfbom.go -------------------------------------------------------------------------------- /vendor/github.com/dirien/ovh-go-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/dirien/ovh-go-sdk/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/felixge/httpsnoop/Makefile -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/felixge/httpsnoop/README.md -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/felixge/httpsnoop/docs.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/cache.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/common.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/decode.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/encode.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/stream.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/tag.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/valid.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-logr/stdr/stdr.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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/file.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang-jwt/jwt/v5/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang-jwt/jwt/v5/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang/mock/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/s2a-go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/s2a-go/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/s2a-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.14.1" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.22.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/go-retryablehttp-maintainers 2 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @linode/dx 2 | -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/Makefile -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/betas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/betas.go -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/go.work -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/mysql.go -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/tags.go -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/types.go -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/vlans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/vlans.go -------------------------------------------------------------------------------- /vendor/github.com/linode/linodego/vpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/linode/linodego/vpc.go -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /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/ovh/go-ovh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/ovh/go-ovh/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ovh/go-ovh/ovh/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/ovh/go-ovh/ovh/error.go -------------------------------------------------------------------------------- /vendor/github.com/ovh/go-ovh/ovh/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/ovh/go-ovh/ovh/logger.go -------------------------------------------------------------------------------- /vendor/github.com/ovh/go-ovh/ovh/ovh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/ovh/go-ovh/ovh/ovh.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/browser/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/browser/browser.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/ip.go -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/iso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/iso.go -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/meta.go -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/os.go -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/user.go -------------------------------------------------------------------------------- /vendor/github.com/vultr/govultr/v2/vpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/vultr/govultr/v2/vpc.go -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/x448/float16/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/x448/float16/README.md -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/float16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/github.com/x448/float16/float16.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/auto/sdk/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.3.0 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/go.yaml.in/yaml/v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/chacha20/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/crypto/chacha20/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/mod/module/pseudo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/trie12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/trie13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/google/error.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/hwcap_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/hwcap_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-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/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/term_unix_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/sometimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/time/rate/sometimes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-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/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/SECURITY.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apidiscovery/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apidiscovery/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apidiscovery/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apidiscovery/v2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/authentication/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/autoscaling/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/autoscaling/v2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/certificates/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/certificates/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/coordination/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/coordination/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/discovery/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/discovery/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/discovery/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/events/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/flowcontrol/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/flowcontrol/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/flowcontrol/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/flowcontrol/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/policy/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1alpha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/resource/v1alpha3/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/resource/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/scheduling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/discovery/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/features/envvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/features/envvar.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/gentype/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/gentype/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/gentype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/gentype/type.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/informers/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/kubernetes/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-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/openapi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/openapi/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/pkg/version/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/url_utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/urlbackoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/urlbackoff.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/warnings.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/with_retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/rest/with_retry.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/testing/actions.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/fixture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/testing/fixture.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/tools/auth/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/tools/cache/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/tools/cache/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/transport/cache.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/util/cert/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/util/cert/cert.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/parser/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/parse_122.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/parser/parse_122.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/gengo/v2/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/contextual_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/dbg/dbg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/internal/dbg/dbg.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/klog_file_others.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/klog_file_windows.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-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/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/buffer/ring_growing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/buffer/ring_growing.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/multi_listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/net/multi_listen.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/pointer/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/pointer/pointer.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlets/inlets-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------