Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ServiceTargets (0.34 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)
Back to top