Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PILOT_FILTER_GATEWAY_CLUSTER_CONFIG (0.38 sec)

  1. releasenotes/notes/auto-passthrough-regression.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
        **Fixed** auto-passthrough gateways not getting XDS pushes on service updates 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 228 bytes
    - Viewed (0)
  2. releasenotes/notes/44439.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/44439
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 20 11:47:18 UTC 2023
    - 252 bytes
    - Viewed (0)
  3. releasenotes/notes/jwks-cluster.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    releaseNotes:
      - |
        **Fixed** an issue where gateways cannot fetch JWKS from `jwksUri` in RequestAuthentication 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 10:45:06 UTC 2023
    - 296 bytes
    - Viewed (0)
  4. pilot/pkg/xds/cds.go

    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    )
    
    // Map all configs that impact CDS for gateways when `PILOT_FILTER_GATEWAY_CLUSTER_CONFIG = true`.
    var pushCdsGatewayConfig = func() sets.Set[kind.Kind] {
    	s := sets.New(
    		kind.VirtualService,
    		kind.Gateway,
    
    		kind.KubernetesGateway,
    		kind.HTTPRoute,
    		kind.TCPRoute,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/features/experimental.go

    )
    
    // 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,
    		"If enabled, Pilot will send only clusters that referenced in gateway virtual services attached to gateway").Get()
    
    	SendUnhealthyEndpoints = atomic.NewBool(env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/proxy_dependencies_test.go

    			if got != tt.want {
    				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"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	delegates map[ConfigKey][]ConfigKey
    
    	// This contains destination hosts of virtual services, keyed by gateway's namespace/name,
    	// only used when PILOT_FILTER_GATEWAY_CLUSTER_CONFIG is enabled
    	destinationsByGateway map[string]sets.String
    
    	// Map of VS hostname -> referenced hostnames
    	referencedDestinations map[string]sets.String
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top