Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for defaultbackend (0.3 sec)

  1. staging/src/k8s.io/api/networking/v1/types.go

    	// defaultBackend is the backend that should handle requests that don't
    	// match any rule. If Rules are not specified, DefaultBackend must be specified.
    	// If DefaultBackend is not set, the handling of requests that do not match any
    	// of the rules will be up to the Ingress controller.
    	// +optional
    	DefaultBackend *IngressBackend `json:"defaultBackend,omitempty" protobuf:"bytes,1,opt,name=defaultBackend"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation.go

    	allErrs := field.ErrorList{}
    	if len(spec.Rules) == 0 && spec.DefaultBackend == nil {
    		errMsg := fmt.Sprintf("either `%s` or `rules` must be specified", "defaultBackend")
    		allErrs = append(allErrs, field.Invalid(fldPath, spec.Rules, errMsg))
    	}
    	if spec.DefaultBackend != nil {
    		allErrs = append(allErrs, validateIngressBackend(spec.DefaultBackend, fldPath.Child("defaultBackend"), opts)...)
    	}
    	if len(spec.Rules) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/generated.proto

      optional string ingressClassName = 4;
    
      // defaultBackend is the backend that should handle requests that don't
      // match any rule. If Rules are not specified, DefaultBackend must be specified.
      // If DefaultBackend is not set, the handling of requests that do not match any
      // of the rules will be up to the Ingress controller.
      // +optional
      optional IngressBackend defaultBackend = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

      optional string ingressClassName = 4;
    
      // defaultBackend is the backend that should handle requests that don't
      // match any rule. If Rules are not specified, DefaultBackend must be specified.
      // If DefaultBackend is not set, the handling of requests that do not match any
      // of the rules will be up to the Ingress controller.
      // +optional
      optional IngressBackend defaultBackend = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top