Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ServiceTargets (0.95 sec)

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

    }
    
    // NewClusterBuilder builds an instance of ClusterBuilder.
    func NewClusterBuilder(proxy *model.Proxy, req *model.PushRequest, cache model.XdsCache) *ClusterBuilder {
    	cb := &ClusterBuilder{
    		serviceTargets:     proxy.ServiceTargets,
    		proxyID:            proxy.ID,
    		proxyType:          proxy.Type,
    		proxyVersion:       proxy.Metadata.IstioVersion,
    		sidecarScope:       proxy.SidecarScope,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    	clusters := make([]*cluster.Cluster, 0)
    	resources := model.Resources{}
    	envoyFilterPatches := req.Push.EnvoyFilters(proxy)
    	cb := NewClusterBuilder(proxy, req, configgen.Cache)
    	instances := proxy.ServiceTargets
    	cacheStats := cacheStats{}
    	switch proxy.Type {
    	case model.SidecarProxy:
    		// Setup outbound clusters
    		outboundPatcher := clusterPatcher{efw: envoyFilterPatches, pctx: networking.EnvoyFilter_SIDECAR_OUTBOUND}
    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

    	ingressPortListSet := sets.New[int]()
    	sidecarScope := lb.node.SidecarScope
    	if sidecarScope.HasIngressListener() {
    		ingressPortListSet = getSidecarIngressPortList(lb.node)
    	}
    	for _, i := range lb.node.ServiceTargets {
    		bindToPort := getBindToPort(networking.CaptureMode_DEFAULT, lb.node)
    		// Skip ports we cannot bind to
    		if !lb.node.CanBindToPort(bindToPort, i.Port.TargetPort) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top