{"id":46774382,"url":"https://github.com/protoconf/protoconf-xds","last_synced_at":"2026-03-09T23:42:02.070Z","repository":{"id":163816660,"uuid":"639253736","full_name":"protoconf/protoconf-xds","owner":"protoconf","description":"XDS server with protoconf backend","archived":false,"fork":false,"pushed_at":"2026-02-11T02:36:15.000Z","size":1217,"stargazers_count":1,"open_issues_count":11,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-11T06:50:18.597Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Starlark","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/protoconf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-05-11T05:00:14.000Z","updated_at":"2024-06-18T12:53:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"0f429279-d921-4d9b-b733-4358af782716","html_url":"https://github.com/protoconf/protoconf-xds","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/protoconf/protoconf-xds","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protoconf%2Fprotoconf-xds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protoconf%2Fprotoconf-xds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protoconf%2Fprotoconf-xds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protoconf%2Fprotoconf-xds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/protoconf","download_url":"https://codeload.github.com/protoconf/protoconf-xds/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protoconf%2Fprotoconf-xds/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30316774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":"2026-03-09T23:42:01.973Z","updated_at":"2026-03-09T23:42:02.056Z","avatar_url":"https://github.com/protoconf.png","language":"Starlark","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Protoconf XDS Server\n\nProtoconf XDS is an implementation of the Envoy's External Data Service (XDS) API that uses Protoconf as a configuration backend. It provides an easy way to manage and update Envoy's configuration dynamically.\n\n## Getting Started\n\n### Prerequisites\n\n- Go 1.16 or later\n- Protoconf v0.1.7 or later\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/protoconf/protoconf-xds.git\n   ```\n\n2. Build the binary:\n\n   ```bash\n   cd protoconf-xds\n   go build\n   ```\n\n### Usage\n\nStart the Protoconf XDS server by running:\n\n```bash\n./protoconf-xds\n```\n\nBy default, the server listens on port 18000. You can change the port by specifying the `-port` flag:\n\n```bash\n./protoconf-xds -port 8080\n```\n\n### Configuration\n\nProtoconf XDS reads its configuration from the environment variables or command line:\n\n```\n-debug\n      env key: PROTOCONF_XDS_DEBUG\n      type: bool (default false)\n-nodeId value (repeatable)\n      env key: PROTOCONF_XDS_NODE_ID (comma separate for multiple node ids)\n      type: string (default [])\n-port value\n      env key: PROTOCONF_XDS_PORT\n      type: uint32 (default 18000)\n-prefix value\n      env key: PROTOCONF_XDS_PREFIX\n      type: string (default example)\n-protoconfAgentAddr value\n      env key: PROTOCONF_XDS_PROTOCONF_AGENT_ADDR\n      type: string (default localhost:4300)\n```\n\n### Running the example\n\nThe example in this repository is inspired by Envoy's [ratelimit](https://github.com/envoyproxy/ratelimit) project.\n\n#### Architecture diagram\n\n![](docs/protoconf_xds_architechture.png)\n\nTo run the `protoconf` agent:\n\n```sh\nprotoconf agent -dev .\n```\n\nTo run the `proxy`, `mock` and `ratelimit`:\n\n```sh\ndocker-compose up\n```\n\n### License\n\nProtoconf XDS is licensed under the MIT License. See `LICENSE` file for more information.\n\n### Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n### Acknowledgments\n\nThis project was inspired by the [Envoy xDS server example](https://github.com/envoyproxy/go-control-plane/tree/main/internal/example) and uses [Protoconf gRPC Client](https://pkg.go.dev/github.com/protoconf/protoconf@v0.1.6/agent/api/proto/v1) to communicate with the Protoconf API server.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprotoconf%2Fprotoconf-xds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprotoconf%2Fprotoconf-xds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprotoconf%2Fprotoconf-xds/lists"}