Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PILOT_SCOPE_GATEWAY_TO_NAMESPACE (0.27 sec)

  1. pilot/pkg/features/pilot.go

    	HTTP10 = env.Register(
    		"PILOT_HTTP10",
    		false,
    		"Enables the use of HTTP 1.0 in the outbound HTTP listeners, to support legacy applications.",
    	).Get()
    
    	ScopeGatewayToNamespace = env.Register(
    		"PILOT_SCOPE_GATEWAY_TO_NAMESPACE",
    		false,
    		"If enabled, a gateway workload can only select gateway resources in the same namespace. "+
    			"Gateways with same selectors in different namespaces will not be applicable.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    							parts := strings.SplitN(gatewayName, "/", 2)
    							if len(parts) == 2 {
    								gatewayName = parts[1]
    								gns = parts[0]
    							}
    							// todo: check istiod env `PILOT_SCOPE_GATEWAY_TO_NAMESPACE`, if true, need to match gateway namespace
    
    							gwID := newResourceID(gns, gatewayName)
    							if gok := recordGateways[gwID]; !gok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top