Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SelectVirtualServices (0.24 sec)

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

    	useSniffing := !hasPrefix && index != -1
    	return listenerPort, useSniffing, err
    }
    
    // TODO: merge with IstioEgressListenerWrapper.selectVirtualServices
    // selectVirtualServices selects the virtual services by matching given services' host names.
    func selectVirtualServices(virtualServices []config.Config, servicesByName map[host.Name]*model.Service) []config.Config {
    	out := make([]config.Config, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice.go

    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // SelectVirtualServices selects the virtual services by matching given services' host names.
    // This function is used by sidecar converter.
    func SelectVirtualServices(vsidx virtualServiceIndex, configNamespace string, hostsByNamespace map[string]hostClassification) []config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar.go

    		}
    
    		// allHosts contains the exact hosts and wildcard hosts,
    		// since SelectVirtualServices will use `Matches` semantic matching.
    		hc := hostsByNamespace[ns]
    		hc.allHosts = append(hc.allHosts, hName)
    		hostsByNamespace[ns] = hc
    	}
    
    	out.virtualServices = SelectVirtualServices(ps.virtualServiceIndex, configNamespace, hostsByNamespace)
    	svces := ps.servicesExportedToNamespace(configNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top