Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getWildcardsAndLocalHost (0.21 sec)

  1. pilot/pkg/networking/core/listener_builder.go

    	if lb.node.GetInterceptionMode() == model.InterceptionTproxy {
    		isTransparentProxy = proto.BoolTrue
    	}
    
    	filterChains := buildOutboundCatchAllNetworkFilterChains(lb.node, lb.push)
    
    	actualWildcards, _ := getWildcardsAndLocalHost(lb.node.GetIPMode())
    	// add an extra listener that binds to the port that is the recipient of the iptables redirect
    	ipTablesListener := &listener.Listener{
    		Name:             model.VirtualOutboundListenerName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    	instances []model.ServiceTarget, cp clusterPatcher,
    	enableSidecarServiceInboundListenerMerge bool,
    ) []*cluster.Cluster {
    	clusters := make([]*cluster.Cluster, 0)
    	_, actualLocalHosts := getWildcardsAndLocalHost(proxy.GetIPMode())
    	clustersToBuild := make(map[int][]model.ServiceTarget)
    
    	ingressPortListSet := sets.New[int]()
    	sidecarScope := proxy.SidecarScope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    	return listeners
    }
    
    // inboundVirtualListener builds the virtual inbound listener.
    func (lb *ListenerBuilder) inboundVirtualListener(chains []*listener.FilterChain) *listener.Listener {
    	actualWildcards, _ := getWildcardsAndLocalHost(lb.node.GetIPMode())
    
    	// Build the "virtual" inbound listener. This will capture all inbound redirected traffic and contains:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    		return builder
    	}
    
    	mergedGateway := builder.node.MergedGateway
    	log.Debugf("buildGatewayListeners: gateways after merging: %v", mergedGateway)
    
    	actualWildcards, _ := getWildcardsAndLocalHost(builder.node.GetIPMode())
    	errs := istiomultierror.New()
    	// Mutable objects keyed by listener name so that we can build listeners at the end.
    	mutableopts := make(map[string]mutableListenerOpts)
    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