Skip to content

Commit 2ba6c3a

Browse files
authored
Update links to envoy docs on xDS protocol (hashicorp#5871)
1 parent 57e1136 commit 2ba6c3a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

agent/xds/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ type ConfigManager interface {
109109
// server is started.
110110
//
111111
// A full description of the XDS protocol can be found at
112-
// https://github.com/envoyproxy/data-plane-api/blob/master/XDS_PROTOCOL.md
112+
// https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol
113113
type Server struct {
114114
Logger *log.Logger
115115
CfgMgr ConfigManager

agent/xds/server_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func TestServer_StreamAggregatedResources_BasicProtocol(t *testing.T) {
196196
// all the others (same version) but NACK the listener. This is the most
197197
// subtle part of xDS and the server implementation so I'll elaborate. A full
198198
// description of the protocol can be found at
199-
// https://github.com/envoyproxy/data-plane-api/blob/master/XDS_PROTOCOL.md.
199+
// https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol
200200
// Envoy delays making a followup request for a type until after it has
201201
// processed and applied the last response. The next request then will include
202202
// the nonce in the last response which acknowledges _receiving_ and handling

agent/xds/xds.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Discovery Service (ADS) only as we control all config.
44
//
55
// A full description of the XDS protocol can be found at
6-
// https://github.com/envoyproxy/data-plane-api/blob/master/XDS_PROTOCOL.md
6+
// https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol
77
//
88
// xds.Server also support ext_authz network filter API to authorize incoming
99
// connections to Envoy.

website/source/docs/connect/proxies/envoy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Consul Connect has first class support for using
1212
[Envoy](https://www.envoyproxy.io) as a proxy. Consul configures Envoy by
1313
optionally exposing a gRPC service on the local agent that serves [Envoy's xDS
1414
configuration
15-
API](https://github.com/envoyproxy/data-plane-api/blob/master/XDS_PROTOCOL.md).
15+
API](https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol).
1616

1717
Consul can configure Envoy sidecars to proxy http/1.1, http2 or gRPC traffic at
1818
L7 or any other tcp-based protocol at L4. Prior to Consul 1.5.0 Envoy proxies

0 commit comments

Comments
 (0)