Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MergeGateways (0.17 sec)

  1. pilot/pkg/model/gateway.go

    // MergeGateways combines multiple gateways targeting the same workload into a single logical Gateway.
    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    // If servers with different protocols attempt to listen on the same port, one of the protocols will be chosen at random.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	if node.Type != Router {
    		return
    	}
    	var prevMergedGateway MergedGateway
    	if node.MergedGateway != nil {
    		prevMergedGateway = *node.MergedGateway
    	}
    	node.MergedGateway = ps.mergeGateways(node)
    	node.PrevMergedGateway = &PrevMergedGateway{
    		ContainsAutoPassthroughGateways: prevMergedGateway.ContainsAutoPassthroughGateways,
    		AutoPassthroughSNIHosts:         prevMergedGateway.GetAutoPassthrughGatewaySNIHosts(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  3. pilot/pkg/networking/core/gateway.go

    	// listener port -> host/bind
    	tlsHostsByPort := map[uint32]map[string]string{}
    	for _, port := range mergedGateway.ServerPorts {
    		// Skip ports we cannot bind to. Note that MergeGateways will already translate Service port to
    		// targetPort, which handles the common case of exposing ports like 80 and 443 but listening on
    		// higher numbered ports.
    		if builder.node.IsUnprivileged() && port.Number < 1024 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top