-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307 from Kong/fix/grpc-access-log-server-on-k8s
kuma-cp: fix an issue with Access Log Server on k8s (`kuma-cp` was configuring Envoy to use a Unix socket other than `kuma-dp` was actually listening on)
- Loading branch information
Showing
5 changed files
with
55 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
pkg/xds/bootstrap/testdata/bootstrap.universal.golden.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
dynamicResources: | ||
adsConfig: | ||
apiType: GRPC | ||
grpcServices: | ||
- envoyGrpc: | ||
clusterName: ads_cluster | ||
cdsConfig: | ||
ads: {} | ||
ldsConfig: | ||
ads: {} | ||
node: | ||
cluster: backend | ||
id: default.dp-1.default | ||
staticResources: | ||
clusters: | ||
- connectTimeout: 0.250s | ||
http2ProtocolOptions: {} | ||
loadAssignment: | ||
clusterName: ads_cluster | ||
endpoints: | ||
- lbEndpoints: | ||
- endpoint: | ||
address: | ||
socketAddress: | ||
address: 127.0.0.1 | ||
portValue: 5678 | ||
name: ads_cluster | ||
type: STRICT_DNS | ||
upstreamConnectionOptions: | ||
tcpKeepalive: {} | ||
- connectTimeout: 1s | ||
http2ProtocolOptions: {} | ||
loadAssignment: | ||
clusterName: access_log_sink | ||
endpoints: | ||
- lbEndpoints: | ||
- endpoint: | ||
address: | ||
pipe: | ||
path: /tmp/kuma-access-logs-dp-1-default.sock | ||
name: access_log_sink | ||
type: STATIC | ||
upstreamConnectionOptions: | ||
tcpKeepalive: {} |