2023-03-28 19:39:22 +01:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-11 09:12:13 -04:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-28 19:39:22 +01:00
|
|
|
|
2020-03-27 15:38:16 -04:00
|
|
|
// Package xds provides an implementation of a gRPC service that exports Envoy's
|
2018-10-03 19:18:55 +01:00
|
|
|
// xDS API for config discovery. Specifically we support the Aggregated
|
|
|
|
// Discovery Service (ADS) only as we control all config.
|
|
|
|
//
|
|
|
|
// A full description of the XDS protocol can be found at
|
2019-06-03 11:03:05 -05:00
|
|
|
// https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol
|
2018-10-03 19:18:55 +01:00
|
|
|
//
|
|
|
|
// xds.Server also support ext_authz network filter API to authorize incoming
|
|
|
|
// connections to Envoy.
|
|
|
|
package xds
|