├── .dockerignore ├── .gcloudignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── become-a-repo-collaborator.md │ ├── bug_report.md │ ├── feature_request.md │ ├── golang_version_upgrade.md │ └── kubernetes_update.md ├── SECURITY.md ├── pull_request_template.md ├── release.yml └── workflows │ ├── close.yaml │ ├── label-pr.yml │ ├── labeler.yml │ ├── obsolete.yaml │ ├── pr_update.yml │ ├── stale.yaml │ └── update_dependencies.yaml ├── .gitignore ├── .golangci.yml ├── .yamllint ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── ci ├── cancelot.sh ├── e2e-test-cloudbuild.yaml └── perf-test-cloudbuild.yaml ├── cloudbuild.yaml ├── cmd ├── allocator │ ├── Dockerfile │ ├── main.go │ ├── main_test.go │ └── metrics.go ├── controller │ ├── Dockerfile │ ├── main.go │ ├── main_test.go │ └── pprof.go ├── extensions │ ├── Dockerfile │ ├── main.go │ └── pprof.go ├── ping │ ├── Dockerfile │ ├── main.go │ ├── udp.go │ └── udp_test.go ├── processor │ ├── Dockerfile │ └── main.go └── sdk-server │ ├── Dockerfile │ ├── Dockerfile.windows │ ├── main.go │ └── main_test.go ├── code-of-conduct.md ├── doc.go ├── docs ├── agones.png ├── governance │ ├── community_membership.md │ ├── release_process.md │ └── templates │ │ ├── membership.md │ │ ├── patch_release_issue.md │ │ ├── release.md │ │ └── release_issue.md ├── logos │ ├── print │ │ └── CMYK.ai │ └── web │ │ ├── RGB.ai │ │ ├── jpeg │ │ ├── high │ │ │ ├── Full-Color.jpg │ │ │ ├── Negative-DarkBlue.jpg │ │ │ └── Negative-LightBlue.jpg │ │ └── low │ │ │ ├── Full-Color.jpg │ │ │ ├── Negative-DarkBlue.jpg │ │ │ └── Negative-LightBlue.jpg │ │ └── png │ │ ├── high │ │ ├── Full-Color.png │ │ ├── LightBlue.png │ │ └── Negative-DarkBlue.png │ │ └── low │ │ ├── Full-Color.png │ │ ├── Negative-DarkBlue.png │ │ └── Negative-LightBlue.png └── proposals │ ├── NNNN-afp-template │ ├── README.md │ └── afp.yaml │ └── README.md ├── examples ├── allocation-endpoint │ ├── Makefile │ ├── README.md │ ├── architecture.png │ ├── client │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── sa_key.json │ ├── cloudbuild.yaml │ ├── patch-agones-allocator.yaml │ ├── server │ │ ├── Dockerfile │ │ ├── clusterselector.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── terraform │ │ ├── agones_allocation_api_descriptor.pb │ │ ├── api_config.yaml.tpl │ │ ├── main.tf │ │ ├── output.tf │ │ └── variable.tf ├── allocator-client-csharp │ ├── Program.cs │ ├── README.md │ └── allocator-client-csharp.csproj ├── allocator-client │ ├── README.md │ └── main.go ├── autoscaler-wasm │ ├── Makefile │ ├── README.md │ ├── autoscaler.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── model.go │ └── plugin.wasm ├── autoscaler-webhook │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── autoscaler-service-tls.yaml │ ├── autoscaler-service.yaml │ ├── cloudbuild.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── chainfleetautoscaler.yaml ├── counterfleetautoscaler.yaml ├── cpp-simple │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── cloudbuild.yaml │ ├── fleet.yaml │ ├── gameserver.yaml │ └── server.cc ├── crd-client │ ├── Dockerfile │ ├── Makefile │ ├── cloudbuild.yaml │ ├── create-gs.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── custom-controller │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cloudbuild.yaml │ ├── deployment.yaml │ ├── go.mod │ ├── go.sum │ └── main.go ├── fleet.yaml ├── fleetautoscaler.yaml ├── gameserver.yaml ├── gameserverallocation-deprecated.yaml ├── gameserverallocation.yaml ├── listfleetautoscaler.yaml ├── nodejs-simple │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── cloudbuild.yaml │ ├── gameserver.yaml │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── index.js ├── rust-simple │ ├── .gitignore │ ├── Cargo.toml │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cloudbuild.yaml │ ├── gameserver.yaml │ └── src │ │ └── main.rs ├── schedulefleetautoscaler.yaml ├── simple-game-server │ ├── .dockerignore │ ├── Dockerfile │ ├── Dockerfile.windows │ ├── Makefile │ ├── README.md │ ├── cloudbuild.yaml │ ├── dev-gameserver.yaml │ ├── fleet-distributed.yaml │ ├── fleet-tcp.yaml │ ├── fleet.yaml │ ├── fleetautoscaler.yaml │ ├── gameserver-none.yaml │ ├── gameserver-passthrough.yaml │ ├── gameserver-windows.yaml │ ├── gameserver.yaml │ ├── gameserverallocation.yaml │ ├── go.mod │ ├── go.sum │ ├── handlers.go │ └── main.go ├── simple-genai-server │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cloudbuild.yaml │ ├── gameserver_autochat.yaml │ ├── gameserver_manualchat.yaml │ ├── gameserver_npcchat.yaml │ └── main.go ├── supertuxkart │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cloudbuild.yaml │ ├── entrypoint.sh │ ├── fleet.yaml │ ├── gameserver.yaml │ ├── gameserverallocation.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ └── server_config.xml ├── terraform-submodules │ ├── aks │ │ └── module.tf │ ├── eks │ │ └── module.tf │ ├── gke-autopilot │ │ └── module.tf │ ├── gke │ │ └── module.tf │ └── oke │ │ ├── module.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ ├── terraform.auto.tfvars.example │ │ └── variables.tf ├── unity-simple │ ├── .gitignore │ ├── Assets │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── AgonesUnitySimple.unity │ │ │ └── AgonesUnitySimple.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Agones.meta │ │ │ ├── Agones │ │ │ ├── AgonesSdk.cs │ │ │ ├── AgonesSdk.cs.meta │ │ │ ├── model.meta │ │ │ ├── model │ │ │ │ ├── GameServer.cs │ │ │ │ ├── GameServer.cs.meta │ │ │ │ ├── GameServerObjectMeta.cs │ │ │ │ ├── GameServerObjectMeta.cs.meta │ │ │ │ ├── GameServerSpec.cs │ │ │ │ ├── GameServerSpec.cs.meta │ │ │ │ ├── GameServerStatus.cs │ │ │ │ ├── GameServerStatus.cs.meta │ │ │ │ ├── SpecHealth.cs │ │ │ │ ├── SpecHealth.cs.meta │ │ │ │ ├── StatusPort.cs │ │ │ │ └── StatusPort.cs.meta │ │ │ ├── third_party.meta │ │ │ └── third_party │ │ │ │ ├── MiniJSON.cs │ │ │ │ └── MiniJSON.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── BatchBuild.cs │ │ │ └── BatchBuild.cs.meta │ │ │ ├── UdpEchoClient.cs │ │ │ ├── UdpEchoClient.cs.meta │ │ │ ├── UdpEchoController.cs │ │ │ ├── UdpEchoController.cs.meta │ │ │ ├── UdpEchoServer.cs │ │ │ └── UdpEchoServer.cs.meta │ ├── Dockerfile │ ├── Makefile │ ├── Packages │ │ └── manifest.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ └── VFXManager.asset │ ├── README.md │ └── gameserver.yaml ├── wasmfleetautoscaler.yaml ├── webhookfleetautoscaler.yaml ├── webhookfleetautoscalertls.yaml └── xonotic │ ├── Dockerfile │ ├── Dockerfile.windows │ ├── Makefile │ ├── README.md │ ├── cloudbuild.yaml │ ├── fleet.yaml │ ├── fleetautoscaler.yaml │ ├── gameserver.yaml │ ├── gameserverallocation.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── server.cfg ├── go.mod ├── go.sum ├── install ├── helm │ └── agones │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── certs │ │ ├── allocator │ │ │ ├── client-ca │ │ │ │ └── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── cert.sh │ │ ├── server.crt │ │ └── server.key │ │ ├── defaultfeaturegates.yaml │ │ ├── scripts │ │ └── delete_agones_resources.sh │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── controller-metrics-service.yaml │ │ ├── controller.yaml │ │ ├── crds │ │ │ ├── _fleetautoscalerpolicy.yaml │ │ │ ├── _gameserverspecschema.yaml │ │ │ ├── _gameserverstatus.yaml │ │ │ ├── fleet.yaml │ │ │ ├── fleetautoscaler.yaml │ │ │ ├── gameserver.yaml │ │ │ ├── gameserverallocationpolicy.yaml │ │ │ ├── gameserverset.yaml │ │ │ └── k8s │ │ │ │ ├── _io.k8s.api.core.v1.PodTemplateSpec.yaml │ │ │ │ └── _io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.yaml │ │ ├── extensions-deployment.yaml │ │ ├── extensions-metrics-service.yaml │ │ ├── extensions.yaml │ │ ├── hooks │ │ │ ├── pre_delete_hook.yaml │ │ │ ├── sa.yaml │ │ │ └── scripts.yaml │ │ ├── pdb.yaml │ │ ├── ping.yaml │ │ ├── priority-class.yaml │ │ ├── processor.yaml │ │ ├── service-monitor.yaml │ │ ├── service.yaml │ │ ├── service │ │ │ └── allocation.yaml │ │ ├── serviceaccounts │ │ │ ├── controller.yaml │ │ │ └── sdk.yaml │ │ └── tests │ │ │ └── test-runner.yaml │ │ ├── values.schema.json │ │ └── values.yaml ├── terraform │ └── modules │ │ ├── aks │ │ ├── aks.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── eks │ │ ├── eks.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── gke-autopilot │ │ ├── cluster.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── gke │ │ ├── cluster.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── helm3 │ │ ├── helm.tf │ │ └── variables.tf │ │ └── oke-helm3 │ │ ├── helm.tf │ │ └── variables.tf └── yaml │ └── install.yaml ├── pkg ├── allocation │ ├── converters │ │ ├── converter.go │ │ └── converter_test.go │ └── go │ │ ├── allocation.pb.go │ │ ├── allocation.pb.gw.go │ │ ├── allocation.swagger.json │ │ ├── allocation_grpc.pb.go │ │ ├── processor.pb.go │ │ └── processor_grpc.pb.go ├── apis │ ├── agones │ │ ├── register.go │ │ └── v1 │ │ │ ├── apihooks.go │ │ │ ├── apihooksfake.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── doc.go │ │ │ ├── fleet.go │ │ │ ├── fleet_test.go │ │ │ ├── fuzz_test │ │ │ └── roundtrip_test.go │ │ │ ├── gameserver.go │ │ │ ├── gameserver_test.go │ │ │ ├── gameserverset.go │ │ │ ├── gameserverset_test.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── allocation │ │ ├── register.go │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── gameserverallocation.go │ │ │ ├── gameserverallocation_test.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── autoscaling │ │ ├── register.go │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── fleetautoscaler.go │ │ │ ├── fleetautoscaler_test.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── doc.go │ ├── multicluster │ │ ├── register.go │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── gameserverallocationpolicy.go │ │ │ ├── gameserverallocationpolicy_test.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ └── scheduling.go ├── client │ ├── applyconfiguration │ │ ├── agones │ │ │ └── v1 │ │ │ │ ├── aggregatedcounterstatus.go │ │ │ │ ├── aggregatedliststatus.go │ │ │ │ ├── aggregatedplayerstatus.go │ │ │ │ ├── allocationoverflow.go │ │ │ │ ├── counterstatus.go │ │ │ │ ├── eviction.go │ │ │ │ ├── fleet.go │ │ │ │ ├── fleetspec.go │ │ │ │ ├── fleetstatus.go │ │ │ │ ├── gameserver.go │ │ │ │ ├── gameserverport.go │ │ │ │ ├── gameserverset.go │ │ │ │ ├── gameserversetspec.go │ │ │ │ ├── gameserversetstatus.go │ │ │ │ ├── gameserverspec.go │ │ │ │ ├── gameserverstatus.go │ │ │ │ ├── gameserverstatusport.go │ │ │ │ ├── gameservertemplatespec.go │ │ │ │ ├── health.go │ │ │ │ ├── liststatus.go │ │ │ │ ├── playersspec.go │ │ │ │ ├── playerstatus.go │ │ │ │ ├── priority.go │ │ │ │ └── sdkserver.go │ │ ├── autoscaling │ │ │ └── v1 │ │ │ │ ├── activeperiod.go │ │ │ │ ├── between.go │ │ │ │ ├── bufferpolicy.go │ │ │ │ ├── chainentry.go │ │ │ │ ├── counterpolicy.go │ │ │ │ ├── fixedintervalsync.go │ │ │ │ ├── fleetautoscaler.go │ │ │ │ ├── fleetautoscalerpolicy.go │ │ │ │ ├── fleetautoscalerspec.go │ │ │ │ ├── fleetautoscalerstatus.go │ │ │ │ ├── fleetautoscalersync.go │ │ │ │ ├── listpolicy.go │ │ │ │ ├── schedulepolicy.go │ │ │ │ ├── urlconfiguration.go │ │ │ │ ├── wasmfrom.go │ │ │ │ └── wasmpolicy.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── multicluster │ │ │ └── v1 │ │ │ │ ├── clusterconnectioninfo.go │ │ │ │ ├── gameserverallocationpolicy.go │ │ │ │ └── gameserverallocationpolicyspec.go │ │ └── utils.go │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── agones │ │ │ └── v1 │ │ │ │ ├── agones_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_agones_client.go │ │ │ │ ├── fake_fleet.go │ │ │ │ ├── fake_gameserver.go │ │ │ │ └── fake_gameserverset.go │ │ │ │ ├── fleet.go │ │ │ │ ├── gameserver.go │ │ │ │ ├── gameserverset.go │ │ │ │ └── generated_expansion.go │ │ │ ├── allocation │ │ │ └── v1 │ │ │ │ ├── allocation_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_allocation_client.go │ │ │ │ └── fake_gameserverallocation.go │ │ │ │ ├── gameserverallocation.go │ │ │ │ └── generated_expansion.go │ │ │ ├── autoscaling │ │ │ └── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_fleetautoscaler.go │ │ │ │ ├── fleetautoscaler.go │ │ │ │ └── generated_expansion.go │ │ │ └── multicluster │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_gameserverallocationpolicy.go │ │ │ └── fake_multicluster_client.go │ │ │ ├── gameserverallocationpolicy.go │ │ │ ├── generated_expansion.go │ │ │ └── multicluster_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── agones │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── fleet.go │ │ │ │ ├── gameserver.go │ │ │ │ ├── gameserverset.go │ │ │ │ └── interface.go │ │ │ ├── autoscaling │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── fleetautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── multicluster │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ ├── gameserverallocationpolicy.go │ │ │ └── interface.go │ └── listers │ │ ├── agones │ │ └── v1 │ │ │ ├── expansion_generated.go │ │ │ ├── fleet.go │ │ │ ├── gameserver.go │ │ │ └── gameserverset.go │ │ ├── autoscaling │ │ └── v1 │ │ │ ├── expansion_generated.go │ │ │ └── fleetautoscaler.go │ │ └── multicluster │ │ └── v1 │ │ ├── expansion_generated.go │ │ └── gameserverallocationpolicy.go ├── cloudproduct │ ├── cloudproduct.go │ ├── doc.go │ ├── eviction │ │ ├── eviction.go │ │ └── eviction_test.go │ ├── generic │ │ ├── doc.go │ │ ├── generic.go │ │ └── generic_test.go │ └── gke │ │ ├── doc.go │ │ ├── gke.go │ │ └── gke_test.go ├── doc.go ├── fleetautoscalers │ ├── controller.go │ ├── controller_test.go │ ├── doc.go │ ├── fleetautoscalers.go │ ├── fleetautoscalers_test.go │ └── fleetautoscalerwasm_test.go ├── fleets │ ├── controller.go │ ├── controller_rollingupdatefix.go │ ├── controller_test.go │ ├── doc.go │ ├── fleets.go │ └── fleets_test.go ├── gameserverallocations │ ├── allocation_cache.go │ ├── allocation_cache_test.go │ ├── allocator.go │ ├── allocator_test.go │ ├── cache.go │ ├── cache_test.go │ ├── controller.go │ ├── controller_test.go │ ├── doc.go │ ├── find.go │ ├── find_test.go │ ├── metrics.go │ └── metrics_test.go ├── gameservers │ ├── controller.go │ ├── controller_test.go │ ├── doc.go │ ├── gameservers.go │ ├── gameservers_test.go │ ├── health.go │ ├── health_test.go │ ├── migration.go │ ├── migration_test.go │ ├── missing.go │ ├── missing_test.go │ ├── pernodecounter.go │ ├── pernodecounter_test.go │ ├── succeeded.go │ └── succeeded_test.go ├── gameserversets │ ├── allocation_overflow.go │ ├── allocation_overflow_test.go │ ├── controller.go │ ├── controller_test.go │ ├── doc.go │ ├── gameserver_state_cache.go │ ├── gameserver_state_cache_test.go │ ├── gameserversets.go │ ├── gameserversets_test.go │ ├── metrics.go │ └── metrics_test.go ├── metrics │ ├── controller.go │ ├── controller_metrics.go │ ├── controller_test.go │ ├── doc.go │ ├── exporter.go │ ├── exporter_test.go │ ├── gameservers_count.go │ ├── kubernetes_client.go │ ├── util.go │ └── util_test.go ├── portallocator │ ├── doc.go │ ├── portallocator.go │ └── portallocator_test.go ├── processor │ ├── client.go │ ├── client_test.go │ └── doc.go ├── sdk │ ├── alpha │ │ ├── alpha.pb.go │ │ ├── alpha.pb.gw.go │ │ └── alpha_grpc.pb.go │ ├── beta │ │ ├── beta.pb.go │ │ ├── beta.pb.gw.go │ │ └── beta_grpc.pb.go │ ├── sdk.pb.go │ ├── sdk.pb.gw.go │ └── sdk_grpc.pb.go ├── sdkserver │ ├── doc.go │ ├── helper_test.go │ ├── localsdk.go │ ├── localsdk_test.go │ ├── sdk.go │ ├── sdk_test.go │ ├── sdkserver.go │ └── sdkserver_test.go ├── testing │ ├── apihooks.go │ ├── controller.go │ └── doc.go ├── util │ ├── apiserver │ │ ├── apiserver.go │ │ └── apiserver_test.go │ ├── crd │ │ ├── crd.go │ │ └── crd_test.go │ ├── doc.go │ ├── fswatch │ │ ├── fswatch.go │ │ └── fswatch_test.go │ ├── https │ │ ├── https.go │ │ ├── https_test.go │ │ ├── server.go │ │ └── server_test.go │ ├── httpserver │ │ └── server.go │ ├── logfields │ │ └── logfields.go │ ├── runtime │ │ ├── features.go │ │ ├── features_test.go │ │ ├── runtime.go │ │ └── runtime_test.go │ ├── signals │ │ └── signals.go │ ├── webhooks │ │ ├── webhooks.go │ │ └── webhooks_test.go │ └── workerqueue │ │ ├── workerqueue.go │ │ └── workerqueue_test.go └── version.go ├── proto ├── allocation │ ├── allocation.proto │ └── processor.proto ├── googleapis │ └── google │ │ ├── api │ │ ├── annotations.proto │ │ ├── client.proto │ │ ├── field_behavior.proto │ │ ├── http.proto │ │ ├── launch_stage.proto │ │ └── resource.proto │ │ └── rpc │ │ └── status.proto ├── grpc-gateway │ ├── LICENSE.txt │ └── protoc-gen-openapiv2 │ │ └── options │ │ ├── annotations.proto │ │ └── openapiv2.proto └── sdk │ ├── alpha │ └── alpha.proto │ ├── beta │ └── beta.proto │ └── sdk.proto ├── sdks ├── README.md ├── cpp │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── build_scripts │ │ ├── build.sh │ │ ├── msvs_2017_x64_release.bat │ │ └── nmake_release.bat │ ├── cmake │ │ ├── agonesConfig.cmake.in │ │ ├── agones_global.h.in │ │ └── clang-verify.in │ ├── include │ │ ├── agones │ │ │ ├── sdk.grpc.pb.h │ │ │ ├── sdk.h │ │ │ └── sdk.pb.h │ │ ├── google │ │ │ └── api │ │ │ │ ├── annotations.pb.h │ │ │ │ └── http.pb.h │ │ └── protoc-gen-openapiv2 │ │ │ └── options │ │ │ ├── annotations.pb.h │ │ │ └── openapiv2.pb.h │ ├── sources.cmake │ └── src │ │ ├── agones │ │ ├── sdk.cc │ │ ├── sdk.grpc.pb.cc │ │ └── sdk.pb.cc │ │ ├── google │ │ ├── annotations.pb.cc │ │ └── http.pb.cc │ │ └── protoc-gen-openapiv2 │ │ ├── annotations.pb.cc │ │ └── openapiv2.pb.cc ├── csharp │ ├── proto │ │ ├── googleapis │ │ │ └── google │ │ │ │ ├── api │ │ │ │ ├── annotations.proto │ │ │ │ ├── client.proto │ │ │ │ ├── field_behavior.proto │ │ │ │ ├── http.proto │ │ │ │ ├── launch_stage.proto │ │ │ │ └── resource.proto │ │ │ │ └── rpc │ │ │ │ └── status.proto │ │ └── sdk │ │ │ ├── alpha │ │ │ └── alpha.proto │ │ │ ├── beta │ │ │ └── beta.proto │ │ │ └── sdk.proto │ ├── sdk │ │ ├── .gitignore │ │ ├── AgonesSDK.cs │ │ ├── AgonesSDK.nuspec │ │ ├── Alpha.cs │ │ ├── Beta.cs │ │ ├── IAgonesAlphaSDK.cs │ │ ├── IAgonesBetaSDK.cs │ │ ├── IAgonesSDK.cs │ │ └── csharp-sdk.csproj │ └── test │ │ ├── AgonesAlphaSDKClientTests.cs │ │ ├── AgonesBetaSDKClientTests.cs │ │ ├── AgonesSDKClientTests.cs │ │ └── csharp-sdk-test.csproj ├── go │ ├── alpha.go │ ├── alpha_test.go │ ├── beta.go │ ├── beta_test.go │ ├── sdk.go │ └── sdk_test.go ├── nodejs │ ├── .eslintrc.json │ ├── .gitignore │ ├── .nycrc │ ├── OWNERS │ ├── README.md │ ├── lib │ │ ├── alpha │ │ │ ├── alpha_grpc_pb.js │ │ │ ├── alpha_pb.js │ │ │ ├── google │ │ │ │ └── api │ │ │ │ │ ├── annotations_pb.js │ │ │ │ │ └── http_pb.js │ │ │ └── protoc-gen-openapiv2 │ │ │ │ └── options │ │ │ │ ├── annotations_pb.js │ │ │ │ └── openapiv2_pb.js │ │ ├── beta │ │ │ ├── beta_grpc_pb.js │ │ │ ├── beta_pb.js │ │ │ ├── google │ │ │ │ └── api │ │ │ │ │ ├── annotations_pb.js │ │ │ │ │ ├── client_pb.js │ │ │ │ │ ├── field_behavior_pb.js │ │ │ │ │ ├── http_pb.js │ │ │ │ │ ├── launch_stage_pb.js │ │ │ │ │ └── resource_pb.js │ │ │ └── protoc-gen-openapiv2 │ │ │ │ └── options │ │ │ │ ├── annotations_pb.js │ │ │ │ └── openapiv2_pb.js │ │ ├── google │ │ │ └── api │ │ │ │ ├── annotations_pb.js │ │ │ │ ├── client_pb.js │ │ │ │ ├── field_behavior_pb.js │ │ │ │ ├── http_pb.js │ │ │ │ ├── launch_stage_pb.js │ │ │ │ └── resource_pb.js │ │ ├── protoc-gen-openapiv2 │ │ │ └── options │ │ │ │ ├── annotations_pb.js │ │ │ │ └── openapiv2_pb.js │ │ ├── sdk_grpc_pb.js │ │ └── sdk_pb.js │ ├── package-lock.json │ ├── package.json │ ├── spec │ │ ├── agonesSDK.spec.js │ │ ├── alphaAgonesSDK.spec.js │ │ ├── betaAgonesSDK.spec.js │ │ └── support │ │ │ └── jasmine.json │ └── src │ │ ├── agonesSDK.d.ts │ │ ├── agonesSDK.js │ │ ├── alpha.d.ts │ │ ├── alpha.js │ │ ├── beta.d.ts │ │ ├── beta.js │ │ ├── index.d.ts │ │ └── index.js ├── rust │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── proto │ │ ├── allocation │ │ │ ├── allocation.proto │ │ │ └── processor.proto │ │ ├── googleapis │ │ │ └── google │ │ │ │ ├── api │ │ │ │ ├── annotations.proto │ │ │ │ ├── client.proto │ │ │ │ ├── field_behavior.proto │ │ │ │ ├── http.proto │ │ │ │ ├── launch_stage.proto │ │ │ │ └── resource.proto │ │ │ │ └── rpc │ │ │ │ └── status.proto │ │ ├── grpc-gateway │ │ │ ├── LICENSE.txt │ │ │ └── protoc-gen-openapiv2 │ │ │ │ └── options │ │ │ │ ├── annotations.proto │ │ │ │ └── openapiv2.proto │ │ └── sdk │ │ │ ├── alpha │ │ │ └── alpha.proto │ │ │ ├── beta │ │ │ └── beta.proto │ │ │ └── sdk.proto │ └── src │ │ ├── alpha.rs │ │ ├── beta.rs │ │ ├── errors.rs │ │ ├── lib.rs │ │ └── sdk.rs ├── swagger │ ├── alpha.swagger.json │ ├── beta.swagger.json │ └── sdk.swagger.json ├── unity │ ├── Agones.asmdef │ ├── Agones.asmdef.meta │ ├── AgonesAlphaSdk.cs │ ├── AgonesAlphaSdk.cs.meta │ ├── AgonesBetaSdk.cs │ ├── AgonesBetaSdk.cs.meta │ ├── AgonesSdk.cs │ ├── AgonesSdk.cs.meta │ ├── IRequestSender.cs │ ├── IRequestSender.cs.meta │ ├── README.md │ ├── README.md.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── PlayMode.meta │ │ │ └── PlayMode │ │ │ │ ├── AgonesSdkComplianceTests.cs │ │ │ │ ├── AgonesSdkComplianceTests.cs.meta │ │ │ │ ├── AgonesSdkIntegrationTests.cs │ │ │ │ ├── AgonesSdkIntegrationTests.cs.meta │ │ │ │ ├── Tests.Runtime.Agones.asmdef │ │ │ │ └── Tests.Runtime.Agones.asmdef.meta │ │ ├── TestingEnvironment.meta │ │ └── TestingEnvironment │ │ │ ├── SpyRequestSender.cs │ │ │ └── SpyRequestSender.cs.meta │ ├── model.meta │ ├── model │ │ ├── GameServer.cs │ │ ├── GameServer.cs.meta │ │ ├── GameServerObjectMeta.cs │ │ ├── GameServerObjectMeta.cs.meta │ │ ├── GameServerSpec.cs │ │ ├── GameServerSpec.cs.meta │ │ ├── GameServerStatus.cs │ │ ├── GameServerStatus.cs.meta │ │ ├── SpecHealth.cs │ │ ├── SpecHealth.cs.meta │ │ ├── StatusAddresses.cs │ │ ├── StatusAddresses.cs.meta │ │ ├── StatusPort.cs │ │ └── StatusPort.cs.meta │ ├── package.json │ ├── package.json.meta │ ├── third_party.meta │ └── third_party │ │ ├── MiniJSON.cs │ │ └── MiniJSON.cs.meta └── unreal │ └── Agones │ ├── .gitignore │ ├── Agones.uplugin │ ├── Resources │ └── Icon128.png │ └── Source │ └── Agones │ ├── Agones.Build.cs │ ├── Classes │ └── Classes.h │ ├── Private │ ├── Agones.cpp │ └── AgonesSubsystem.cpp │ └── Public │ ├── Agones.h │ └── AgonesSubsystem.h ├── site ├── .gcloudignore ├── .gitignore ├── app.yaml ├── assets │ ├── icons │ │ └── logo.svg │ ├── scss │ │ └── _variables_project.scss │ └── templates │ │ ├── crd-doc-config.json │ │ └── pkg.tpl ├── cloudbuild.yaml ├── config.toml ├── content │ └── en │ │ ├── _index.html │ │ ├── blog │ │ ├── _index.md │ │ ├── news │ │ │ ├── _index.md │ │ │ ├── announcing-agones-1-0-0.md │ │ │ └── new-agones-site.md │ │ └── releases │ │ │ ├── 0.10.0-rc.md │ │ │ ├── 0.10.0.md │ │ │ ├── 0.11.0-rc.md │ │ │ ├── 0.11.0.md │ │ │ ├── 0.12.0-rc.md │ │ │ ├── 0.12.0.md │ │ │ ├── 0.7.0.md │ │ │ ├── 0.8.0-rc.md │ │ │ ├── 0.8.0.md │ │ │ ├── 0.8.1.md │ │ │ ├── 0.9.0-rc.md │ │ │ ├── 0.9.0.md │ │ │ ├── 1.0.0-rc.md │ │ │ ├── 1.0.0.md │ │ │ ├── 1.1.0-rc.md │ │ │ ├── 1.1.0.md │ │ │ ├── 1.10.0-rc.md │ │ │ ├── 1.10.0.md │ │ │ ├── 1.11.0-rc.md │ │ │ ├── 1.11.0.md │ │ │ ├── 1.12.0-rc.md │ │ │ ├── 1.12.0.md │ │ │ ├── 1.13.0-rc.md │ │ │ ├── 1.13.0.md │ │ │ ├── 1.14.0-rc.md │ │ │ ├── 1.14.0.md │ │ │ ├── 1.15.0-rc.md │ │ │ ├── 1.15.0.md │ │ │ ├── 1.16.0-rc.md │ │ │ ├── 1.16.0.md │ │ │ ├── 1.17.0-rc.md │ │ │ ├── 1.17.0.md │ │ │ ├── 1.18.0-rc.md │ │ │ ├── 1.18.0.md │ │ │ ├── 1.19.0-rc.md │ │ │ ├── 1.19.0.md │ │ │ ├── 1.2.0-rc.md │ │ │ ├── 1.2.0.md │ │ │ ├── 1.20.0-rc.md │ │ │ ├── 1.20.0.md │ │ │ ├── 1.21.0-rc.md │ │ │ ├── 1.21.0.md │ │ │ ├── 1.22.0-rc.md │ │ │ ├── 1.22.0.md │ │ │ ├── 1.23.0-rc.md │ │ │ ├── 1.23.0.md │ │ │ ├── 1.24.0-rc.md │ │ │ ├── 1.24.0.md │ │ │ ├── 1.25.0-rc.md │ │ │ ├── 1.25.0.md │ │ │ ├── 1.26.0-rc.md │ │ │ ├── 1.26.0.md │ │ │ ├── 1.27.0-rc.md │ │ │ ├── 1.27.0.md │ │ │ ├── 1.28.0-rc.md │ │ │ ├── 1.28.0.md │ │ │ ├── 1.29.0-rc.md │ │ │ ├── 1.29.0.md │ │ │ ├── 1.3.0-rc.md │ │ │ ├── 1.3.0.md │ │ │ ├── 1.30.0.md │ │ │ ├── 1.31.0.md │ │ │ ├── 1.32.0.md │ │ │ ├── 1.33.0.md │ │ │ ├── 1.34.0.md │ │ │ ├── 1.35.0.md │ │ │ ├── 1.36.0.md │ │ │ ├── 1.37.0.md │ │ │ ├── 1.38.0.md │ │ │ ├── 1.39.0.md │ │ │ ├── 1.4.0-rc.md │ │ │ ├── 1.4.0.md │ │ │ ├── 1.40.0.md │ │ │ ├── 1.41.0.md │ │ │ ├── 1.42.0.md │ │ │ ├── 1.43.0.md │ │ │ ├── 1.44.0.md │ │ │ ├── 1.45.0.md │ │ │ ├── 1.46.0.md │ │ │ ├── 1.47.0.md │ │ │ ├── 1.48.0.md │ │ │ ├── 1.49.0.md │ │ │ ├── 1.5.0-rc.md │ │ │ ├── 1.5.0.md │ │ │ ├── 1.50.0.md │ │ │ ├── 1.51.0.md │ │ │ ├── 1.52.0.md │ │ │ ├── 1.53.0.md │ │ │ ├── 1.6.0-rc.md │ │ │ ├── 1.6.0.md │ │ │ ├── 1.7.0-rc.md │ │ │ ├── 1.7.0.md │ │ │ ├── 1.8.0-rc.md │ │ │ ├── 1.8.0.md │ │ │ ├── 1.9.0-rc.md │ │ │ ├── 1.9.0.md │ │ │ └── _index.md │ │ ├── community │ │ └── _index.md │ │ ├── docs │ │ ├── Advanced │ │ │ ├── _index.md │ │ │ ├── allocator-service.md │ │ │ ├── controlling-disruption.md │ │ │ ├── high-availability-agones.md │ │ │ ├── limiting-resources.md │ │ │ ├── multi-cluster-allocation.md │ │ │ ├── out-of-cluster-dev-server.md │ │ │ ├── scheduling-and-autoscaling.md │ │ │ ├── service-accounts.md │ │ │ └── system-diagram.md │ │ ├── Contribute │ │ │ ├── _index.md │ │ │ ├── agones-feature-proposal.md │ │ │ └── documentation-editing-contribution.md │ │ ├── Examples │ │ │ ├── _index.md │ │ │ ├── custom-controller.md │ │ │ ├── simple-genai-gameserver.md │ │ │ ├── supertuxkart.md │ │ │ └── xonotic.md │ │ ├── FAQ │ │ │ └── _index.md │ │ ├── Getting Started │ │ │ ├── _index.md │ │ │ ├── create-fleet.md │ │ │ ├── create-fleetautoscaler.md │ │ │ ├── create-gameserver.md │ │ │ ├── create-webhook-fleetautoscaler.md │ │ │ └── edit-first-gameserver-go.md │ │ ├── Guides │ │ │ ├── Best Practices │ │ │ │ ├── _index.md │ │ │ │ └── gke.md │ │ │ ├── Client SDKs │ │ │ │ ├── _index.md │ │ │ │ ├── cpp.md │ │ │ │ ├── csharp.md │ │ │ │ ├── go.md │ │ │ │ ├── local.md │ │ │ │ ├── nodejs.md │ │ │ │ ├── rest.md │ │ │ │ ├── rust.md │ │ │ │ ├── unity.md │ │ │ │ └── unreal.md │ │ │ ├── _index.md │ │ │ ├── access-api.md │ │ │ ├── counters-and-lists.md │ │ │ ├── feature-stages.md │ │ │ ├── fleet-updates.md │ │ │ ├── health-checking.md │ │ │ ├── local-game-server.md │ │ │ ├── metrics.md │ │ │ ├── ping-service.md │ │ │ ├── player-tracking.md │ │ │ ├── troubleshooting.md │ │ │ └── windows-gameservers.md │ │ ├── Installation │ │ │ ├── Creating Cluster │ │ │ │ ├── _index.md │ │ │ │ ├── aks.md │ │ │ │ ├── eks.md │ │ │ │ ├── gke.md │ │ │ │ ├── minikube.md │ │ │ │ └── oke.md │ │ │ ├── Install Agones │ │ │ │ ├── _index.md │ │ │ │ ├── helm.md │ │ │ │ └── yaml.md │ │ │ ├── Terraform │ │ │ │ ├── _index.md │ │ │ │ ├── aks.md │ │ │ │ ├── eks.md │ │ │ │ ├── gke.md │ │ │ │ └── oke.md │ │ │ ├── _index.md │ │ │ ├── confirm.md │ │ │ └── upgrading.md │ │ ├── Integration Patterns │ │ │ ├── _index.md │ │ │ ├── allocation-from-fleet.md │ │ │ ├── canary-testing.md │ │ │ ├── high-density-gameservers.md │ │ │ ├── matchmaker-registration.md │ │ │ ├── player-capacity.md │ │ │ └── reusing-gameservers.md │ │ ├── Overview │ │ │ └── _index.md │ │ ├── Prerequisite Knowledge │ │ │ └── _index.md │ │ ├── Reference │ │ │ ├── _index.md │ │ │ ├── agones_crd_api_reference.html │ │ │ ├── fleet.md │ │ │ ├── fleetautoscaler.md │ │ │ ├── gameserver.md │ │ │ └── gameserverallocation.md │ │ ├── Third Party Content │ │ │ ├── _index.md │ │ │ ├── examples.md │ │ │ ├── libraries-tools.md │ │ │ ├── podcasts.md │ │ │ └── videos-and-presentations.md │ │ ├── Tutorials │ │ │ ├── _index.md │ │ │ ├── simple-gameserver-cpp.md │ │ │ ├── simple-gameserver-nodejs.md │ │ │ └── simple-gameserver-rust.md │ │ └── _index.md │ │ └── search.md ├── credits ├── gen-api-docs.sh ├── go.mod ├── go.sum ├── handler.go ├── handler_test.go ├── htmltest.yaml ├── layouts │ ├── partials │ │ ├── community_links.html │ │ ├── favicons.html │ │ ├── head.html │ │ ├── hooks │ │ │ └── body-end.html │ │ ├── navbar.html │ │ ├── page-meta-lastmod.html │ │ ├── page-meta-links.html │ │ ├── pagination.html │ │ └── search-input.html │ └── shortcodes │ │ ├── aks-example-cluster-version.html │ │ ├── alpha.html │ │ ├── beta.html │ │ ├── blocks │ │ └── cover.html │ │ ├── eks-example-cluster-version.html │ │ ├── example-image.html │ │ ├── feature.html │ │ ├── ghlink.html │ │ ├── ghrelease.html │ │ ├── gke-example-cluster-version.html │ │ ├── gs-prerequisites.html │ │ ├── k8s-api-version.html │ │ ├── k8s-version.html │ │ ├── minikube-example-cluster-version.html │ │ ├── release-branch.html │ │ ├── release-version.html │ │ └── youtube.html ├── main.go ├── static │ ├── agones.cast │ ├── css │ │ └── asciinema-player.css │ ├── diagrams │ │ ├── allocation-player-capacity-list.puml │ │ ├── allocation-player-capacity-list.puml.png │ │ ├── allocation-player-capacity-tracking.puml │ │ ├── allocation-player-capacity-tracking.puml.png │ │ ├── canary-testing.puml │ │ ├── canary-testing.puml.png │ │ ├── eviction-decision.dot │ │ ├── eviction-decision.dot.png │ │ ├── gameserver-lifecycle.puml │ │ ├── gameserver-lifecycle.puml.png │ │ ├── gameserver-reserved.puml │ │ ├── gameserver-reserved.puml.png │ │ ├── gameserver-states.dot │ │ ├── gameserver-states.dot.png │ │ ├── high-density-counters.puml │ │ ├── high-density-counters.puml.png │ │ ├── high-density-label-lock.puml │ │ ├── high-density-label-lock.puml.png │ │ ├── reusing-gameservers.puml │ │ ├── reusing-gameservers.puml.png │ │ ├── system-diagram.dot │ │ └── system-diagram.dot.png │ ├── favicons │ │ ├── apple-touch-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── pwa-192x192.png │ │ ├── pwa-512x512.png │ │ ├── tile150x150.png │ │ ├── tile310x150.png │ │ ├── tile310x310.png │ │ └── tile70x70.png │ ├── images │ │ ├── accelbyte.png │ │ ├── acceleratxr.png │ │ ├── afterverse.svg │ │ ├── altavr-logo.png │ │ ├── cloud-shell.png │ │ ├── demo.gif │ │ ├── embark.png │ │ ├── gamefabric-nitrado.png │ │ ├── grafana-dashboard-autoscalers.png │ │ ├── grafana-dashboard-controller.png │ │ ├── logo.svg │ │ ├── mcmahangames.png │ │ ├── netspeakgames.png │ │ ├── rolltable.png │ │ ├── stackdriver-metrics-dashboard.png │ │ ├── supersolid.png │ │ ├── supertuxkart-AI-players.png │ │ ├── supertuxkart-enter-ip-port.png │ │ ├── supertuxkart-race-start.png │ │ ├── ubisoft.png │ │ ├── unreal5_bp_actions.png │ │ ├── unreal5_bp_component.png │ │ ├── unreal_bp_actions.png │ │ ├── unreal_bp_component.png │ │ ├── unreal_bp_usage.png │ │ ├── velagames.png │ │ ├── vizor-games.png │ │ ├── winterpixel.png │ │ ├── xonotic-front-page.png │ │ ├── xonotic-ip-port.png │ │ ├── xonotic-join-game.png │ │ └── yagerdevelopment.png │ └── js │ │ └── asciinema-player.js └── vanity.yaml ├── test ├── e2e │ ├── README.md │ ├── allocator │ │ ├── main_test.go │ │ └── pod_termination_test.go │ ├── allocator_test.go │ ├── allochelper │ │ └── helper_func.go │ ├── controller │ │ ├── crash_test.go │ │ ├── doc.go │ │ └── main_test.go │ ├── examples_test.go │ ├── extensions │ │ ├── high_availability_test.go │ │ └── main_test.go │ ├── fleet_test.go │ ├── fleetautoscaler_test.go │ ├── framework │ │ ├── framework.go │ │ └── perf.go │ ├── gameserver_test.go │ ├── gameserverallocation_test.go │ ├── main_test.go │ └── ping_test.go ├── eviction │ └── evictpod.go ├── load │ ├── README.md │ └── allocation │ │ ├── .gitignore │ │ ├── README.md │ │ ├── allocationload │ │ └── allocationload.go │ │ ├── autoscaler.yaml │ │ ├── configure-agones.sh │ │ ├── fixed.txt │ │ ├── fleet.yaml │ │ ├── performance-test-autoscaler-template.yaml │ │ ├── performance-test-fleet-template.yaml │ │ ├── performance-test-variable-template.txt │ │ ├── runAllocation.sh │ │ ├── runScenario.sh │ │ ├── runscenario │ │ └── runscenario.go │ │ ├── scenario-fleet.yaml │ │ ├── scenario-values.yaml │ │ └── variable.txt ├── sdk │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── server.cc │ ├── csharp │ │ ├── Program.cs │ │ └── csharp.csproj │ ├── go │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── cloudbuild.yaml │ │ └── sdk-client-test.go │ ├── nodejs │ │ ├── .gitignore │ │ ├── package.json │ │ └── testSDKClient.js │ ├── restapi │ │ ├── alpha │ │ │ └── swagger │ │ │ │ ├── api_sdk.go │ │ │ │ ├── client.go │ │ │ │ ├── configuration.go │ │ │ │ ├── model_alpha_bool.go │ │ │ │ ├── model_alpha_count.go │ │ │ │ ├── model_alpha_empty.go │ │ │ │ ├── model_alpha_player_id.go │ │ │ │ ├── model_alpha_player_id_list.go │ │ │ │ └── response.go │ │ ├── beta │ │ │ └── swagger │ │ │ │ ├── api_sdk.go │ │ │ │ ├── client.go │ │ │ │ ├── configuration.go │ │ │ │ ├── model_beta_counter.go │ │ │ │ ├── model_beta_counter_update_request.go │ │ │ │ ├── model_beta_list.go │ │ │ │ ├── model_sdk_add_list_value_body.go │ │ │ │ ├── model_sdk_remove_list_value_body.go │ │ │ │ ├── model_the_list_to_update.go │ │ │ │ ├── model_the_requested_update_to_make_to_the_counter.go │ │ │ │ └── response.go │ │ ├── http-api-test.go │ │ └── swagger │ │ │ ├── api_sdk.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── model_game_server_object_meta.go │ │ │ ├── model_game_server_spec.go │ │ │ ├── model_game_server_spec_health.go │ │ │ ├── model_googlerpc_status.go │ │ │ ├── model_sdk_duration.go │ │ │ ├── model_sdk_empty.go │ │ │ ├── model_sdk_game_server.go │ │ │ ├── model_sdk_game_server_status.go │ │ │ ├── model_sdk_key_value.go │ │ │ ├── model_status_address.go │ │ │ ├── model_status_counter_status.go │ │ │ ├── model_status_list_status.go │ │ │ ├── model_status_player_status.go │ │ │ ├── model_status_port.go │ │ │ ├── model_stream_result_of_sdk_game_server.go │ │ │ └── response.go │ ├── rust │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── unity │ │ ├── .gitignore │ │ ├── Assets │ │ │ ├── Main.unity │ │ │ └── Main.unity.meta │ │ ├── Packages │ │ │ ├── manifest.json │ │ │ └── packages-lock.json │ │ ├── ProjectSettings │ │ │ ├── AudioManager.asset │ │ │ ├── ClusterInputManager.asset │ │ │ ├── DynamicsManager.asset │ │ │ ├── EditorBuildSettings.asset │ │ │ ├── EditorSettings.asset │ │ │ ├── GraphicsSettings.asset │ │ │ ├── InputManager.asset │ │ │ ├── MemorySettings.asset │ │ │ ├── NavMeshAreas.asset │ │ │ ├── PackageManagerSettings.asset │ │ │ ├── Physics2DSettings.asset │ │ │ ├── PresetManager.asset │ │ │ ├── ProjectSettings.asset │ │ │ ├── ProjectVersion.txt │ │ │ ├── QualitySettings.asset │ │ │ ├── SceneTemplateSettings.json │ │ │ ├── TagManager.asset │ │ │ ├── TimeManager.asset │ │ │ ├── UnityConnectSettings.asset │ │ │ ├── VFXManager.asset │ │ │ └── VersionControlSettings.asset │ │ └── README.md │ └── websocket-watch │ │ └── ws-watch-test.go └── upgrade │ ├── Dockerfile │ ├── Makefile │ ├── evictablePods.yaml │ ├── gameserverTemplate.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── permissions.yaml │ ├── upgradeTest.yaml │ └── versionMap.yaml ├── tools.go └── vendor ├── cloud.google.com └── go │ ├── .gitignore │ ├── CHANGES.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY.md │ ├── auth │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── credentials │ │ ├── compute.go │ │ ├── detect.go │ │ ├── doc.go │ │ ├── filetypes.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws_provider.go │ │ │ │ ├── executable_provider.go │ │ │ │ ├── externalaccount.go │ │ │ │ ├── file_provider.go │ │ │ │ ├── info.go │ │ │ │ ├── programmatic_provider.go │ │ │ │ ├── url_provider.go │ │ │ │ └── x509_provider.go │ │ │ ├── externalaccountuser │ │ │ │ └── externalaccountuser.go │ │ │ ├── gdch │ │ │ │ └── gdch.go │ │ │ ├── impersonate │ │ │ │ ├── idtoken.go │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── grpctransport │ │ ├── dial_socketopt.go │ │ ├── directpath.go │ │ ├── grpctransport.go │ │ └── pool.go │ ├── httptransport │ │ ├── httptransport.go │ │ └── transport.go │ ├── internal │ │ ├── compute │ │ │ ├── compute.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── credsfile │ │ │ ├── credsfile.go │ │ │ ├── filetype.go │ │ │ └── parse.go │ │ ├── internal.go │ │ ├── jwt │ │ │ └── jwt.go │ │ └── 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 │ ├── cloudbuild │ ├── LICENSE │ ├── apiv1 │ │ └── v2 │ │ │ ├── auxiliary.go │ │ │ ├── cloud_build_client.go │ │ │ ├── cloudbuildpb │ │ │ └── cloudbuild.pb.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ └── version.go │ └── internal │ │ └── version.go │ ├── compute │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go │ ├── debug.md │ ├── doc.go │ ├── go.work │ ├── go.work.sum │ ├── longrunning │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── auxiliary.go │ │ ├── doc.go │ │ ├── from_conn.go │ │ ├── gapic_metadata.json │ │ ├── info.go │ │ ├── longrunningpb │ │ │ └── operations.pb.go │ │ └── operations_client.go │ ├── longrunning.go │ └── tidyfix.go │ ├── migration.md │ ├── monitoring │ ├── LICENSE │ ├── apiv3 │ │ ├── alert_policy_client.go │ │ ├── doc.go │ │ ├── group_client.go │ │ ├── metric_client.go │ │ ├── notification_channel_client.go │ │ ├── path_funcs.go │ │ ├── service_monitoring_client.go │ │ ├── uptime_check_client.go │ │ ├── v2 │ │ │ └── monitoringpb │ │ │ │ ├── alert.pb.go │ │ │ │ ├── alert_service.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── dropped_labels.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── mutation_record.pb.go │ │ │ │ ├── notification.pb.go │ │ │ │ ├── notification_service.pb.go │ │ │ │ ├── query_service.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service_service.pb.go │ │ │ │ ├── snooze.pb.go │ │ │ │ ├── snooze_service.pb.go │ │ │ │ ├── span_context.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ └── version.go │ └── internal │ │ └── version.go │ ├── release-please-config-individual.json │ ├── release-please-config-yoshi-submodules.json │ ├── release-please-config.json │ ├── testing.md │ └── trace │ ├── LICENSE │ ├── apiv2 │ ├── auxiliary.go │ ├── doc.go │ ├── gapic_metadata.json │ ├── path_funcs.go │ ├── trace_client.go │ ├── tracepb │ │ ├── trace.pb.go │ │ └── tracing.pb.go │ └── version.go │ └── internal │ └── version.go ├── contrib.go.opencensus.io └── exporter │ ├── prometheus │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── prometheus.go │ └── sanitize.go │ └── stackdriver │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── LICENSE │ ├── README.md │ ├── label.go │ ├── monitoredresource │ ├── aws_identity_doc_utils.go │ ├── gcp_metadata_config.go │ └── monitored_resources.go │ ├── sanitize.go │ ├── stackdriver.go │ ├── stats.go │ ├── trace.go │ └── trace_proto.go ├── fortio.org └── fortio │ ├── LICENSE │ ├── fhttp │ ├── http_client.go │ ├── http_server.go │ ├── http_utils.go │ └── httprunner.go │ ├── fnet │ └── network.go │ ├── log │ └── logger.go │ ├── periodic │ └── periodic.go │ ├── stats │ └── stats.go │ └── version │ └── version.go ├── github.com ├── ahmetb │ └── gen-crd-api-reference-docs │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example-config.json │ │ └── main.go ├── aws │ └── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── sso │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── ssoiface │ │ │ └── interface.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 ├── dylibso │ └── observe-sdk │ │ └── go │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── adapter.go │ │ ├── bucket.go │ │ ├── event.go │ │ ├── listener.go │ │ ├── otel_formatter.go │ │ ├── telemetry.go │ │ ├── trace_ctx.go │ │ └── wasm.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── 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 │ │ ├── json.go │ │ ├── jsoniter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── extism │ └── go-sdk │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── extism-runtime.wasm │ │ ├── extism-runtime.wasm.version │ │ ├── extism.go │ │ ├── host.go │ │ ├── module.go │ │ ├── plugin.go │ │ └── runtime.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fsnotify │ └── fsnotify │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── mkdoc.zsh │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── fxamacker │ └── cbor │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bytestring.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── decode.go │ │ ├── diagnose.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_map.go │ │ ├── encode_map_go117.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── go-logr │ ├── logr │ │ ├── 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 │ │ ├── .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 │ ├── spec │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bindata.go │ │ ├── cache.go │ │ ├── contact_info.go │ │ ├── debug.go │ │ ├── expander.go │ │ ├── external_docs.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── normalizer.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── schema_loader.go │ │ ├── security_scheme.go │ │ ├── spec.go │ │ ├── swagger.go │ │ ├── tag.go │ │ ├── unused.go │ │ └── xml_object.go │ └── swag │ │ ├── .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 ├── gobwas │ └── glob │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match │ │ ├── any.go │ │ ├── any_of.go │ │ ├── btree.go │ │ ├── contains.go │ │ ├── every_of.go │ │ ├── list.go │ │ ├── match.go │ │ ├── max.go │ │ ├── min.go │ │ ├── nothing.go │ │ ├── prefix.go │ │ ├── prefix_any.go │ │ ├── prefix_suffix.go │ │ ├── range.go │ │ ├── row.go │ │ ├── segments.go │ │ ├── single.go │ │ ├── suffix.go │ │ ├── suffix_any.go │ │ ├── super.go │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── parser.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── token.go │ │ └── syntax.go │ │ └── util │ │ ├── runes │ │ └── runes.go │ │ └── strings │ │ └── strings.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ └── any.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ └── duration.pb.go │ │ ├── timestamp.go │ │ ├── timestamp │ │ └── timestamp.pb.go │ │ └── wrappers │ │ └── wrappers.pb.go ├── google │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── 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 │ │ ├── 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 ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ └── util.go ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ ├── casing │ │ │ ├── BUILD.bazel │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── camel.go │ │ ├── codegenerator │ │ │ ├── BUILD.bazel │ │ │ ├── doc.go │ │ │ ├── parse_req.go │ │ │ └── supported_features.go │ │ ├── descriptor │ │ │ ├── BUILD.bazel │ │ │ ├── apiconfig │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── apiconfig.pb.go │ │ │ │ ├── apiconfig.proto │ │ │ │ └── apiconfig.swagger.json │ │ │ ├── grpc_api_configuration.go │ │ │ ├── openapi_configuration.go │ │ │ ├── openapiconfig │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── openapiconfig.pb.go │ │ │ │ ├── openapiconfig.proto │ │ │ │ └── openapiconfig.swagger.json │ │ │ ├── registry.go │ │ │ ├── services.go │ │ │ └── types.go │ │ ├── generator │ │ │ ├── BUILD.bazel │ │ │ └── generator.go │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── protoc-gen-grpc-gateway │ │ ├── BUILD.bazel │ │ ├── internal │ │ │ └── gengateway │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── doc.go │ │ │ │ ├── generator.go │ │ │ │ └── template.go │ │ └── main.go │ │ ├── protoc-gen-openapiv2 │ │ ├── BUILD.bazel │ │ ├── defs.bzl │ │ ├── internal │ │ │ └── genopenapi │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── doc.go │ │ │ │ ├── format.go │ │ │ │ ├── generator.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_go111_old.go │ │ │ │ ├── naming.go │ │ │ │ ├── template.go │ │ │ │ └── types.go │ │ ├── main.go │ │ └── options │ │ │ ├── BUILD.bazel │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── annotations_protoopaque.pb.go │ │ │ ├── buf.gen.yaml │ │ │ ├── openapiv2.pb.go │ │ │ ├── openapiv2.proto │ │ │ └── openapiv2_protoopaque.pb.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── hashicorp │ ├── golang-lru │ │ ├── .gitignore │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arc.go │ │ ├── doc.go │ │ ├── lru.go │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ └── hcl │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── heptiolabs │ └── healthcheck │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── async.go │ │ ├── checks.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── metrics_handler.go │ │ ├── timeout.go │ │ └── types.go ├── ianlancetaylor │ └── demangle │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ast.go │ │ ├── demangle.go │ │ └── rust.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── 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 │ │ ├── .gitignore │ │ ├── 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 ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mennanov │ └── fmutils │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── fmutils.go ├── mitchellh │ ├── hashstructure │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── hashstructure.go │ │ │ └── include.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── 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 ├── pelletier │ └── go-toml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmark.json │ │ ├── benchmark.sh │ │ ├── benchmark.toml │ │ ├── benchmark.yml │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── marshal.go │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── test.sh │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomltree_create.go │ │ └── tomltree_write.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_js.go │ │ │ ├── process_collector_other.go │ │ │ ├── process_collector_wasip1.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.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 │ │ │ ├── labelset_string_go120.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── robfig │ └── cron │ │ └── v3 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chain.go │ │ ├── constantdelay.go │ │ ├── cron.go │ │ ├── doc.go │ │ ├── logger.go │ │ ├── option.go │ │ ├── parser.go │ │ └── spec.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ ├── afero │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ └── caste.go │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default_notepad.go │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── flags.go │ │ ├── util.go │ │ └── viper.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── subosito │ └── gotenv │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ └── gotenv.go ├── tetratelabs │ ├── wabin │ │ ├── LICENSE │ │ ├── binary │ │ │ ├── code.go │ │ │ ├── const_expr.go │ │ │ ├── custom.go │ │ │ ├── data.go │ │ │ ├── decoder.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── errors.go │ │ │ ├── export.go │ │ │ ├── function.go │ │ │ ├── global.go │ │ │ ├── header.go │ │ │ ├── import.go │ │ │ ├── limits.go │ │ │ ├── memory.go │ │ │ ├── names.go │ │ │ ├── section.go │ │ │ ├── table.go │ │ │ └── value.go │ │ ├── ieee754 │ │ │ └── ieee754.go │ │ ├── leb128 │ │ │ └── leb128.go │ │ └── wasm │ │ │ ├── counts.go │ │ │ ├── features.go │ │ │ ├── instruction.go │ │ │ ├── memory.go │ │ │ ├── module.go │ │ │ └── types.go │ └── wazero │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── RATIONALE.md │ │ ├── README.md │ │ ├── api │ │ ├── features.go │ │ └── wasm.go │ │ ├── builder.go │ │ ├── cache.go │ │ ├── codecov.yml │ │ ├── config.go │ │ ├── experimental │ │ ├── checkpoint.go │ │ ├── close.go │ │ ├── experimental.go │ │ ├── features.go │ │ ├── importresolver.go │ │ ├── listener.go │ │ ├── memory.go │ │ └── sys │ │ │ ├── dir.go │ │ │ ├── errno.go │ │ │ ├── error.go │ │ │ ├── file.go │ │ │ ├── fs.go │ │ │ ├── oflag.go │ │ │ ├── syscall_errno.go │ │ │ ├── syscall_errno_notwindows.go │ │ │ ├── syscall_errno_unsupported.go │ │ │ ├── syscall_errno_windows.go │ │ │ ├── time.go │ │ │ └── unimplemented.go │ │ ├── fsconfig.go │ │ ├── imports │ │ └── wasi_snapshot_preview1 │ │ │ ├── args.go │ │ │ ├── clock.go │ │ │ ├── environ.go │ │ │ ├── fs.go │ │ │ ├── poll.go │ │ │ ├── proc.go │ │ │ ├── random.go │ │ │ ├── sched.go │ │ │ ├── sock.go │ │ │ └── wasi.go │ │ ├── internal │ │ ├── descriptor │ │ │ └── table.go │ │ ├── engine │ │ │ ├── interpreter │ │ │ │ ├── compiler.go │ │ │ │ ├── format.go │ │ │ │ ├── interpreter.go │ │ │ │ ├── operations.go │ │ │ │ └── signature.go │ │ │ └── wazevo │ │ │ │ ├── backend │ │ │ │ ├── abi.go │ │ │ │ ├── backend.go │ │ │ │ ├── compiler.go │ │ │ │ ├── compiler_lower.go │ │ │ │ ├── go_call.go │ │ │ │ ├── isa │ │ │ │ │ ├── amd64 │ │ │ │ │ │ ├── abi.go │ │ │ │ │ │ ├── abi_entry_amd64.go │ │ │ │ │ │ ├── abi_entry_amd64.s │ │ │ │ │ │ ├── abi_entry_preamble.go │ │ │ │ │ │ ├── abi_go_call.go │ │ │ │ │ │ ├── cond.go │ │ │ │ │ │ ├── ext.go │ │ │ │ │ │ ├── instr.go │ │ │ │ │ │ ├── instr_encoding.go │ │ │ │ │ │ ├── lower_constant.go │ │ │ │ │ │ ├── lower_mem.go │ │ │ │ │ │ ├── machine.go │ │ │ │ │ │ ├── machine_pro_epi_logue.go │ │ │ │ │ │ ├── machine_regalloc.go │ │ │ │ │ │ ├── machine_vec.go │ │ │ │ │ │ ├── operands.go │ │ │ │ │ │ ├── reg.go │ │ │ │ │ │ └── stack.go │ │ │ │ │ └── arm64 │ │ │ │ │ │ ├── abi.go │ │ │ │ │ │ ├── abi_entry_arm64.go │ │ │ │ │ │ ├── abi_entry_arm64.s │ │ │ │ │ │ ├── abi_entry_preamble.go │ │ │ │ │ │ ├── abi_go_call.go │ │ │ │ │ │ ├── cond.go │ │ │ │ │ │ ├── instr.go │ │ │ │ │ │ ├── instr_encoding.go │ │ │ │ │ │ ├── lower_constant.go │ │ │ │ │ │ ├── lower_instr.go │ │ │ │ │ │ ├── lower_instr_operands.go │ │ │ │ │ │ ├── lower_mem.go │ │ │ │ │ │ ├── machine.go │ │ │ │ │ │ ├── machine_pro_epi_logue.go │ │ │ │ │ │ ├── machine_regalloc.go │ │ │ │ │ │ ├── machine_relocation.go │ │ │ │ │ │ ├── reg.go │ │ │ │ │ │ └── unwind_stack.go │ │ │ │ ├── machine.go │ │ │ │ ├── regalloc │ │ │ │ │ ├── api.go │ │ │ │ │ ├── reg.go │ │ │ │ │ ├── regalloc.go │ │ │ │ │ └── regset.go │ │ │ │ └── vdef.go │ │ │ │ ├── call_engine.go │ │ │ │ ├── engine.go │ │ │ │ ├── engine_cache.go │ │ │ │ ├── entrypoint_amd64.go │ │ │ │ ├── entrypoint_arm64.go │ │ │ │ ├── entrypoint_others.go │ │ │ │ ├── frontend │ │ │ │ ├── frontend.go │ │ │ │ ├── lower.go │ │ │ │ ├── misc.go │ │ │ │ └── sort_id.go │ │ │ │ ├── hostmodule.go │ │ │ │ ├── isa_amd64.go │ │ │ │ ├── isa_arm64.go │ │ │ │ ├── isa_other.go │ │ │ │ ├── memmove.go │ │ │ │ ├── module_engine.go │ │ │ │ ├── ssa │ │ │ │ ├── basic_block.go │ │ │ │ ├── basic_block_sort.go │ │ │ │ ├── builder.go │ │ │ │ ├── cmp.go │ │ │ │ ├── funcref.go │ │ │ │ ├── instructions.go │ │ │ │ ├── pass.go │ │ │ │ ├── pass_blk_layouts.go │ │ │ │ ├── pass_cfg.go │ │ │ │ ├── signature.go │ │ │ │ ├── ssa.go │ │ │ │ ├── type.go │ │ │ │ └── vs.go │ │ │ │ └── wazevoapi │ │ │ │ ├── debug_options.go │ │ │ │ ├── exitcode.go │ │ │ │ ├── offsetdata.go │ │ │ │ ├── perfmap.go │ │ │ │ ├── perfmap_disabled.go │ │ │ │ ├── perfmap_enabled.go │ │ │ │ ├── pool.go │ │ │ │ ├── ptr.go │ │ │ │ ├── queue.go │ │ │ │ └── resetmap.go │ │ ├── expctxkeys │ │ │ ├── checkpoint.go │ │ │ ├── close.go │ │ │ ├── expctxkeys.go │ │ │ ├── importresolver.go │ │ │ ├── listener.go │ │ │ └── memory.go │ │ ├── filecache │ │ │ ├── compilationcache.go │ │ │ └── file_cache.go │ │ ├── fsapi │ │ │ ├── file.go │ │ │ ├── poll.go │ │ │ └── unimplemented.go │ │ ├── ieee754 │ │ │ └── ieee754.go │ │ ├── internalapi │ │ │ └── internal.go │ │ ├── leb128 │ │ │ └── leb128.go │ │ ├── moremath │ │ │ └── moremath.go │ │ ├── platform │ │ │ ├── cpuid.go │ │ │ ├── cpuid_amd64.go │ │ │ ├── cpuid_amd64.s │ │ │ ├── cpuid_arm64.go │ │ │ ├── cpuid_arm64.s │ │ │ ├── cpuid_unsupported.go │ │ │ ├── crypto.go │ │ │ ├── mmap_linux.go │ │ │ ├── mmap_other.go │ │ │ ├── mmap_unix.go │ │ │ ├── mmap_unsupported.go │ │ │ ├── mmap_windows.go │ │ │ ├── mprotect_bsd.go │ │ │ ├── mprotect_syscall.go │ │ │ ├── mprotect_unsupported.go │ │ │ ├── path.go │ │ │ ├── path_windows.go │ │ │ ├── platform.go │ │ │ ├── time.go │ │ │ ├── time_cgo.go │ │ │ ├── time_notcgo.go │ │ │ └── time_windows.go │ │ ├── sock │ │ │ ├── sock.go │ │ │ ├── sock_supported.go │ │ │ └── sock_unsupported.go │ │ ├── sys │ │ │ ├── fs.go │ │ │ ├── lazy.go │ │ │ ├── stdio.go │ │ │ └── sys.go │ │ ├── sysfs │ │ │ ├── adapter.go │ │ │ ├── datasync_linux.go │ │ │ ├── datasync_tinygo.go │ │ │ ├── datasync_unsupported.go │ │ │ ├── dir.go │ │ │ ├── dirfs.go │ │ │ ├── dirfs_supported.go │ │ │ ├── dirfs_unsupported.go │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ ├── file_unsupported.go │ │ │ ├── file_windows.go │ │ │ ├── futimens.go │ │ │ ├── futimens_darwin.go │ │ │ ├── futimens_darwin.s │ │ │ ├── futimens_linux.go │ │ │ ├── futimens_unsupported.go │ │ │ ├── futimens_windows.go │ │ │ ├── ino.go │ │ │ ├── ino_plan9.go │ │ │ ├── ino_tinygo.go │ │ │ ├── ino_windows.go │ │ │ ├── nonblock_unix.go │ │ │ ├── nonblock_unsupported.go │ │ │ ├── nonblock_windows.go │ │ │ ├── oflag.go │ │ │ ├── open_file_darwin.go │ │ │ ├── open_file_freebsd.go │ │ │ ├── open_file_linux.go │ │ │ ├── open_file_notwindows.go │ │ │ ├── open_file_sun.go │ │ │ ├── open_file_tinygo.go │ │ │ ├── open_file_unsupported.go │ │ │ ├── open_file_windows.go │ │ │ ├── osfile.go │ │ │ ├── poll.go │ │ │ ├── poll_darwin.go │ │ │ ├── poll_darwin.s │ │ │ ├── poll_linux.go │ │ │ ├── poll_unsupported.go │ │ │ ├── poll_windows.go │ │ │ ├── readfs.go │ │ │ ├── rename.go │ │ │ ├── rename_plan9.go │ │ │ ├── rename_windows.go │ │ │ ├── sock.go │ │ │ ├── sock_supported.go │ │ │ ├── sock_unix.go │ │ │ ├── sock_unsupported.go │ │ │ ├── sock_windows.go │ │ │ ├── stat.go │ │ │ ├── stat_bsd.go │ │ │ ├── stat_linux.go │ │ │ ├── stat_unsupported.go │ │ │ ├── stat_windows.go │ │ │ ├── sync.go │ │ │ ├── sync_windows.go │ │ │ ├── syscall6_darwin.go │ │ │ ├── sysfs.go │ │ │ ├── unlink.go │ │ │ ├── unlink_plan9.go │ │ │ └── unlink_windows.go │ │ ├── u32 │ │ │ └── u32.go │ │ ├── u64 │ │ │ └── u64.go │ │ ├── version │ │ │ └── version.go │ │ ├── wasip1 │ │ │ ├── args.go │ │ │ ├── clock.go │ │ │ ├── environ.go │ │ │ ├── errno.go │ │ │ ├── fs.go │ │ │ ├── poll.go │ │ │ ├── proc.go │ │ │ ├── random.go │ │ │ ├── rights.go │ │ │ ├── sched.go │ │ │ ├── sock.go │ │ │ └── wasi.go │ │ ├── wasm │ │ │ ├── binary │ │ │ │ ├── code.go │ │ │ │ ├── const_expr.go │ │ │ │ ├── custom.go │ │ │ │ ├── data.go │ │ │ │ ├── decoder.go │ │ │ │ ├── element.go │ │ │ │ ├── errors.go │ │ │ │ ├── export.go │ │ │ │ ├── function.go │ │ │ │ ├── global.go │ │ │ │ ├── header.go │ │ │ │ ├── import.go │ │ │ │ ├── limits.go │ │ │ │ ├── memory.go │ │ │ │ ├── names.go │ │ │ │ ├── section.go │ │ │ │ ├── table.go │ │ │ │ └── value.go │ │ │ ├── counts.go │ │ │ ├── engine.go │ │ │ ├── func_validation.go │ │ │ ├── function_definition.go │ │ │ ├── global.go │ │ │ ├── gofunc.go │ │ │ ├── host.go │ │ │ ├── instruction.go │ │ │ ├── memory.go │ │ │ ├── memory_definition.go │ │ │ ├── module.go │ │ │ ├── module_instance.go │ │ │ ├── module_instance_lookup.go │ │ │ ├── store.go │ │ │ ├── store_module_list.go │ │ │ └── table.go │ │ ├── wasmdebug │ │ │ ├── debug.go │ │ │ └── dwarf.go │ │ └── wasmruntime │ │ │ └── errors.go │ │ ├── netlify.toml │ │ ├── runtime.go │ │ └── sys │ │ ├── clock.go │ │ ├── error.go │ │ ├── stat.go │ │ ├── stat_bsd.go │ │ ├── stat_linux.go │ │ ├── stat_unsupported.go │ │ └── stat_windows.go ├── tmc │ └── grpc-websocket-proxy │ │ ├── LICENSE │ │ └── wsproxy │ │ ├── doc.go │ │ └── websocket_proxy.go └── x448 │ └── float16 │ ├── LICENSE │ ├── README.md │ └── float16.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ ├── metricexport │ │ ├── doc.go │ │ ├── export.go │ │ └── reader.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ ├── ocgrpc │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_stats_handler.go │ │ ├── doc.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_stats_handler.go │ │ ├── stats_common.go │ │ └── trace_common.go │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ └── resource.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── semconv.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go ├── otel │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── handler.go │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── semconv │ │ ├── v1.17.0 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ └── v1.34.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── resource │ └── v1 │ │ └── resource.pb.go │ └── trace │ └── v1 │ └── trace.pb.go ├── go.yaml.in └── 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 ├── 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 │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── telemetry │ ├── LICENSE │ ├── PATENTS │ ├── counter │ │ ├── counter.go │ │ └── doc.go │ └── internal │ │ ├── counter │ │ ├── counter.go │ │ ├── file.go │ │ ├── parse.go │ │ └── stackcounter.go │ │ ├── mmap │ │ ├── mmap.go │ │ ├── mmap_other.go │ │ ├── mmap_unix.go │ │ └── mmap_windows.go │ │ └── telemetry │ │ ├── dateonly.go │ │ ├── dir.go │ │ ├── proginfo.go │ │ └── types.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 │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── cmd │ └── goimports │ │ ├── doc.go │ │ ├── goimports.go │ │ ├── goimports_gc.go │ │ └── goimports_not_gc.go │ ├── go │ └── ast │ │ └── astutil │ │ ├── enclosing.go │ │ ├── imports.go │ │ ├── rewrite.go │ │ └── util.go │ └── internal │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.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 │ └── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── support │ │ └── bundler │ │ │ └── bundler.go │ └── transport │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ └── dial.go ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ ├── distribution │ │ │ └── distribution.pb.go │ │ ├── httpbody │ │ │ └── httpbody.pb.go │ │ ├── label │ │ │ └── label.pb.go │ │ ├── launch_stage.pb.go │ │ ├── metric │ │ │ └── metric.pb.go │ │ ├── monitoredres │ │ │ └── monitored_resource.pb.go │ │ └── visibility │ │ │ └── visibility.pb.go │ │ ├── devtools │ │ └── cloudtrace │ │ │ └── v2 │ │ │ └── alias.go │ │ ├── monitoring │ │ └── v3 │ │ │ └── alias.go │ │ ├── rpc │ │ ├── LICENSE │ │ ├── code │ │ │ └── code.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ └── calendarperiod │ │ └── calendar_period.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── oauth │ │ │ └── oauth.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ ├── client.go │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ │ ├── logging.go │ │ ├── producer.go │ │ └── server.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ ├── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ │ └── xds │ │ │ └── xds.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── cmd │ └── protoc-gen-go │ │ ├── internal_gengo │ │ ├── init.go │ │ ├── init_opaque.go │ │ ├── main.go │ │ ├── opaque.go │ │ ├── reflect.go │ │ └── well_known_types.go │ │ └── main.go │ ├── compiler │ └── protogen │ │ ├── protogen.go │ │ ├── protogen_apilevel.go │ │ └── protogen_opaque.go │ ├── 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 │ ├── msgfmt │ │ └── format.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 │ ├── protopath │ │ ├── path.go │ │ └── step.go │ ├── protorange │ │ └── range.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 │ ├── testing │ └── protocmp │ │ ├── reflect.go │ │ ├── util.go │ │ └── xform.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── dynamicpb │ ├── dynamic.go │ └── types.go │ ├── gofeaturespb │ └── go_features.pb.go │ ├── known │ ├── anypb │ │ └── any.pb.go │ ├── durationpb │ │ └── duration.pb.go │ ├── emptypb │ │ └── empty.pb.go │ ├── fieldmaskpb │ │ └── field_mask.pb.go │ ├── structpb │ │ └── struct.pb.go │ ├── timestamppb │ │ └── timestamp.pb.go │ └── wrapperspb │ │ └── wrappers.pb.go │ └── pluginpb │ └── plugin.pb.go ├── gopkg.in ├── evanphx │ └── json-patch.v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── fsnotify.v1 │ ├── .gitignore │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── fen.go │ ├── fsnotify.go │ ├── inotify.go │ ├── inotify_poller.go │ ├── kqueue.go │ ├── open_mode_bsd.go │ ├── open_mode_darwin.go │ └── windows.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── ini.v1 │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.go ├── natefinch │ └── lumberjack.v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chown.go │ │ ├── chown_linux.go │ │ └── lumberjack.go ├── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apidiscovery │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── certificates │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── lifecycle.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── well_known_taints.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── discovery │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── events │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── flowcontrol │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta3 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── node │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── policy │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── rbac │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── resource │ │ ├── v1alpha3 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── scheduling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── storage │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ └── storagemigration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.prerelease-lifecycle.go ├── apiextensions-apiserver │ ├── LICENSE │ └── pkg │ │ ├── apis │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ ├── applyconfiguration │ │ ├── apiextensions │ │ │ ├── v1 │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ ├── webhookclientconfig.go │ │ │ │ └── webhookconversion.go │ │ │ └── v1beta1 │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ └── webhookclientconfig.go │ │ ├── internal │ │ │ └── internal.go │ │ └── utils.go │ │ └── clientset │ │ └── clientset │ │ ├── clientset.go │ │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── apiextensions │ │ ├── v1 │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apiextensions_client.go │ │ │ └── fake_customresourcedefinition.go │ │ └── generated_expansion.go │ │ └── v1beta1 │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_apiextensions_client.go │ │ └── fake_customresourcedefinition.go │ │ └── generated_expansion.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── apitesting │ │ │ │ ├── codec.go │ │ │ │ ├── fuzzer │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ └── valuefuzz.go │ │ │ │ └── roundtrip │ │ │ │ │ ├── compatibility.go │ │ │ │ │ ├── construct.go │ │ │ │ │ ├── fuzz_norace.go │ │ │ │ │ ├── fuzz_race.go │ │ │ │ │ ├── roundtrip.go │ │ │ │ │ └── unstructured.go │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_restmapper.go │ │ │ ├── operation │ │ │ │ └── operation.go │ │ │ ├── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.go │ │ │ │ ├── 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 │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── splice.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── expiring.go │ │ │ │ └── lruexpirecache.go │ │ │ ├── diff │ │ │ │ └── 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 │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── field │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ ├── ip.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ ├── decoder.go │ │ │ │ └── stream_reader.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ └── reflect │ │ └── deep_equal.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── OWNERS │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validation.go │ │ │ │ └── variable.go │ │ │ └── v1beta1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── serverstorageversion.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── storageversioncondition.go │ │ │ │ └── storageversionstatus.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── scale.go │ │ │ │ ├── scalespec.go │ │ │ │ └── scalestatus.go │ │ │ ├── v2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── v2beta1 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ └── v2beta2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ ├── job.go │ │ │ │ ├── jobcondition.go │ │ │ │ ├── jobspec.go │ │ │ │ ├── jobstatus.go │ │ │ │ ├── jobtemplatespec.go │ │ │ │ ├── podfailurepolicy.go │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ ├── successpolicy.go │ │ │ │ ├── successpolicyrule.go │ │ │ │ └── uncountedterminatedpods.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ └── jobtemplatespec.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── clustertrustbundlespec.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ ├── certificatesigningrequeststatus.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── clustertrustbundlespec.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── leasecandidatespec.go │ │ │ │ └── leasespec.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── affinity.go │ │ │ │ ├── apparmorprofile.go │ │ │ │ ├── attachedvolume.go │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ ├── capabilities.go │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ ├── cindervolumesource.go │ │ │ │ ├── clientipconfig.go │ │ │ │ ├── clustertrustbundleprojection.go │ │ │ │ ├── componentcondition.go │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── configmapenvsource.go │ │ │ │ ├── configmapkeyselector.go │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ ├── configmapprojection.go │ │ │ │ ├── configmapvolumesource.go │ │ │ │ ├── container.go │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.go │ │ │ │ ├── containerstate.go │ │ │ │ ├── containerstaterunning.go │ │ │ │ ├── containerstateterminated.go │ │ │ │ ├── containerstatewaiting.go │ │ │ │ ├── containerstatus.go │ │ │ │ ├── containeruser.go │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ ├── csivolumesource.go │ │ │ │ ├── daemonendpoint.go │ │ │ │ ├── downwardapiprojection.go │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ ├── endpointaddress.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpointsubset.go │ │ │ │ ├── envfromsource.go │ │ │ │ ├── envvar.go │ │ │ │ ├── envvarsource.go │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ ├── event.go │ │ │ │ ├── eventseries.go │ │ │ │ ├── eventsource.go │ │ │ │ ├── execaction.go │ │ │ │ ├── fcvolumesource.go │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ ├── flexvolumesource.go │ │ │ │ ├── flockervolumesource.go │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ ├── grpcaction.go │ │ │ │ ├── hostalias.go │ │ │ │ ├── hostip.go │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ ├── httpgetaction.go │ │ │ │ ├── httpheader.go │ │ │ │ ├── imagevolumesource.go │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ ├── iscsivolumesource.go │ │ │ │ ├── keytopath.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecyclehandler.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── limitrangeitem.go │ │ │ │ ├── limitrangespec.go │ │ │ │ ├── linuxcontaineruser.go │ │ │ │ ├── loadbalanceringress.go │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ ├── localobjectreference.go │ │ │ │ ├── localvolumesource.go │ │ │ │ ├── modifyvolumestatus.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespacecondition.go │ │ │ │ ├── namespacespec.go │ │ │ │ ├── namespacestatus.go │ │ │ │ ├── nfsvolumesource.go │ │ │ │ ├── node.go │ │ │ │ ├── nodeaddress.go │ │ │ │ ├── nodeaffinity.go │ │ │ │ ├── nodecondition.go │ │ │ │ ├── nodeconfigsource.go │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ ├── nodefeatures.go │ │ │ │ ├── noderuntimehandler.go │ │ │ │ ├── noderuntimehandlerfeatures.go │ │ │ │ ├── nodeselector.go │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ ├── nodeselectorterm.go │ │ │ │ ├── nodespec.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── nodeswapstatus.go │ │ │ │ ├── nodesysteminfo.go │ │ │ │ ├── objectfieldselector.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ ├── persistentvolumesource.go │ │ │ │ ├── persistentvolumespec.go │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ ├── pod.go │ │ │ │ ├── podaffinity.go │ │ │ │ ├── podaffinityterm.go │ │ │ │ ├── podantiaffinity.go │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ ├── podip.go │ │ │ │ ├── podos.go │ │ │ │ ├── podreadinessgate.go │ │ │ │ ├── podresourceclaim.go │ │ │ │ ├── podresourceclaimstatus.go │ │ │ │ ├── podschedulinggate.go │ │ │ │ ├── podsecuritycontext.go │ │ │ │ ├── podspec.go │ │ │ │ ├── podstatus.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── podtemplatespec.go │ │ │ │ ├── portstatus.go │ │ │ │ ├── portworxvolumesource.go │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ ├── probe.go │ │ │ │ ├── probehandler.go │ │ │ │ ├── projectedvolumesource.go │ │ │ │ ├── quobytevolumesource.go │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ ├── rbdvolumesource.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourcefieldselector.go │ │ │ │ ├── resourcehealth.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── resourcequotaspec.go │ │ │ │ ├── resourcequotastatus.go │ │ │ │ ├── resourcerequirements.go │ │ │ │ ├── resourcestatus.go │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ ├── scopeselector.go │ │ │ │ ├── seccompprofile.go │ │ │ │ ├── secret.go │ │ │ │ ├── secretenvsource.go │ │ │ │ ├── secretkeyselector.go │ │ │ │ ├── secretprojection.go │ │ │ │ ├── secretreference.go │ │ │ │ ├── secretvolumesource.go │ │ │ │ ├── securitycontext.go │ │ │ │ ├── selinuxoptions.go │ │ │ │ ├── service.go │ │ │ │ ├── serviceaccount.go │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ ├── serviceport.go │ │ │ │ ├── servicespec.go │ │ │ │ ├── servicestatus.go │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ ├── sleepaction.go │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ ├── storageosvolumesource.go │ │ │ │ ├── sysctl.go │ │ │ │ ├── taint.go │ │ │ │ ├── tcpsocketaction.go │ │ │ │ ├── toleration.go │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ ├── topologyselectorterm.go │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ ├── typedobjectreference.go │ │ │ │ ├── volume.go │ │ │ │ ├── volumedevice.go │ │ │ │ ├── volumemount.go │ │ │ │ ├── volumemountstatus.go │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ ├── volumeprojection.go │ │ │ │ ├── volumeresourcerequirements.go │ │ │ │ ├── volumesource.go │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ └── windowssecuritycontextoptions.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ └── scale.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta2 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ └── v1beta3 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ ├── imagepolicy │ │ │ └── v1alpha1 │ │ │ │ ├── imagereview.go │ │ │ │ ├── imagereviewcontainerspec.go │ │ │ │ ├── imagereviewspec.go │ │ │ │ └── imagereviewstatus.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── meta │ │ │ └── v1 │ │ │ │ ├── condition.go │ │ │ │ ├── deleteoptions.go │ │ │ │ ├── labelselector.go │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ ├── managedfieldsentry.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── ownerreference.go │ │ │ │ ├── preconditions.go │ │ │ │ ├── typemeta.go │ │ │ │ └── unstructured.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressservicebackend.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicebackendport.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ │ ├── v1alpha1 │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ │ ├── v1alpha1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ ├── runtimeclassspec.go │ │ │ │ └── scheduling.go │ │ │ └── v1beta1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ ├── v1alpha1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ └── v1beta1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ ├── resource │ │ │ ├── v1alpha3 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ ├── devicetaintselector.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ ├── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ └── v1beta2 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ └── volumeerror.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── storagemigration │ │ │ └── v1alpha1 │ │ │ │ ├── groupversionresource.go │ │ │ │ ├── migrationcondition.go │ │ │ │ ├── storageversionmigration.go │ │ │ │ ├── storageversionmigrationspec.go │ │ │ │ └── storageversionmigrationstatus.go │ │ └── utils.go │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── 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 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── interface.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ ├── extensions │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ ├── factory.go │ │ ├── flowcontrol │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ ├── rbac │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── resource │ │ │ ├── interface.go │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── storageversionmigration.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ └── fake_validatingadmissionpolicybinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ └── fake_storageversion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ └── fake_selfsubjectreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ ├── fake_cronjob.go │ │ │ │ │ └── fake_job.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ └── generated_expansion.go │ │ │ ├── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ └── fake_clustertrustbundle.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ ├── fake_certificatesigningrequest_expansion.go │ │ │ │ └── fake_clustertrustbundle.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_lease.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_coordination_client.go │ │ │ │ ├── fake_lease.go │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_componentstatus.go │ │ │ │ ├── fake_configmap.go │ │ │ │ ├── fake_core_client.go │ │ │ │ ├── fake_endpoints.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ ├── fake_limitrange.go │ │ │ │ ├── fake_namespace.go │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ ├── fake_node.go │ │ │ │ ├── fake_node_expansion.go │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ ├── fake_pod.go │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ ├── fake_podtemplate.go │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ ├── fake_resourcequota.go │ │ │ │ ├── fake_secret.go │ │ │ │ ├── fake_service.go │ │ │ │ ├── fake_service_expansion.go │ │ │ │ └── fake_serviceaccount.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_discovery_client.go │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ ├── fake_extensions_client.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ └── fake_replicaset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ ├── fake_flowschema.go │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_ingressclass.go │ │ │ │ ├── fake_ipaddress.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_node_client.go │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_devicetaintrule.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_deviceclass.go │ │ │ │ ├── fake_resource_client.go │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_priorityclass.go │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_storagemigration_client.go │ │ │ └── fake_storageversionmigration.go │ │ │ ├── generated_expansion.go │ │ │ ├── storagemigration_client.go │ │ │ └── storageversionmigration.go │ ├── listers │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageversion.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ └── replicaset_expansion.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic_helpers.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── resource │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── storageversionmigration.go │ ├── 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 │ │ │ └── gcp │ │ │ └── gcp_stub.go │ ├── rest │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── object-names.go │ │ │ ├── reflector.go │ │ │ ├── reflector_data_consistency_detector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── synctrack │ │ │ │ ├── lazy.go │ │ │ │ └── synctrack.go │ │ │ ├── the_real_fifo.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merge.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── internal │ │ │ └── events │ │ │ │ └── interfaces.go │ │ ├── leaderelection │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── leasecandidate.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ └── reference │ │ │ └── ref.go │ ├── 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 │ │ ├── retry │ │ ├── OWNERS │ │ └── util.go │ │ ├── watchlist │ │ └── watch_list.go │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go ├── gengo │ ├── LICENSE │ ├── parser │ │ ├── doc.go │ │ └── parse.go │ └── types │ │ ├── comments.go │ │ ├── doc.go │ │ ├── flatten.go │ │ └── types.go ├── klog │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ ├── klog_file.go │ └── v2 │ │ ├── .gitignore │ │ ├── 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 │ ├── integer │ └── integer.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 ├── randfill ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY_CONTACTS ├── bytesource │ └── bytesource.go ├── code-of-conduct.md └── randfill.go ├── structured-merge-diff └── v4 │ ├── LICENSE │ ├── fieldpath │ ├── doc.go │ ├── element.go │ ├── fromvalue.go │ ├── managers.go │ ├── path.go │ ├── pathelementmap.go │ ├── serialize-pe.go │ ├── serialize.go │ └── set.go │ ├── merge │ ├── conflict.go │ └── update.go │ ├── schema │ ├── doc.go │ ├── elements.go │ ├── equals.go │ └── schemaschema.go │ ├── typed │ ├── compare.go │ ├── doc.go │ ├── helpers.go │ ├── merge.go │ ├── parser.go │ ├── reconcile_schema.go │ ├── remove.go │ ├── tofieldset.go │ ├── typed.go │ └── validate.go │ └── value │ ├── allocator.go │ ├── doc.go │ ├── fields.go │ ├── jsontagutil.go │ ├── list.go │ ├── listreflect.go │ ├── listunstructured.go │ ├── map.go │ ├── mapreflect.go │ ├── mapunstructured.go │ ├── reflectcache.go │ ├── scalar.go │ ├── structreflect.go │ ├── value.go │ ├── valuereflect.go │ └── valueunstructured.go └── yaml ├── .gitignore ├── 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 /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/workflows/close.yaml -------------------------------------------------------------------------------- /.github/workflows/label-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/workflows/label-pr.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/obsolete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/workflows/obsolete.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/workflows/pr_update.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/README.md -------------------------------------------------------------------------------- /ci/cancelot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/ci/cancelot.sh -------------------------------------------------------------------------------- /ci/e2e-test-cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/ci/e2e-test-cloudbuild.yaml -------------------------------------------------------------------------------- /ci/perf-test-cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/ci/perf-test-cloudbuild.yaml -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cmd/allocator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/allocator/Dockerfile -------------------------------------------------------------------------------- /cmd/allocator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/allocator/main.go -------------------------------------------------------------------------------- /cmd/allocator/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/allocator/main_test.go -------------------------------------------------------------------------------- /cmd/allocator/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/allocator/metrics.go -------------------------------------------------------------------------------- /cmd/controller/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/controller/Dockerfile -------------------------------------------------------------------------------- /cmd/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/controller/main.go -------------------------------------------------------------------------------- /cmd/controller/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/controller/main_test.go -------------------------------------------------------------------------------- /cmd/controller/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/controller/pprof.go -------------------------------------------------------------------------------- /cmd/extensions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/extensions/Dockerfile -------------------------------------------------------------------------------- /cmd/extensions/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/extensions/main.go -------------------------------------------------------------------------------- /cmd/extensions/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/extensions/pprof.go -------------------------------------------------------------------------------- /cmd/ping/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/ping/Dockerfile -------------------------------------------------------------------------------- /cmd/ping/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/ping/main.go -------------------------------------------------------------------------------- /cmd/ping/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/ping/udp.go -------------------------------------------------------------------------------- /cmd/ping/udp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/ping/udp_test.go -------------------------------------------------------------------------------- /cmd/processor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/processor/Dockerfile -------------------------------------------------------------------------------- /cmd/processor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/processor/main.go -------------------------------------------------------------------------------- /cmd/sdk-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/sdk-server/Dockerfile -------------------------------------------------------------------------------- /cmd/sdk-server/Dockerfile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/sdk-server/Dockerfile.windows -------------------------------------------------------------------------------- /cmd/sdk-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/sdk-server/main.go -------------------------------------------------------------------------------- /cmd/sdk-server/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/cmd/sdk-server/main_test.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/doc.go -------------------------------------------------------------------------------- /docs/agones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/agones.png -------------------------------------------------------------------------------- /docs/governance/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/governance/release_process.md -------------------------------------------------------------------------------- /docs/governance/templates/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/governance/templates/release.md -------------------------------------------------------------------------------- /docs/logos/print/CMYK.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/logos/print/CMYK.ai -------------------------------------------------------------------------------- /docs/logos/web/RGB.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/logos/web/RGB.ai -------------------------------------------------------------------------------- /docs/logos/web/jpeg/low/Full-Color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/logos/web/jpeg/low/Full-Color.jpg -------------------------------------------------------------------------------- /docs/logos/web/png/high/Full-Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/logos/web/png/high/Full-Color.png -------------------------------------------------------------------------------- /docs/logos/web/png/high/LightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/logos/web/png/high/LightBlue.png -------------------------------------------------------------------------------- /docs/logos/web/png/low/Full-Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/logos/web/png/low/Full-Color.png -------------------------------------------------------------------------------- /docs/proposals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/docs/proposals/README.md -------------------------------------------------------------------------------- /examples/allocation-endpoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/allocation-endpoint/Makefile -------------------------------------------------------------------------------- /examples/allocation-endpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/allocation-endpoint/README.md -------------------------------------------------------------------------------- /examples/allocation-endpoint/client/sa_key.json: -------------------------------------------------------------------------------- 1 | // Put a service account key for authorized_members here -------------------------------------------------------------------------------- /examples/allocator-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/allocator-client/README.md -------------------------------------------------------------------------------- /examples/allocator-client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/allocator-client/main.go -------------------------------------------------------------------------------- /examples/autoscaler-wasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/Makefile -------------------------------------------------------------------------------- /examples/autoscaler-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/README.md -------------------------------------------------------------------------------- /examples/autoscaler-wasm/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/go.mod -------------------------------------------------------------------------------- /examples/autoscaler-wasm/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/go.sum -------------------------------------------------------------------------------- /examples/autoscaler-wasm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/main.go -------------------------------------------------------------------------------- /examples/autoscaler-wasm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/model.go -------------------------------------------------------------------------------- /examples/autoscaler-wasm/plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-wasm/plugin.wasm -------------------------------------------------------------------------------- /examples/autoscaler-webhook/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-webhook/Dockerfile -------------------------------------------------------------------------------- /examples/autoscaler-webhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-webhook/Makefile -------------------------------------------------------------------------------- /examples/autoscaler-webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-webhook/README.md -------------------------------------------------------------------------------- /examples/autoscaler-webhook/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-webhook/go.mod -------------------------------------------------------------------------------- /examples/autoscaler-webhook/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-webhook/go.sum -------------------------------------------------------------------------------- /examples/autoscaler-webhook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/autoscaler-webhook/main.go -------------------------------------------------------------------------------- /examples/chainfleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/chainfleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/counterfleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/counterfleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/cpp-simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp-simple/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/Dockerfile -------------------------------------------------------------------------------- /examples/cpp-simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/Makefile -------------------------------------------------------------------------------- /examples/cpp-simple/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - devjgm 5 | -------------------------------------------------------------------------------- /examples/cpp-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/README.md -------------------------------------------------------------------------------- /examples/cpp-simple/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/cloudbuild.yaml -------------------------------------------------------------------------------- /examples/cpp-simple/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/fleet.yaml -------------------------------------------------------------------------------- /examples/cpp-simple/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/gameserver.yaml -------------------------------------------------------------------------------- /examples/cpp-simple/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/cpp-simple/server.cc -------------------------------------------------------------------------------- /examples/crd-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/Dockerfile -------------------------------------------------------------------------------- /examples/crd-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/Makefile -------------------------------------------------------------------------------- /examples/crd-client/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/cloudbuild.yaml -------------------------------------------------------------------------------- /examples/crd-client/create-gs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/create-gs.yaml -------------------------------------------------------------------------------- /examples/crd-client/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/go.mod -------------------------------------------------------------------------------- /examples/crd-client/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/go.sum -------------------------------------------------------------------------------- /examples/crd-client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/crd-client/main.go -------------------------------------------------------------------------------- /examples/custom-controller/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/custom-controller/Dockerfile -------------------------------------------------------------------------------- /examples/custom-controller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/custom-controller/Makefile -------------------------------------------------------------------------------- /examples/custom-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/custom-controller/README.md -------------------------------------------------------------------------------- /examples/custom-controller/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/custom-controller/go.mod -------------------------------------------------------------------------------- /examples/custom-controller/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/custom-controller/go.sum -------------------------------------------------------------------------------- /examples/custom-controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/custom-controller/main.go -------------------------------------------------------------------------------- /examples/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/fleet.yaml -------------------------------------------------------------------------------- /examples/fleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/fleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/gameserver.yaml -------------------------------------------------------------------------------- /examples/gameserverallocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/gameserverallocation.yaml -------------------------------------------------------------------------------- /examples/listfleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/listfleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/nodejs-simple/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /examples/nodejs-simple/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/Dockerfile -------------------------------------------------------------------------------- /examples/nodejs-simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/Makefile -------------------------------------------------------------------------------- /examples/nodejs-simple/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/OWNERS -------------------------------------------------------------------------------- /examples/nodejs-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/README.md -------------------------------------------------------------------------------- /examples/nodejs-simple/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/cloudbuild.yaml -------------------------------------------------------------------------------- /examples/nodejs-simple/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/gameserver.yaml -------------------------------------------------------------------------------- /examples/nodejs-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/package.json -------------------------------------------------------------------------------- /examples/nodejs-simple/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/nodejs-simple/src/index.js -------------------------------------------------------------------------------- /examples/rust-simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/.gitignore -------------------------------------------------------------------------------- /examples/rust-simple/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/Cargo.toml -------------------------------------------------------------------------------- /examples/rust-simple/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/Dockerfile -------------------------------------------------------------------------------- /examples/rust-simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/Makefile -------------------------------------------------------------------------------- /examples/rust-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/README.md -------------------------------------------------------------------------------- /examples/rust-simple/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/cloudbuild.yaml -------------------------------------------------------------------------------- /examples/rust-simple/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/gameserver.yaml -------------------------------------------------------------------------------- /examples/rust-simple/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/rust-simple/src/main.rs -------------------------------------------------------------------------------- /examples/schedulefleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/schedulefleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/simple-game-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/Dockerfile -------------------------------------------------------------------------------- /examples/simple-game-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/Makefile -------------------------------------------------------------------------------- /examples/simple-game-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/README.md -------------------------------------------------------------------------------- /examples/simple-game-server/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/fleet.yaml -------------------------------------------------------------------------------- /examples/simple-game-server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/go.mod -------------------------------------------------------------------------------- /examples/simple-game-server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/go.sum -------------------------------------------------------------------------------- /examples/simple-game-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-game-server/main.go -------------------------------------------------------------------------------- /examples/simple-genai-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-genai-server/Makefile -------------------------------------------------------------------------------- /examples/simple-genai-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-genai-server/README.md -------------------------------------------------------------------------------- /examples/simple-genai-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/simple-genai-server/main.go -------------------------------------------------------------------------------- /examples/supertuxkart/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/Dockerfile -------------------------------------------------------------------------------- /examples/supertuxkart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/Makefile -------------------------------------------------------------------------------- /examples/supertuxkart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/README.md -------------------------------------------------------------------------------- /examples/supertuxkart/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/cloudbuild.yaml -------------------------------------------------------------------------------- /examples/supertuxkart/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/entrypoint.sh -------------------------------------------------------------------------------- /examples/supertuxkart/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/fleet.yaml -------------------------------------------------------------------------------- /examples/supertuxkart/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/gameserver.yaml -------------------------------------------------------------------------------- /examples/supertuxkart/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/go.mod -------------------------------------------------------------------------------- /examples/supertuxkart/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/go.sum -------------------------------------------------------------------------------- /examples/supertuxkart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/main.go -------------------------------------------------------------------------------- /examples/supertuxkart/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/supertuxkart/main_test.go -------------------------------------------------------------------------------- /examples/unity-simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/unity-simple/.gitignore -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/AgonesSdk.cs: -------------------------------------------------------------------------------- 1 | ../../../../../sdks/unity/AgonesSdk.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/model/GameServer.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/model/GameServer.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/model/GameServerObjectMeta.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/model/GameServerObjectMeta.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/model/GameServerSpec.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/model/GameServerSpec.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/model/GameServerStatus.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/model/GameServerStatus.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/model/SpecHealth.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/model/SpecHealth.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/model/StatusPort.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/model/StatusPort.cs -------------------------------------------------------------------------------- /examples/unity-simple/Assets/Scripts/Agones/third_party/MiniJSON.cs: -------------------------------------------------------------------------------- 1 | ../../../../../../sdks/unity/third_party/MiniJSON.cs -------------------------------------------------------------------------------- /examples/unity-simple/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/unity-simple/Dockerfile -------------------------------------------------------------------------------- /examples/unity-simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/unity-simple/Makefile -------------------------------------------------------------------------------- /examples/unity-simple/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.12f1 2 | -------------------------------------------------------------------------------- /examples/unity-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/unity-simple/README.md -------------------------------------------------------------------------------- /examples/unity-simple/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/unity-simple/gameserver.yaml -------------------------------------------------------------------------------- /examples/wasmfleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/wasmfleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/webhookfleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/webhookfleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/xonotic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/Dockerfile -------------------------------------------------------------------------------- /examples/xonotic/Dockerfile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/Dockerfile.windows -------------------------------------------------------------------------------- /examples/xonotic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/Makefile -------------------------------------------------------------------------------- /examples/xonotic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/README.md -------------------------------------------------------------------------------- /examples/xonotic/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/cloudbuild.yaml -------------------------------------------------------------------------------- /examples/xonotic/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/fleet.yaml -------------------------------------------------------------------------------- /examples/xonotic/fleetautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/fleetautoscaler.yaml -------------------------------------------------------------------------------- /examples/xonotic/gameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/gameserver.yaml -------------------------------------------------------------------------------- /examples/xonotic/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/go.mod -------------------------------------------------------------------------------- /examples/xonotic/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/go.sum -------------------------------------------------------------------------------- /examples/xonotic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/main.go -------------------------------------------------------------------------------- /examples/xonotic/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/examples/xonotic/server.cfg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/go.sum -------------------------------------------------------------------------------- /install/helm/agones/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/.helmignore -------------------------------------------------------------------------------- /install/helm/agones/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/Chart.yaml -------------------------------------------------------------------------------- /install/helm/agones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/README.md -------------------------------------------------------------------------------- /install/helm/agones/certs/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/certs/cert.sh -------------------------------------------------------------------------------- /install/helm/agones/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/certs/server.crt -------------------------------------------------------------------------------- /install/helm/agones/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/certs/server.key -------------------------------------------------------------------------------- /install/helm/agones/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/templates/pdb.yaml -------------------------------------------------------------------------------- /install/helm/agones/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/values.schema.json -------------------------------------------------------------------------------- /install/helm/agones/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/helm/agones/values.yaml -------------------------------------------------------------------------------- /install/terraform/modules/aks/aks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/terraform/modules/aks/aks.tf -------------------------------------------------------------------------------- /install/terraform/modules/eks/eks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/terraform/modules/eks/eks.tf -------------------------------------------------------------------------------- /install/yaml/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/install/yaml/install.yaml -------------------------------------------------------------------------------- /pkg/allocation/converters/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/allocation/converters/converter.go -------------------------------------------------------------------------------- /pkg/allocation/go/allocation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/allocation/go/allocation.pb.go -------------------------------------------------------------------------------- /pkg/allocation/go/allocation.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/allocation/go/allocation.pb.gw.go -------------------------------------------------------------------------------- /pkg/allocation/go/processor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/allocation/go/processor.pb.go -------------------------------------------------------------------------------- /pkg/allocation/go/processor_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/allocation/go/processor_grpc.pb.go -------------------------------------------------------------------------------- /pkg/apis/agones/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/register.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/apihooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/apihooks.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/apihooksfake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/apihooksfake.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/common.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/common_test.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/fleet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/fleet.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/fleet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/fleet_test.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/gameserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/gameserver.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/gameserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/gameserver_test.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/gameserverset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/gameserverset.go -------------------------------------------------------------------------------- /pkg/apis/agones/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/agones/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/allocation/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/allocation/register.go -------------------------------------------------------------------------------- /pkg/apis/allocation/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/allocation/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/allocation/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/allocation/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/autoscaling/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/autoscaling/register.go -------------------------------------------------------------------------------- /pkg/apis/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/autoscaling/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/autoscaling/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/doc.go -------------------------------------------------------------------------------- /pkg/apis/multicluster/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/multicluster/register.go -------------------------------------------------------------------------------- /pkg/apis/multicluster/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/multicluster/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/multicluster/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/multicluster/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/scheduling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/apis/scheduling.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/client/applyconfiguration/utils.go -------------------------------------------------------------------------------- /pkg/client/listers/agones/v1/fleet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/client/listers/agones/v1/fleet.go -------------------------------------------------------------------------------- /pkg/cloudproduct/cloudproduct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/cloudproduct.go -------------------------------------------------------------------------------- /pkg/cloudproduct/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/doc.go -------------------------------------------------------------------------------- /pkg/cloudproduct/eviction/eviction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/eviction/eviction.go -------------------------------------------------------------------------------- /pkg/cloudproduct/generic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/generic/doc.go -------------------------------------------------------------------------------- /pkg/cloudproduct/generic/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/generic/generic.go -------------------------------------------------------------------------------- /pkg/cloudproduct/gke/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/gke/doc.go -------------------------------------------------------------------------------- /pkg/cloudproduct/gke/gke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/gke/gke.go -------------------------------------------------------------------------------- /pkg/cloudproduct/gke/gke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/cloudproduct/gke/gke_test.go -------------------------------------------------------------------------------- /pkg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/doc.go -------------------------------------------------------------------------------- /pkg/fleetautoscalers/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleetautoscalers/controller.go -------------------------------------------------------------------------------- /pkg/fleetautoscalers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleetautoscalers/doc.go -------------------------------------------------------------------------------- /pkg/fleets/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleets/controller.go -------------------------------------------------------------------------------- /pkg/fleets/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleets/controller_test.go -------------------------------------------------------------------------------- /pkg/fleets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleets/doc.go -------------------------------------------------------------------------------- /pkg/fleets/fleets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleets/fleets.go -------------------------------------------------------------------------------- /pkg/fleets/fleets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/fleets/fleets_test.go -------------------------------------------------------------------------------- /pkg/gameserverallocations/allocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserverallocations/allocator.go -------------------------------------------------------------------------------- /pkg/gameserverallocations/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserverallocations/cache.go -------------------------------------------------------------------------------- /pkg/gameserverallocations/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserverallocations/doc.go -------------------------------------------------------------------------------- /pkg/gameserverallocations/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserverallocations/find.go -------------------------------------------------------------------------------- /pkg/gameserverallocations/find_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserverallocations/find_test.go -------------------------------------------------------------------------------- /pkg/gameserverallocations/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserverallocations/metrics.go -------------------------------------------------------------------------------- /pkg/gameservers/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/controller.go -------------------------------------------------------------------------------- /pkg/gameservers/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/controller_test.go -------------------------------------------------------------------------------- /pkg/gameservers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/doc.go -------------------------------------------------------------------------------- /pkg/gameservers/gameservers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/gameservers.go -------------------------------------------------------------------------------- /pkg/gameservers/gameservers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/gameservers_test.go -------------------------------------------------------------------------------- /pkg/gameservers/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/health.go -------------------------------------------------------------------------------- /pkg/gameservers/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/health_test.go -------------------------------------------------------------------------------- /pkg/gameservers/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/migration.go -------------------------------------------------------------------------------- /pkg/gameservers/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/migration_test.go -------------------------------------------------------------------------------- /pkg/gameservers/missing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/missing.go -------------------------------------------------------------------------------- /pkg/gameservers/missing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/missing_test.go -------------------------------------------------------------------------------- /pkg/gameservers/pernodecounter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/pernodecounter.go -------------------------------------------------------------------------------- /pkg/gameservers/pernodecounter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/pernodecounter_test.go -------------------------------------------------------------------------------- /pkg/gameservers/succeeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/succeeded.go -------------------------------------------------------------------------------- /pkg/gameservers/succeeded_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameservers/succeeded_test.go -------------------------------------------------------------------------------- /pkg/gameserversets/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserversets/controller.go -------------------------------------------------------------------------------- /pkg/gameserversets/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserversets/controller_test.go -------------------------------------------------------------------------------- /pkg/gameserversets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserversets/doc.go -------------------------------------------------------------------------------- /pkg/gameserversets/gameserversets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserversets/gameserversets.go -------------------------------------------------------------------------------- /pkg/gameserversets/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserversets/metrics.go -------------------------------------------------------------------------------- /pkg/gameserversets/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/gameserversets/metrics_test.go -------------------------------------------------------------------------------- /pkg/metrics/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/controller.go -------------------------------------------------------------------------------- /pkg/metrics/controller_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/controller_metrics.go -------------------------------------------------------------------------------- /pkg/metrics/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/controller_test.go -------------------------------------------------------------------------------- /pkg/metrics/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/doc.go -------------------------------------------------------------------------------- /pkg/metrics/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/exporter.go -------------------------------------------------------------------------------- /pkg/metrics/exporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/exporter_test.go -------------------------------------------------------------------------------- /pkg/metrics/gameservers_count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/gameservers_count.go -------------------------------------------------------------------------------- /pkg/metrics/kubernetes_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/kubernetes_client.go -------------------------------------------------------------------------------- /pkg/metrics/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/util.go -------------------------------------------------------------------------------- /pkg/metrics/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/metrics/util_test.go -------------------------------------------------------------------------------- /pkg/portallocator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/portallocator/doc.go -------------------------------------------------------------------------------- /pkg/portallocator/portallocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/portallocator/portallocator.go -------------------------------------------------------------------------------- /pkg/processor/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/processor/client.go -------------------------------------------------------------------------------- /pkg/processor/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/processor/client_test.go -------------------------------------------------------------------------------- /pkg/processor/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/processor/doc.go -------------------------------------------------------------------------------- /pkg/sdk/alpha/alpha.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/alpha/alpha.pb.go -------------------------------------------------------------------------------- /pkg/sdk/alpha/alpha.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/alpha/alpha.pb.gw.go -------------------------------------------------------------------------------- /pkg/sdk/alpha/alpha_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/alpha/alpha_grpc.pb.go -------------------------------------------------------------------------------- /pkg/sdk/beta/beta.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/beta/beta.pb.go -------------------------------------------------------------------------------- /pkg/sdk/beta/beta.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/beta/beta.pb.gw.go -------------------------------------------------------------------------------- /pkg/sdk/beta/beta_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/beta/beta_grpc.pb.go -------------------------------------------------------------------------------- /pkg/sdk/sdk.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/sdk.pb.go -------------------------------------------------------------------------------- /pkg/sdk/sdk.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/sdk.pb.gw.go -------------------------------------------------------------------------------- /pkg/sdk/sdk_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdk/sdk_grpc.pb.go -------------------------------------------------------------------------------- /pkg/sdkserver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/doc.go -------------------------------------------------------------------------------- /pkg/sdkserver/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/helper_test.go -------------------------------------------------------------------------------- /pkg/sdkserver/localsdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/localsdk.go -------------------------------------------------------------------------------- /pkg/sdkserver/localsdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/localsdk_test.go -------------------------------------------------------------------------------- /pkg/sdkserver/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/sdk.go -------------------------------------------------------------------------------- /pkg/sdkserver/sdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/sdk_test.go -------------------------------------------------------------------------------- /pkg/sdkserver/sdkserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/sdkserver.go -------------------------------------------------------------------------------- /pkg/sdkserver/sdkserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/sdkserver/sdkserver_test.go -------------------------------------------------------------------------------- /pkg/testing/apihooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/testing/apihooks.go -------------------------------------------------------------------------------- /pkg/testing/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/testing/controller.go -------------------------------------------------------------------------------- /pkg/testing/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/testing/doc.go -------------------------------------------------------------------------------- /pkg/util/apiserver/apiserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/apiserver/apiserver.go -------------------------------------------------------------------------------- /pkg/util/apiserver/apiserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/apiserver/apiserver_test.go -------------------------------------------------------------------------------- /pkg/util/crd/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/crd/crd.go -------------------------------------------------------------------------------- /pkg/util/crd/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/crd/crd_test.go -------------------------------------------------------------------------------- /pkg/util/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/doc.go -------------------------------------------------------------------------------- /pkg/util/fswatch/fswatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/fswatch/fswatch.go -------------------------------------------------------------------------------- /pkg/util/fswatch/fswatch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/fswatch/fswatch_test.go -------------------------------------------------------------------------------- /pkg/util/https/https.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/https/https.go -------------------------------------------------------------------------------- /pkg/util/https/https_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/https/https_test.go -------------------------------------------------------------------------------- /pkg/util/https/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/https/server.go -------------------------------------------------------------------------------- /pkg/util/https/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/https/server_test.go -------------------------------------------------------------------------------- /pkg/util/httpserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/httpserver/server.go -------------------------------------------------------------------------------- /pkg/util/logfields/logfields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/logfields/logfields.go -------------------------------------------------------------------------------- /pkg/util/runtime/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/runtime/features.go -------------------------------------------------------------------------------- /pkg/util/runtime/features_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/runtime/features_test.go -------------------------------------------------------------------------------- /pkg/util/runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/runtime/runtime.go -------------------------------------------------------------------------------- /pkg/util/runtime/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/runtime/runtime_test.go -------------------------------------------------------------------------------- /pkg/util/signals/signals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/signals/signals.go -------------------------------------------------------------------------------- /pkg/util/webhooks/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/webhooks/webhooks.go -------------------------------------------------------------------------------- /pkg/util/webhooks/webhooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/webhooks/webhooks_test.go -------------------------------------------------------------------------------- /pkg/util/workerqueue/workerqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/util/workerqueue/workerqueue.go -------------------------------------------------------------------------------- /pkg/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/pkg/version.go -------------------------------------------------------------------------------- /proto/allocation/allocation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/allocation/allocation.proto -------------------------------------------------------------------------------- /proto/allocation/processor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/allocation/processor.proto -------------------------------------------------------------------------------- /proto/googleapis/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/googleapis/google/api/http.proto -------------------------------------------------------------------------------- /proto/grpc-gateway/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/grpc-gateway/LICENSE.txt -------------------------------------------------------------------------------- /proto/sdk/alpha/alpha.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/sdk/alpha/alpha.proto -------------------------------------------------------------------------------- /proto/sdk/beta/beta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/sdk/beta/beta.proto -------------------------------------------------------------------------------- /proto/sdk/sdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/proto/sdk/sdk.proto -------------------------------------------------------------------------------- /sdks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/README.md -------------------------------------------------------------------------------- /sdks/cpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/.clang-format -------------------------------------------------------------------------------- /sdks/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sdks/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/Makefile -------------------------------------------------------------------------------- /sdks/cpp/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - devjgm 5 | -------------------------------------------------------------------------------- /sdks/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/README.md -------------------------------------------------------------------------------- /sdks/cpp/build_scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/build_scripts/build.sh -------------------------------------------------------------------------------- /sdks/cpp/cmake/agonesConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/cmake/agonesConfig.cmake.in -------------------------------------------------------------------------------- /sdks/cpp/cmake/agones_global.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/cmake/agones_global.h.in -------------------------------------------------------------------------------- /sdks/cpp/cmake/clang-verify.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/cmake/clang-verify.in -------------------------------------------------------------------------------- /sdks/cpp/include/agones/sdk.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/include/agones/sdk.grpc.pb.h -------------------------------------------------------------------------------- /sdks/cpp/include/agones/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/include/agones/sdk.h -------------------------------------------------------------------------------- /sdks/cpp/include/agones/sdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/include/agones/sdk.pb.h -------------------------------------------------------------------------------- /sdks/cpp/include/google/api/http.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/include/google/api/http.pb.h -------------------------------------------------------------------------------- /sdks/cpp/sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/sources.cmake -------------------------------------------------------------------------------- /sdks/cpp/src/agones/sdk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/src/agones/sdk.cc -------------------------------------------------------------------------------- /sdks/cpp/src/agones/sdk.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/src/agones/sdk.grpc.pb.cc -------------------------------------------------------------------------------- /sdks/cpp/src/agones/sdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/src/agones/sdk.pb.cc -------------------------------------------------------------------------------- /sdks/cpp/src/google/annotations.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/src/google/annotations.pb.cc -------------------------------------------------------------------------------- /sdks/cpp/src/google/http.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/cpp/src/google/http.pb.cc -------------------------------------------------------------------------------- /sdks/csharp/proto/sdk/beta/beta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/proto/sdk/beta/beta.proto -------------------------------------------------------------------------------- /sdks/csharp/proto/sdk/sdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/proto/sdk/sdk.proto -------------------------------------------------------------------------------- /sdks/csharp/sdk/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | pkgs 3 | -------------------------------------------------------------------------------- /sdks/csharp/sdk/AgonesSDK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/AgonesSDK.cs -------------------------------------------------------------------------------- /sdks/csharp/sdk/AgonesSDK.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/AgonesSDK.nuspec -------------------------------------------------------------------------------- /sdks/csharp/sdk/Alpha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/Alpha.cs -------------------------------------------------------------------------------- /sdks/csharp/sdk/Beta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/Beta.cs -------------------------------------------------------------------------------- /sdks/csharp/sdk/IAgonesAlphaSDK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/IAgonesAlphaSDK.cs -------------------------------------------------------------------------------- /sdks/csharp/sdk/IAgonesBetaSDK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/IAgonesBetaSDK.cs -------------------------------------------------------------------------------- /sdks/csharp/sdk/IAgonesSDK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/IAgonesSDK.cs -------------------------------------------------------------------------------- /sdks/csharp/sdk/csharp-sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/csharp/sdk/csharp-sdk.csproj -------------------------------------------------------------------------------- /sdks/go/alpha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/go/alpha.go -------------------------------------------------------------------------------- /sdks/go/alpha_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/go/alpha_test.go -------------------------------------------------------------------------------- /sdks/go/beta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/go/beta.go -------------------------------------------------------------------------------- /sdks/go/beta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/go/beta_test.go -------------------------------------------------------------------------------- /sdks/go/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/go/sdk.go -------------------------------------------------------------------------------- /sdks/go/sdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/go/sdk_test.go -------------------------------------------------------------------------------- /sdks/nodejs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/.eslintrc.json -------------------------------------------------------------------------------- /sdks/nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /coverage/ 3 | -------------------------------------------------------------------------------- /sdks/nodejs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/.nycrc -------------------------------------------------------------------------------- /sdks/nodejs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/OWNERS -------------------------------------------------------------------------------- /sdks/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/README.md -------------------------------------------------------------------------------- /sdks/nodejs/lib/alpha/alpha_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/alpha/alpha_grpc_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/lib/alpha/alpha_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/alpha/alpha_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/lib/beta/beta_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/beta/beta_grpc_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/lib/beta/beta_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/beta/beta_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/lib/google/api/http_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/google/api/http_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/lib/sdk_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/sdk_grpc_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/lib/sdk_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/lib/sdk_pb.js -------------------------------------------------------------------------------- /sdks/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/package-lock.json -------------------------------------------------------------------------------- /sdks/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/package.json -------------------------------------------------------------------------------- /sdks/nodejs/spec/agonesSDK.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/spec/agonesSDK.spec.js -------------------------------------------------------------------------------- /sdks/nodejs/spec/betaAgonesSDK.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/spec/betaAgonesSDK.spec.js -------------------------------------------------------------------------------- /sdks/nodejs/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/spec/support/jasmine.json -------------------------------------------------------------------------------- /sdks/nodejs/src/agonesSDK.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/agonesSDK.d.ts -------------------------------------------------------------------------------- /sdks/nodejs/src/agonesSDK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/agonesSDK.js -------------------------------------------------------------------------------- /sdks/nodejs/src/alpha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/alpha.d.ts -------------------------------------------------------------------------------- /sdks/nodejs/src/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/alpha.js -------------------------------------------------------------------------------- /sdks/nodejs/src/beta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/beta.d.ts -------------------------------------------------------------------------------- /sdks/nodejs/src/beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/beta.js -------------------------------------------------------------------------------- /sdks/nodejs/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/index.d.ts -------------------------------------------------------------------------------- /sdks/nodejs/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/nodejs/src/index.js -------------------------------------------------------------------------------- /sdks/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/.gitignore -------------------------------------------------------------------------------- /sdks/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/Cargo.toml -------------------------------------------------------------------------------- /sdks/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/README.md -------------------------------------------------------------------------------- /sdks/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/build.rs -------------------------------------------------------------------------------- /sdks/rust/proto/sdk/alpha/alpha.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/proto/sdk/alpha/alpha.proto -------------------------------------------------------------------------------- /sdks/rust/proto/sdk/beta/beta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/proto/sdk/beta/beta.proto -------------------------------------------------------------------------------- /sdks/rust/proto/sdk/sdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/proto/sdk/sdk.proto -------------------------------------------------------------------------------- /sdks/rust/src/alpha.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/src/alpha.rs -------------------------------------------------------------------------------- /sdks/rust/src/beta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/src/beta.rs -------------------------------------------------------------------------------- /sdks/rust/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/src/errors.rs -------------------------------------------------------------------------------- /sdks/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/src/lib.rs -------------------------------------------------------------------------------- /sdks/rust/src/sdk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/rust/src/sdk.rs -------------------------------------------------------------------------------- /sdks/swagger/alpha.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/swagger/alpha.swagger.json -------------------------------------------------------------------------------- /sdks/swagger/beta.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/swagger/beta.swagger.json -------------------------------------------------------------------------------- /sdks/swagger/sdk.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/swagger/sdk.swagger.json -------------------------------------------------------------------------------- /sdks/unity/Agones.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/Agones.asmdef -------------------------------------------------------------------------------- /sdks/unity/Agones.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/Agones.asmdef.meta -------------------------------------------------------------------------------- /sdks/unity/AgonesAlphaSdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/AgonesAlphaSdk.cs -------------------------------------------------------------------------------- /sdks/unity/AgonesAlphaSdk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4bfa24699304c85ad1b9ef381ab10ff 3 | timeCreated: 1653041463 -------------------------------------------------------------------------------- /sdks/unity/AgonesBetaSdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/AgonesBetaSdk.cs -------------------------------------------------------------------------------- /sdks/unity/AgonesBetaSdk.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/AgonesBetaSdk.cs.meta -------------------------------------------------------------------------------- /sdks/unity/AgonesSdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/AgonesSdk.cs -------------------------------------------------------------------------------- /sdks/unity/AgonesSdk.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/AgonesSdk.cs.meta -------------------------------------------------------------------------------- /sdks/unity/IRequestSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/IRequestSender.cs -------------------------------------------------------------------------------- /sdks/unity/IRequestSender.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/IRequestSender.cs.meta -------------------------------------------------------------------------------- /sdks/unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/README.md -------------------------------------------------------------------------------- /sdks/unity/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/README.md.meta -------------------------------------------------------------------------------- /sdks/unity/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/Tests.meta -------------------------------------------------------------------------------- /sdks/unity/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/Tests/Runtime.meta -------------------------------------------------------------------------------- /sdks/unity/Tests/Runtime/PlayMode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/Tests/Runtime/PlayMode.meta -------------------------------------------------------------------------------- /sdks/unity/model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model.meta -------------------------------------------------------------------------------- /sdks/unity/model/GameServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/GameServer.cs -------------------------------------------------------------------------------- /sdks/unity/model/GameServer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/GameServer.cs.meta -------------------------------------------------------------------------------- /sdks/unity/model/GameServerSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/GameServerSpec.cs -------------------------------------------------------------------------------- /sdks/unity/model/GameServerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/GameServerStatus.cs -------------------------------------------------------------------------------- /sdks/unity/model/SpecHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/SpecHealth.cs -------------------------------------------------------------------------------- /sdks/unity/model/SpecHealth.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/SpecHealth.cs.meta -------------------------------------------------------------------------------- /sdks/unity/model/StatusAddresses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/StatusAddresses.cs -------------------------------------------------------------------------------- /sdks/unity/model/StatusPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/StatusPort.cs -------------------------------------------------------------------------------- /sdks/unity/model/StatusPort.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/model/StatusPort.cs.meta -------------------------------------------------------------------------------- /sdks/unity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/package.json -------------------------------------------------------------------------------- /sdks/unity/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/package.json.meta -------------------------------------------------------------------------------- /sdks/unity/third_party.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/third_party.meta -------------------------------------------------------------------------------- /sdks/unity/third_party/MiniJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unity/third_party/MiniJSON.cs -------------------------------------------------------------------------------- /sdks/unreal/Agones/.gitignore: -------------------------------------------------------------------------------- 1 | Binaries/ 2 | Intermediate/ -------------------------------------------------------------------------------- /sdks/unreal/Agones/Agones.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/sdks/unreal/Agones/Agones.uplugin -------------------------------------------------------------------------------- /site/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/.gcloudignore -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/app.yaml -------------------------------------------------------------------------------- /site/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/assets/icons/logo.svg -------------------------------------------------------------------------------- /site/assets/templates/pkg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/assets/templates/pkg.tpl -------------------------------------------------------------------------------- /site/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/cloudbuild.yaml -------------------------------------------------------------------------------- /site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/config.toml -------------------------------------------------------------------------------- /site/content/en/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/_index.html -------------------------------------------------------------------------------- /site/content/en/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/_index.md -------------------------------------------------------------------------------- /site/content/en/blog/news/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/news/_index.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/0.7.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/0.8.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/0.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/0.8.1.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/0.9.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.0.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.1.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.2.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.3.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.4.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.5.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.6.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.7.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.8.0.md -------------------------------------------------------------------------------- /site/content/en/blog/releases/1.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/blog/releases/1.9.0.md -------------------------------------------------------------------------------- /site/content/en/community/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/community/_index.md -------------------------------------------------------------------------------- /site/content/en/docs/FAQ/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/docs/FAQ/_index.md -------------------------------------------------------------------------------- /site/content/en/docs/Guides/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/docs/Guides/_index.md -------------------------------------------------------------------------------- /site/content/en/docs/Guides/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/docs/Guides/metrics.md -------------------------------------------------------------------------------- /site/content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/docs/_index.md -------------------------------------------------------------------------------- /site/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/content/en/search.md -------------------------------------------------------------------------------- /site/credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/credits -------------------------------------------------------------------------------- /site/gen-api-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/gen-api-docs.sh -------------------------------------------------------------------------------- /site/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/go.mod -------------------------------------------------------------------------------- /site/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/go.sum -------------------------------------------------------------------------------- /site/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/handler.go -------------------------------------------------------------------------------- /site/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/handler_test.go -------------------------------------------------------------------------------- /site/htmltest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/htmltest.yaml -------------------------------------------------------------------------------- /site/layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/partials/favicons.html -------------------------------------------------------------------------------- /site/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/partials/head.html -------------------------------------------------------------------------------- /site/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/partials/navbar.html -------------------------------------------------------------------------------- /site/layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/partials/pagination.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/alpha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/shortcodes/alpha.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/shortcodes/beta.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/shortcodes/feature.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/ghlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/shortcodes/ghlink.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/ghrelease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/shortcodes/ghrelease.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/layouts/shortcodes/youtube.html -------------------------------------------------------------------------------- /site/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/main.go -------------------------------------------------------------------------------- /site/static/agones.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/agones.cast -------------------------------------------------------------------------------- /site/static/css/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/css/asciinema-player.css -------------------------------------------------------------------------------- /site/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /site/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /site/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/favicon.ico -------------------------------------------------------------------------------- /site/static/favicons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/pwa-192x192.png -------------------------------------------------------------------------------- /site/static/favicons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/pwa-512x512.png -------------------------------------------------------------------------------- /site/static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /site/static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /site/static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /site/static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/favicons/tile70x70.png -------------------------------------------------------------------------------- /site/static/images/accelbyte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/accelbyte.png -------------------------------------------------------------------------------- /site/static/images/acceleratxr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/acceleratxr.png -------------------------------------------------------------------------------- /site/static/images/afterverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/afterverse.svg -------------------------------------------------------------------------------- /site/static/images/altavr-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/altavr-logo.png -------------------------------------------------------------------------------- /site/static/images/cloud-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/cloud-shell.png -------------------------------------------------------------------------------- /site/static/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/demo.gif -------------------------------------------------------------------------------- /site/static/images/embark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/embark.png -------------------------------------------------------------------------------- /site/static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/logo.svg -------------------------------------------------------------------------------- /site/static/images/mcmahangames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/mcmahangames.png -------------------------------------------------------------------------------- /site/static/images/netspeakgames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/netspeakgames.png -------------------------------------------------------------------------------- /site/static/images/rolltable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/rolltable.png -------------------------------------------------------------------------------- /site/static/images/supersolid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/supersolid.png -------------------------------------------------------------------------------- /site/static/images/ubisoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/ubisoft.png -------------------------------------------------------------------------------- /site/static/images/unreal_bp_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/unreal_bp_usage.png -------------------------------------------------------------------------------- /site/static/images/velagames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/velagames.png -------------------------------------------------------------------------------- /site/static/images/vizor-games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/vizor-games.png -------------------------------------------------------------------------------- /site/static/images/winterpixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/winterpixel.png -------------------------------------------------------------------------------- /site/static/images/xonotic-ip-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/images/xonotic-ip-port.png -------------------------------------------------------------------------------- /site/static/js/asciinema-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/static/js/asciinema-player.js -------------------------------------------------------------------------------- /site/vanity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/site/vanity.yaml -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/allocator/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/allocator/main_test.go -------------------------------------------------------------------------------- /test/e2e/allocator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/allocator_test.go -------------------------------------------------------------------------------- /test/e2e/allochelper/helper_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/allochelper/helper_func.go -------------------------------------------------------------------------------- /test/e2e/controller/crash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/controller/crash_test.go -------------------------------------------------------------------------------- /test/e2e/controller/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/controller/doc.go -------------------------------------------------------------------------------- /test/e2e/controller/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/controller/main_test.go -------------------------------------------------------------------------------- /test/e2e/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/examples_test.go -------------------------------------------------------------------------------- /test/e2e/extensions/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/extensions/main_test.go -------------------------------------------------------------------------------- /test/e2e/fleet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/fleet_test.go -------------------------------------------------------------------------------- /test/e2e/fleetautoscaler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/fleetautoscaler_test.go -------------------------------------------------------------------------------- /test/e2e/framework/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/framework/framework.go -------------------------------------------------------------------------------- /test/e2e/framework/perf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/framework/perf.go -------------------------------------------------------------------------------- /test/e2e/gameserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/gameserver_test.go -------------------------------------------------------------------------------- /test/e2e/gameserverallocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/gameserverallocation_test.go -------------------------------------------------------------------------------- /test/e2e/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/main_test.go -------------------------------------------------------------------------------- /test/e2e/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/e2e/ping_test.go -------------------------------------------------------------------------------- /test/eviction/evictpod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/eviction/evictpod.go -------------------------------------------------------------------------------- /test/load/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/README.md -------------------------------------------------------------------------------- /test/load/allocation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/.gitignore -------------------------------------------------------------------------------- /test/load/allocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/README.md -------------------------------------------------------------------------------- /test/load/allocation/autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/autoscaler.yaml -------------------------------------------------------------------------------- /test/load/allocation/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/fixed.txt -------------------------------------------------------------------------------- /test/load/allocation/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/fleet.yaml -------------------------------------------------------------------------------- /test/load/allocation/runAllocation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/runAllocation.sh -------------------------------------------------------------------------------- /test/load/allocation/runScenario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/runScenario.sh -------------------------------------------------------------------------------- /test/load/allocation/variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/load/allocation/variable.txt -------------------------------------------------------------------------------- /test/sdk/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /test/sdk/cpp/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/cpp/server.cc -------------------------------------------------------------------------------- /test/sdk/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/csharp/Program.cs -------------------------------------------------------------------------------- /test/sdk/csharp/csharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/csharp/csharp.csproj -------------------------------------------------------------------------------- /test/sdk/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/go/Dockerfile -------------------------------------------------------------------------------- /test/sdk/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/go/Makefile -------------------------------------------------------------------------------- /test/sdk/go/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/go/cloudbuild.yaml -------------------------------------------------------------------------------- /test/sdk/go/sdk-client-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/go/sdk-client-test.go -------------------------------------------------------------------------------- /test/sdk/nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/nodejs/.gitignore -------------------------------------------------------------------------------- /test/sdk/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/nodejs/package.json -------------------------------------------------------------------------------- /test/sdk/nodejs/testSDKClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/nodejs/testSDKClient.js -------------------------------------------------------------------------------- /test/sdk/restapi/http-api-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/restapi/http-api-test.go -------------------------------------------------------------------------------- /test/sdk/restapi/swagger/api_sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/restapi/swagger/api_sdk.go -------------------------------------------------------------------------------- /test/sdk/restapi/swagger/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/restapi/swagger/client.go -------------------------------------------------------------------------------- /test/sdk/restapi/swagger/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/restapi/swagger/response.go -------------------------------------------------------------------------------- /test/sdk/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/rust/.gitignore -------------------------------------------------------------------------------- /test/sdk/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/rust/Cargo.toml -------------------------------------------------------------------------------- /test/sdk/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/rust/src/main.rs -------------------------------------------------------------------------------- /test/sdk/unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/unity/.gitignore -------------------------------------------------------------------------------- /test/sdk/unity/Assets/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/unity/Assets/Main.unity -------------------------------------------------------------------------------- /test/sdk/unity/Assets/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/unity/Assets/Main.unity.meta -------------------------------------------------------------------------------- /test/sdk/unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/unity/Packages/manifest.json -------------------------------------------------------------------------------- /test/sdk/unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/sdk/unity/README.md -------------------------------------------------------------------------------- /test/upgrade/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/Dockerfile -------------------------------------------------------------------------------- /test/upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/Makefile -------------------------------------------------------------------------------- /test/upgrade/evictablePods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/evictablePods.yaml -------------------------------------------------------------------------------- /test/upgrade/gameserverTemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/gameserverTemplate.yaml -------------------------------------------------------------------------------- /test/upgrade/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/go.mod -------------------------------------------------------------------------------- /test/upgrade/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/go.sum -------------------------------------------------------------------------------- /test/upgrade/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/main.go -------------------------------------------------------------------------------- /test/upgrade/permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/permissions.yaml -------------------------------------------------------------------------------- /test/upgrade/upgradeTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/upgradeTest.yaml -------------------------------------------------------------------------------- /test/upgrade/versionMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/test/upgrade/versionMap.yaml -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/tools.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/.gitignore -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/CHANGES.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/README.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/SECURITY.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/debug.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/doc.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/go.work -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/go.work.sum -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/cloud.google.com/go/testing.md -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/stackdriver/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | 3 | -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/stackdriver/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/fortio.org/fortio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/fortio.org/fortio/LICENSE -------------------------------------------------------------------------------- /vendor/fortio.org/fortio/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/fortio.org/fortio/log/logger.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dylibso/observe-sdk/go/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .env -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/extism/go-sdk/extism-runtime.wasm.version: -------------------------------------------------------------------------------- 1 | v1.7.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/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/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/heptiolabs/healthcheck/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/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/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/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/googleforgames/agones/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/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/googleforgames/agones/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/gengo/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/gengo/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/gengo/parser/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/gengo/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/gengo/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/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/googleforgames/agones/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/randfill/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleforgames/agones/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------