Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HTTPIngressPath (0.14 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. pkg/apis/networking/v1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1.HTTPIngressPath)(nil), (*networking.HTTPIngressPath)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_HTTPIngressPath_To_networking_HTTPIngressPath(a.(*v1.HTTPIngressPath), b.(*networking.HTTPIngressPath), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.HTTPIngressPath)(nil), (*networking.HTTPIngressPath)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_HTTPIngressPath_To_networking_HTTPIngressPath(a.(*v1beta1.HTTPIngressPath), b.(*networking.HTTPIngressPath), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  4. 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