Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/gatewayapi/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -2003,7 +2003,7 @@ func (t *Translator) processBackendDestinationSetting(
addrTypeMap[ir.FQDN]++
irde = ir.NewDestEndpoint(bep.Hostname, bep.FQDN.Hostname, uint32(bep.FQDN.Port), false, bep.Zone)
case bep.Unix != nil:
addrTypeMap[ir.IP]++
addrTypeMap[ir.UDS]++
irde = &ir.DestinationEndpoint{
Path: ptr.To(bep.Unix.Path),
Zone: bep.Zone,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ xdsIR:
namespace: envoy-gateway-system
name: accesslog_otel_0_0
settings:
- addressType: IP
- addressType: UDS
endpoints:
- host: ""
path: /var/run/backend.sock
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ xdsIR:
namespace: envoy-gateway-system
name: tracing
settings:
- addressType: IP
- addressType: UDS
endpoints:
- host: ""
path: /var/run/envoy-uds/dsd.socket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ xdsIR:
namespace: default
name: securitypolicy/default/policy-for-http-route-3-http-backendref/extauth/0
settings:
- addressType: IP
- addressType: UDS
endpoints:
- host: ""
path: /var/run/uds.sock
Expand Down
1 change: 1 addition & 0 deletions internal/ir/xds.go
Original file line number Diff line number Diff line change
Expand Up @@ -1685,6 +1685,7 @@ const (
IP DestinationAddressType = "IP"
FQDN DestinationAddressType = "FQDN"
MIXED DestinationAddressType = "Mixed"
UDS DestinationAddressType = "UDS"
)

// DestinationEndpoint holds the endpoint details associated with the destination
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tracing:
destination:
name: "tracing-0"
settings:
- addressType: IP
- addressType: UDS
endpoints:
- host: ""
path: /var/run/envoy-uds/dsd.socket
Expand Down