Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HTTPIngressPath (0.45 sec)

  1. pkg/apis/networking/validation/validation_test.go

    			Rules: []networking.IngressRule{{
    				Host: "foo.bar.com",
    				IngressRuleValue: networking.IngressRuleValue{
    					HTTP: &networking.HTTPIngressRuleValue{
    						Paths: []networking.HTTPIngressPath{{
    							Path:     "/foo",
    							PathType: &pathTypeImplementationSpecific,
    							Backend:  defaultBackend,
    						}},
    					},
    				},
    			}},
    		},
    		Status: networking.IngressStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// A collection of paths that map requests to backends.
    	// +listType=atomic
    	Paths []HTTPIngressPath `json:"paths" protobuf:"bytes,1,rep,name=paths"`
    	// TODO: Consider adding fields for ingress-type specific global
    	// options usable by a loadbalancer, like http keep-alive.
    }
    
    // PathType represents the type of path referred to by a HTTPIngressPath.
    type PathType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top