Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/envoyproxy/go-control-plane
Go implementation of data-plane-api
https://github.com/envoyproxy/go-control-plane
Last synced: 13 days ago
JSON representation
Go implementation of data-plane-api
- Host: GitHub
- URL: https://github.com/envoyproxy/go-control-plane
- Owner: envoyproxy
- License: apache-2.0
- Created: 2017-10-20T17:47:21.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-16T22:31:35.000Z (25 days ago)
- Last Synced: 2024-10-19T18:46:44.290Z (22 days ago)
- Language: Go
- Size: 48.3 MB
- Stars: 1,512
- Watchers: 48
- Forks: 511
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Support: support/README.md
Awesome Lists containing this project
README
# control-plane
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/envoyproxy/go-control-plane/badge)](https://securityscorecards.dev/viewer/?uri=github.com/envoyproxy/go-control-plane)
![CI Status](https://github.com/envoyproxy/go-control-plane/actions/workflows/ci.yaml/badge.svg)
[![Go Report Card](https://goreportcard.com/badge/github.com/envoyproxy/go-control-plane)](https://goreportcard.com/report/github.com/envoyproxy/go-control-plane)
[![GoDoc](https://pkg.go.dev/badge/github.com/envoyproxy/go-control-plane.svg)](https://pkg.go.dev/github.com/envoyproxy/go-control-plane)This repository contains a Go-based implementation of an API server that
implements the discovery service APIs defined in
[data-plane-api](https://github.com/envoyproxy/data-plane-api).## Proto files
The Go proto files are synced from the upstream Envoy repository (https://github.com/envoyproxy/envoy) on every upstream commit.
Synchronization is triggered using the `envoy-sync.yaml` workflow.
## Scope
Due to the variety of platforms out there, there is no single
control plane implementation that can satisfy everyone's needs. Hence this
code base does not attempt to be a full scale control plane for a fleet of
Envoy proxies. Instead, it provides infrastructure that is shared by
multiple different control plane implementations. The components provided
by this library are:* _API Server:_ A generic gRPC based API server that implements xDS APIs as defined
in the
[data-plane-api](https://github.com/envoyproxy/data-plane-api). The API
server is responsible for pushing configuration updates to
Envoys. Consumers should be able to import this go library and use the
API server as is, in production deployments.* _Configuration Cache:_ The library will cache Envoy configurations in
memory in an attempt to provide fast response to consumer Envoys. It is the
responsibility of the consumer of this library to populate the cache as
well as invalidate it when necessary. The cache will be keyed based on a
pre-defined hash function whose keys are based on the
[Node information](https://github.com/envoyproxy/data-plane-api/blob/d4988844024d0bcff4bcd030552eabe3396203fa/api/base.proto#L26-L36).At this moment, this repository will not tackle translating platform
specific representation of resources (e.g., services, instances of
services, etc.) into Envoy-style configuration. Based on usage and
feedback, we might decide to revisit this aspect at a later point in time.## Requirements
1. Go 1.21+
## Quick start
It's recommended to run the tests with `make docker_tests` as it executes the tests
in the same environment as CI. This makes sure to produce a consistent set of generated files.1. Build and run tests:
```sh
make docker_tests
```1. Take a look at the [example server](internal/example/README.md).
## XDS API versioning
The Envoy xDS APIs follow a well defined [versioning scheme](https://www.envoyproxy.io/docs/envoy/latest/configuration/overview/versioning).
### Deprecated
`V2` control-plane code has been removed and will no longer be supported. For previous conversations on support for various xDS versions, see here:
- [here](https://docs.google.com/document/d/1ZkHpz6DwEUmAlG0kb2Mgu4iaeQC2Bbb0egMbECoNNKY/edit?ts=5e602993#heading=h.15nsmgmjaaml)
- [here](https://envoyproxy.slack.com/archives/C7LDJTM6Z/p1582925082005300)*Note*: It is recommended to use a previous SHA if there is still a need for `V2`.
## Resource caching
Because Envoy clients are assumed to be ephemeral, and thus, can come and go
away arbitrarily, the server relies on a configuration cache to minimize the
client load on the server. There are several caches available in this
repository:- `Simple` cache is a snapshot-based cache that maintains a consistent view of
the configuration for each group of proxies. It supports running as an ADS
server or as regular dis-aggregated xDS servers. In ADS mode, the cache can
hold responses until the complete set of referenced resources is requested
(e.g. the entire set of RDS as referenced by LDS). Holding the response
enables an atomic update of xDS collections.- `Linear` is an eventually consistent cache for a single type URL collection.
The cache maintains a single linear version history and a version vector for
the resources in the cache. For each request, it compares the request version
against latest versions for the requested resources, and responds with any
updated resources. This cache assumes the resources are entirely opaque.- `Mux` cache is a simple cache combinator. It allows mixing multiple caches
for different type URLs, e.g use a simple cache for LDS/RDS/CDS and a linear
cache for EDS.## Usage
The [example server](internal/example/README.md) demonstrates how to integrate the go-control-plane with your code.