├── .bazelrc ├── .bazelversion ├── .gitattributes ├── .gitignore ├── BUILD ├── DEVELOPER.md ├── LICENSE ├── README.md ├── WORKSPACE ├── bazel ├── BUILD ├── api_build_system.bzl ├── dependency_imports.bzl ├── envoy_http_archive.bzl ├── foreign_cc │ └── BUILD ├── protobuf.patch ├── repositories.bzl └── repository_locations.bzl ├── ci ├── azure-pipelines.yml └── check.sh ├── go ├── README.md ├── go.mod ├── udpa │ ├── annotations │ │ └── types.go │ ├── data │ │ └── orca │ │ │ └── v1 │ │ │ └── orca_load_report.go │ ├── service │ │ └── orca │ │ │ └── v1 │ │ │ └── orca.go │ └── type │ │ └── v1 │ │ └── typed_struct.go └── xds │ └── core │ └── v3 │ └── types.go ├── proposals ├── README.md └── XRFC-TEMPLATE.md ├── repokitteh.star ├── test └── build │ ├── BUILD │ ├── build_test.cc │ └── go_build_test.go ├── udpa ├── annotations │ ├── BUILD │ ├── migrate.proto │ ├── security.proto │ ├── sensitive.proto │ ├── status.proto │ └── versioning.proto ├── data │ └── orca │ │ └── v1 │ │ ├── BUILD │ │ └── orca_load_report.proto ├── service │ └── orca │ │ └── v1 │ │ ├── BUILD │ │ └── orca.proto └── type │ └── v1 │ ├── BUILD │ └── typed_struct.proto └── xds └── core └── v3 ├── BUILD ├── authority.proto ├── collection_entry.proto ├── context_params.proto ├── resource.proto ├── resource_locator.proto └── resource_name.proto /.bazelrc: -------------------------------------------------------------------------------- 1 | build:ci --announce_rc 2 | -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | go.sum 3 | -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/WORKSPACE -------------------------------------------------------------------------------- /bazel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/BUILD -------------------------------------------------------------------------------- /bazel/api_build_system.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/api_build_system.bzl -------------------------------------------------------------------------------- /bazel/dependency_imports.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/dependency_imports.bzl -------------------------------------------------------------------------------- /bazel/envoy_http_archive.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/envoy_http_archive.bzl -------------------------------------------------------------------------------- /bazel/foreign_cc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/foreign_cc/BUILD -------------------------------------------------------------------------------- /bazel/protobuf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/protobuf.patch -------------------------------------------------------------------------------- /bazel/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/repositories.bzl -------------------------------------------------------------------------------- /bazel/repository_locations.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/bazel/repository_locations.bzl -------------------------------------------------------------------------------- /ci/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/ci/azure-pipelines.yml -------------------------------------------------------------------------------- /ci/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/ci/check.sh -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/README.md -------------------------------------------------------------------------------- /go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/go.mod -------------------------------------------------------------------------------- /go/udpa/annotations/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/udpa/annotations/types.go -------------------------------------------------------------------------------- /go/udpa/data/orca/v1/orca_load_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/udpa/data/orca/v1/orca_load_report.go -------------------------------------------------------------------------------- /go/udpa/service/orca/v1/orca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/udpa/service/orca/v1/orca.go -------------------------------------------------------------------------------- /go/udpa/type/v1/typed_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/udpa/type/v1/typed_struct.go -------------------------------------------------------------------------------- /go/xds/core/v3/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/go/xds/core/v3/types.go -------------------------------------------------------------------------------- /proposals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/proposals/README.md -------------------------------------------------------------------------------- /proposals/XRFC-TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/proposals/XRFC-TEMPLATE.md -------------------------------------------------------------------------------- /repokitteh.star: -------------------------------------------------------------------------------- 1 | use("github.com/repokitteh/modules/wait.star") 2 | -------------------------------------------------------------------------------- /test/build/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/test/build/BUILD -------------------------------------------------------------------------------- /test/build/build_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/test/build/build_test.cc -------------------------------------------------------------------------------- /test/build/go_build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/test/build/go_build_test.go -------------------------------------------------------------------------------- /udpa/annotations/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/annotations/BUILD -------------------------------------------------------------------------------- /udpa/annotations/migrate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/annotations/migrate.proto -------------------------------------------------------------------------------- /udpa/annotations/security.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/annotations/security.proto -------------------------------------------------------------------------------- /udpa/annotations/sensitive.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/annotations/sensitive.proto -------------------------------------------------------------------------------- /udpa/annotations/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/annotations/status.proto -------------------------------------------------------------------------------- /udpa/annotations/versioning.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/annotations/versioning.proto -------------------------------------------------------------------------------- /udpa/data/orca/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/data/orca/v1/BUILD -------------------------------------------------------------------------------- /udpa/data/orca/v1/orca_load_report.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/data/orca/v1/orca_load_report.proto -------------------------------------------------------------------------------- /udpa/service/orca/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/service/orca/v1/BUILD -------------------------------------------------------------------------------- /udpa/service/orca/v1/orca.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/service/orca/v1/orca.proto -------------------------------------------------------------------------------- /udpa/type/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/type/v1/BUILD -------------------------------------------------------------------------------- /udpa/type/v1/typed_struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/udpa/type/v1/typed_struct.proto -------------------------------------------------------------------------------- /xds/core/v3/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/BUILD -------------------------------------------------------------------------------- /xds/core/v3/authority.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/authority.proto -------------------------------------------------------------------------------- /xds/core/v3/collection_entry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/collection_entry.proto -------------------------------------------------------------------------------- /xds/core/v3/context_params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/context_params.proto -------------------------------------------------------------------------------- /xds/core/v3/resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/resource.proto -------------------------------------------------------------------------------- /xds/core/v3/resource_locator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/resource_locator.proto -------------------------------------------------------------------------------- /xds/core/v3/resource_name.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/udpa/HEAD/xds/core/v3/resource_name.proto --------------------------------------------------------------------------------