Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FilterGatewayClusterConfig (0.43 sec)

  1. pilot/pkg/xds/proxy_dependencies.go

    			return true
    		}
    	case model.Router:
    		if config.Kind == kind.ServiceEntry {
    			// If config is ServiceEntry, name of the config is service's FQDN
    			if features.FilterGatewayClusterConfig && !push.ServiceAttachedToGateway(config.Name, proxy) {
    				return false
    			}
    
    			hostname := host.Name(config.Name)
    			// gateways have default sidecar scopes
    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/xds/cds.go

    	// If none set, we will always push
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    
    	checkGateway := false
    	for config := range req.ConfigsUpdated {
    		if proxy.Type == model.Router {
    			if features.FilterGatewayClusterConfig {
    				if _, f := pushCdsGatewayConfig[config.Kind]; f {
    					return true
    				}
    			}
    			if config.Kind == kind.Gateway {
    				// Do the check outside of the loop since its slow; just trigger we need it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top