Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HTTPIngressPath (0.16 sec)

  1. pkg/registry/networking/ingress/storage/storage_test.go

    			Number: 80,
    		},
    	}
    )
    
    type IngressRuleValues map[string]string
    
    func toHTTPIngressPaths(pathMap map[string]string) []networking.HTTPIngressPath {
    	httpPaths := []networking.HTTPIngressPath{}
    	for path, backend := range pathMap {
    		httpPaths = append(httpPaths, networking.HTTPIngressPath{
    			Path:     path,
    			PathType: &defaultPathType,
    			Backend: networking.IngressBackend{
    				Service: &networking.IngressServiceBackend{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 09:01:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/registry/networking/ingress/strategy_test.go

    			Rules: []networking.IngressRule{
    				{
    					Host: "foo.bar.com",
    					IngressRuleValue: networking.IngressRuleValue{
    						HTTP: &networking.HTTPIngressRuleValue{
    							Paths: []networking.HTTPIngressPath{
    								{
    									Path:     "/foo",
    									PathType: &implementationPathType,
    									Backend:  *defaultBackend.DeepCopy(),
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. pkg/apis/networking/fuzzer/fuzzer.go

    			// selector requirements.
    			if len(np.Spec.PolicyTypes) == 0 {
    				np.Spec.PolicyTypes = []networking.PolicyType{networking.PolicyTypeIngress}
    			}
    		},
    		func(path *networking.HTTPIngressPath, c fuzz.Continue) {
    			c.FuzzNoCustom(path) // fuzz self without calling this function again
    			pathTypes := []networking.PathType{networking.PathTypeExact, networking.PathTypePrefix, networking.PathTypeImplementationSpecific}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pkg/apis/extensions/v1beta1/defaults.go

    		if len(obj.Spec.Egress) != 0 {
    			obj.Spec.PolicyTypes = append(obj.Spec.PolicyTypes, extensionsv1beta1.PolicyTypeEgress)
    		}
    	}
    }
    
    func SetDefaults_HTTPIngressPath(obj *extensionsv1beta1.HTTPIngressPath) {
    	var defaultPathType = extensionsv1beta1.PathTypeImplementationSpecific
    	if obj.PathType == nil {
    		obj.PathType = &defaultPathType
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top