Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for HTTPIngressPath (0.41 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/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)
  3. 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)
  4. staging/src/k8s.io/api/extensions/v1beta1/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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. 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)
  10. 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)
Back to top