Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for corsPolicy (0.39 sec)

  1. pilot/pkg/networking/core/route/route.go

    	}
    	if in.Fault != nil || in.CorsPolicy != nil {
    		out.TypedPerFilterConfig = make(map[string]*anypb.Any)
    	}
    	if in.Fault != nil {
    		out.TypedPerFilterConfig[wellknown.Fault] = protoconv.MessageToAny(TranslateFault(in.Fault))
    	}
    	if in.CorsPolicy != nil {
    		out.TypedPerFilterConfig[wellknown.CORS] = protoconv.MessageToAny(TranslateCORSPolicy(node, in.CorsPolicy))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice_test.go

    			*r = wrapperspb.UInt32Value{}
    		},
    		func(r *networking.Percent, c fuzz.Continue) {
    			*r = networking.Percent{}
    		},
    		func(r *networking.CorsPolicy, c fuzz.Continue) {
    			*r = networking.CorsPolicy{}
    		},
    		func(r *networking.Headers, c fuzz.Continue) {
    			*r = networking.Headers{}
    		},
    		func(r *networking.HTTPMirrorPolicy, c fuzz.Continue) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	}
    	return result
    }
    
    func convertHTTPRoute(r k8s.HTTPRouteRule, ctx configContext,
    	obj config.Config, pos int, enforceRefGrant bool,
    ) (*istio.HTTPRoute, *ConfigError) {
    	// TODO: implement rewrite, timeout, corspolicy, retries
    	vs := &istio.HTTPRoute{}
    	// Auto-name the route. If upstream defines an explicit name, will use it instead
    	// The position within the route is unique
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top