Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for defaultbackend (0.2 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/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: Fri May 06 21:25:20 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/registry/networking/ingress/storage/storage_test.go

    	defaultTLS          = []networking.IngressTLS{
    		{Hosts: []string{"foo.bar.com", "*.bar.com"}, SecretName: "foosecret"},
    	}
    	serviceBackend = &networking.IngressServiceBackend{
    		Name: "defaultbackend",
    		Port: networking.ServiceBackendPort{
    			Name:   "",
    			Number: 80,
    		},
    	}
    )
    
    type IngressRuleValues map[string]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 09:01:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/networking/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.IngressClassName != nil {
    		in, out := &in.IngressClassName, &out.IngressClassName
    		*out = new(string)
    		**out = **in
    	}
    	if in.DefaultBackend != nil {
    		in, out := &in.DefaultBackend, &out.DefaultBackend
    		*out = new(IngressBackend)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.TLS != nil {
    		in, out := &in.TLS, &out.TLS
    		*out = make([]IngressTLS, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 20K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"defaultBackend":   "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/apis/networking/types.go

    	// +optional
    	IngressClassName *string
    
    	// 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
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
Back to top