Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FilterGatewayClusterConfig (0.3 sec)

  1. pilot/pkg/features/experimental.go

    	"time"
    
    	"go.uber.org/atomic"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define experimental features here.
    var (
    	// FilterGatewayClusterConfig controls if a subset of clusters(only those required) should be pushed to gateways
    	FilterGatewayClusterConfig = env.Register("PILOT_FILTER_GATEWAY_CLUSTER_CONFIG", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/proxy_dependencies_test.go

    				t.Fatalf("Got needs push = %v, expected %v", got, tt.want)
    			}
    		})
    	}
    
    	// test for gateway proxy dependencies with PILOT_FILTER_GATEWAY_CLUSTER_CONFIG enabled.
    	test.SetForTest(t, &features.FilterGatewayClusterConfig, true)
    	test.SetForTest(t, &features.JwksFetchMode, jwt.Envoy)
    
    	const (
    		fooSvc       = "foo"
    		extensionSvc = "extension"
    		jwksSvc      = "jwks"
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    func (configgen *ConfigGeneratorImpl) BuildClusters(proxy *model.Proxy, req *model.PushRequest) ([]*discovery.Resource, model.XdsLogDetails) {
    	// In Sotw, we care about all services.
    	var services []*model.Service
    	if features.FilterGatewayClusterConfig && proxy.Type == model.Router {
    		services = req.Push.GatewayServices(proxy)
    	} else {
    		services = proxy.SidecarScope.Services()
    	}
    	return configgen.buildClusters(proxy, req, services)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top