Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for HTTPIngressPath (0.27 sec)

  1. pilot/pkg/config/kube/ingress/controller_test.go

    		},
    		Spec: net.IngressSpec{
    			Rules: []net.IngressRule{
    				{
    					Host: "my.host.com",
    					IngressRuleValue: net.IngressRuleValue{
    						HTTP: &net.HTTPIngressRuleValue{
    							Paths: []net.HTTPIngressPath{
    								{
    									Path: "/test",
    									Backend: net.IngressBackend{
    										Service: &net.IngressServiceBackend{
    											Name: "foo",
    											Port: net.ServiceBackendPort{
    												Number: 8000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. 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)
  3. pkg/apis/networking/zz_generated.deepcopy.go

    func (in *HTTPIngressPath) DeepCopyInto(out *HTTPIngressPath) {
    	*out = *in
    	if in.PathType != nil {
    		in, out := &in.PathType, &out.PathType
    		*out = new(PathType)
    		**out = **in
    	}
    	in.Backend.DeepCopyInto(&out.Backend)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPIngressPath.
    func (in *HTTPIngressPath) DeepCopy() *HTTPIngressPath {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    func (m *HTTPIngressPath) Reset()      { *m = HTTPIngressPath{} }
    func (*HTTPIngressPath) ProtoMessage() {}
    func (*HTTPIngressPath) Descriptor() ([]byte, []int) {
    	return fileDescriptor_9497719c79c89d2d, []int{0}
    }
    func (m *HTTPIngressPath) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *HTTPIngressPath) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/generated.pb.go

    func (m *HTTPIngressPath) Reset()      { *m = HTTPIngressPath{} }
    func (*HTTPIngressPath) ProtoMessage() {}
    func (*HTTPIngressPath) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2c41434372fec1d7, []int{0}
    }
    func (m *HTTPIngressPath) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *HTTPIngressPath) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// +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:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top