Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for defaultbackend (0.56 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1.Ingress.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      defaultBackend:
        resource:
          apiGroup: apiGroupValue
          kind: kindValue
          name: nameValue
        service:
          name: nameValue
          port:
            name: nameValue
            number: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1.Ingress.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "ingressClassName": "ingressClassNameValue",
        "defaultBackend": {
          "service": {
            "name": "nameValue",
            "port": {
              "name": "nameValue",
              "number": 2
            }
          },
          "resource": {
            "apiGroup": "apiGroupValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/networking/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.DefaultBackend == nil {
    				m.DefaultBackend = &IngressBackend{}
    			}
    			if err := m.DefaultBackend.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 2:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

            "properties": {
              "defaultBackend": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressBackend"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    			CreationTimestamp: metav1.Time{Time: time.Now().Add(time.Duration(-10 * 365 * 24 * time.Hour))},
    		},
    		Spec: networking.IngressSpec{
    			IngressClassName: utilpointer.StringPtr("foo"),
    			DefaultBackend: &networking.IngressBackend{
    				Service: &networking.IngressServiceBackend{
    					Name: "default-backend",
    					Port: networking.ServiceBackendPort{
    						Name:   "default-backend",
    						Number: 80,
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "properties": {
            "defaultBackend": {
              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top