Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for serviceTargets (0.19 sec)

  1. pilot/pkg/xds/proxy_dependencies.go

    	if ConfigAffectsProxy(req, proxy) {
    		return true
    	}
    
    	// If the proxy's service updated, need push for it.
    	if len(proxy.ServiceTargets) > 0 && req.ConfigsUpdated != nil {
    		for _, svc := range proxy.ServiceTargets {
    			if _, ok := req.ConfigsUpdated[model.ConfigKey{
    				Kind:      kind.ServiceEntry,
    				Name:      string(svc.Service.Hostname),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/plugin/authn/authentication.go

    			if port == ingressListener.Port.Number {
    				return false
    			}
    		}
    		return true
    	}
    
    	// If there is no Sidecar, check if the port is appearing in any service.
    	for _, si := range node.ServiceTargets {
    		if port == si.Port.TargetPort {
    			return false
    		}
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/policyattachment_test.go

    		IsWaypoint: false,
    	}
    	sampleWaypoint := WorkloadPolicyMatcher{
    		Namespace: "default",
    		WorkloadLabels: labels.Instance{
    			constants.GatewayNameLabel: "sample-waypoint",
    		},
    		IsWaypoint: true,
    	}
    	serviceTarget := WorkloadPolicyMatcher{
    		Namespace: "default",
    		WorkloadLabels: labels.Instance{
    			"app":                      "my-app",
    			constants.GatewayNameLabel: "sample-waypoint",
    		},
    		IsWaypoint: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway_test.go

    				},
    			},
    		},
    	}
    	svc := &Service{
    		Attributes: ServiceAttributes{
    			Labels: map[string]string{},
    		},
    	}
    	gatewayServiceTargets := []ServiceTarget{
    		{
    			Service: svc,
    			Port: ServiceInstancePort{
    				ServicePort: &Port{Port: 80},
    				TargetPort:  80,
    			},
    		},
    		{
    			Service: svc,
    			Port: ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top