Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for HTTPIngressRuleValue (0.22 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPIngressRuleValue.
    func (in *HTTPIngressRuleValue) DeepCopy() *HTTPIngressRuleValue {
    	if in == nil {
    		return nil
    	}
    	out := new(HTTPIngressRuleValue)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/generated.pb.go

    func (m *HTTPIngressRuleValue) Reset()      { *m = HTTPIngressRuleValue{} }
    func (*HTTPIngressRuleValue) ProtoMessage() {}
    func (*HTTPIngressRuleValue) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2c41434372fec1d7, []int{1}
    }
    func (m *HTTPIngressRuleValue) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *HTTPIngressRuleValue) 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)
  3. pkg/registry/networking/ingress/strategy_test.go

    			DefaultBackend: defaultBackend.DeepCopy(),
    			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)
  4. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      optional IngressBackend backend = 2;
    }
    
    // HTTPIngressRuleValue is a list of http selectors pointing to backends.
    // In the example: http://<host>/<path>?<searchpart> -> backend where
    // where parts of the url correspond to RFC 3986, this resource will be used
    // to match against everything after the last '/' and before the first '?'
    // or '#'.
    message HTTPIngressRuleValue {
      // paths is a collection of paths that map requests to backends.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      optional IngressBackend backend = 2;
    }
    
    // HTTPIngressRuleValue is a list of http selectors pointing to backends.
    // In the example: http://<host>/<path>?<searchpart> -> backend where
    // where parts of the url correspond to RFC 3986, this resource will be used
    // to match against everything after the last '/' and before the first '?'
    // or '#'.
    message HTTPIngressRuleValue {
      // paths is a collection of paths that map requests to backends.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation.go

    	}
    	return allErrs
    }
    
    func validateHTTPIngressRuleValue(httpIngressRuleValue *networking.HTTPIngressRuleValue, fldPath *field.Path, opts IngressValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(httpIngressRuleValue.Paths) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("paths"), ""))
    	}
    	for i, path := range httpIngressRuleValue.Paths {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    }
    
    func (HTTPIngressPath) SwaggerDoc() map[string]string {
    	return map_HTTPIngressPath
    }
    
    var map_HTTPIngressRuleValue = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// 2. Consider adding fields for ingress-type specific global options
    	// usable by a loadbalancer, like http keep-alive.
    
    	// +optional
    	HTTP *HTTPIngressRuleValue `json:"http,omitempty" protobuf:"bytes,1,opt,name=http"`
    }
    
    // HTTPIngressRuleValue is a list of http selectors pointing to backends.
    // In the example: http://<host>/<path>?<searchpart> -> backend where
    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/networking/types.go

    	// +optional
    	HTTP *HTTPIngressRuleValue
    }
    
    // HTTPIngressRuleValue is a list of http selectors pointing to backends.
    // In the example: http://<host>/<path>?<searchpart> -> backend where
    // where parts of the url correspond to RFC 3986, this resource will be used
    // to match against everything after the last '/' and before the first '?'
    // or '#'.
    type HTTPIngressRuleValue struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  10. pkg/registry/networking/ingress/storage/storage_test.go

    	rules := []networking.IngressRule{}
    	for host, pathMap := range hostRules {
    		rules = append(rules, networking.IngressRule{
    			Host: host,
    			IngressRuleValue: networking.IngressRuleValue{
    				HTTP: &networking.HTTPIngressRuleValue{
    					Paths: toHTTPIngressPaths(pathMap),
    				},
    			},
    		})
    	}
    	return rules
    }
    
    func newIngress(pathMap map[string]string) *networking.Ingress {
    	return &networking.Ingress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 09:01:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top