Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HTTPIngressPath (0.15 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/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)
Back to top