{"id":19002303,"url":"https://github.com/linkerd/linkerd2-proxy-api","last_synced_at":"2025-05-15T16:03:18.072Z","repository":{"id":33976609,"uuid":"140112183","full_name":"linkerd/linkerd2-proxy-api","owner":"linkerd","description":"A service mesh for Kubernetes and beyond. gRPC API bindings repo for Linkerd 2.x.","archived":false,"fork":false,"pushed_at":"2025-04-01T20:08:28.000Z","size":2614,"stargazers_count":93,"open_issues_count":4,"forks_count":38,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-04-07T23:02:00.587Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linkerd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":"GOVERNANCE.md","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-07T19:34:58.000Z","updated_at":"2025-04-04T02:16:38.000Z","dependencies_parsed_at":"2023-12-27T01:24:25.918Z","dependency_job_id":"1e6d19df-4dd9-423b-82e1-4d715cb294fb","html_url":"https://github.com/linkerd/linkerd2-proxy-api","commit_stats":{"total_commits":292,"total_committers":16,"mean_commits":18.25,"dds":0.6198630136986301,"last_synced_commit":"b0a01fa189ec36dce77a042df87de1412b1c1325"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkerd%2Flinkerd2-proxy-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkerd%2Flinkerd2-proxy-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkerd%2Flinkerd2-proxy-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkerd%2Flinkerd2-proxy-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linkerd","download_url":"https://codeload.github.com/linkerd/linkerd2-proxy-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253002356,"owners_count":21838631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T18:14:34.785Z","updated_at":"2025-05-15T16:03:18.027Z","avatar_url":"https://github.com/linkerd.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linkerd Proxy API\n\nThis repo contains the gRPC bindings that the [Linkerd Proxy][proxy-gh] uses to\ncommunicate with the [Linkerd control plane][cp-gh].\n\n## APIs\n\nGenerally, the proxy's APIs are Kubernetes-agnostic and expose abstractions that\nallow proxies to discover runtime configuration.\n\n### `destination`\n\nThe destination API is used by proxies to discover information about outbound\ntraffic. This configuration includes:\n\n* the protocol of the destination, if known\n* whether the destination is a load balanced service or individual endpoint\n* labels to describe the destination in telemetry\n* the mTLS identity of destination pods\n\n### `identity`\n\nThe identity API is used by proxies to obtain TLS certificates used for\nauthenticed pod-to-pod communication.\n\n### `inbound`\n\nThe inbound API is used by the proxy to discover inbound serving\npolicies, i.e. per-port authorization requirements and rate-limiting poilcy.\n\n### `tap`\n\nThe proxy can be configured to expose a gRPC server that allows the control\nplane to query metadata about live requests transiting the proxy.\n\n## Languages\n\n### Protobuf\n\nThe [`./proto`](./proto) directory includes protobuf definitions.\n\n### Go\n\nThe [`./go`](./go) directory contains statically generated Go bindings, which are\ngenerally used by [controller implementations][cp-gh].\n\n### Rust\n\n[![Crates.io][rs-crate-badge]][rs-crate-url]\n[![Documentation][rs-docs-badge]][rs-docs-url]\n[![License][lic-badge]](LICENSE)\n\nThis repository publishes the [**linkerd2-proxy-api** crate][rs-crate-url],\nwhich uses [`tonic`][tonic] to expose client and server implementations for each\nAPI. Each API may be enabled independently with cargo feature flags.\n\nThe [proxy][proxy-gh] generally uses API clients. Some server implementations\nare also used by the [control plane][cp-gh].\n\n## Issues\n\nIssues may be opened in the [**linkerd2** repository][new-issue].\n\n## License\n\n    Copyright 2022 The Linkerd Authors\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n\u003c!-- refs --\u003e\n[cp-gh]: https://github.com/linkerd/linkerd2\n[new-issue]: https://github.com/linkerd/linkerd2/issues/new/choose\n[proxy-gh]: https://github.com/linkerd/linkerd2-proxy\n[tonic]: https://github.com/hyperium/tonic\n[rs-crate-badge]: https://img.shields.io/crates/v/linkerd2-proxy-api.svg\n[rs-crate-url]: https://crates.io/crates/linkerd2-proxy-api\n[rs-docs-badge]: https://docs.rs/linkerd2-proxy-api/badge.svg\n[rs-docs-url]: https://docs.rs/linkerd2-proxy-api\n[lic-badge]: https://img.shields.io/github/license/linkerd/linkerd2-proxy-api.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinkerd%2Flinkerd2-proxy-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinkerd%2Flinkerd2-proxy-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinkerd%2Flinkerd2-proxy-api/lists"}