Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for IngressClass (0.2 sec)

  1. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // +optional
      optional k8s.io.api.core.v1.TypedLocalObjectReference resource = 3;
    }
    
    // IngressClass represents the class of the Ingress, referenced by the Ingress
    // Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be
    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // +optional
      optional .k8s.io.api.core.v1.TypedLocalObjectReference resource = 3;
    }
    
    // IngressClass represents the class of the Ingress, referenced by the Ingress
    // Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be
    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pkg/config/schema/gvk/resources.gen.go

    	Ingress                        = config.GroupVersionKind{Group: "networking.k8s.io", Version: "v1", Kind: "Ingress"}
    	IngressClass                   = config.GroupVersionKind{Group: "networking.k8s.io", Version: "v1", Kind: "IngressClass"}
    	KubernetesGateway              = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1beta1", Kind: "Gateway"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/ingress_test.go

    			ingressUpdateCases := []struct {
    				name         string
    				ingressClass string
    				path         string
    				call         echo.CallOptions
    			}{
    				// Ensure we get a 200 initially
    				{
    					name:         "initial state",
    					ingressClass: "istio-test",
    					path:         "/update-test",
    					call: echo.CallOptions{
    						Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // IngressClass represents the class of the Ingress, referenced by the Ingress
    // Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be
    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/generated.proto

      // +optional
      optional .k8s.io.api.core.v1.TypedLocalObjectReference resource = 3;
    }
    
    // IngressClass represents the class of the Ingress, referenced by the Ingress
    // Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be
    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/controller.go

    // instead of the ingress labels.
    
    // Follows mesh.IngressControllerMode setting to enable - OFF|STRICT|DEFAULT.
    // STRICT requires "kubernetes.io/ingress.class" == mesh.IngressClass
    // DEFAULT allows Ingress without explicit class.
    
    // In 1.1:
    // - K8S_INGRESS_NS - namespace of the Gateway that will act as ingress.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      optional k8s.io.api.core.v1.TypedLocalObjectReference resource = 3;
    }
    
    // IngressClass represents the class of the Ingress, referenced by the Ingress
    // Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be
    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation.go

    // ValidateIngressClassName validates that the given name can be used as an
    // IngressClass name.
    var ValidateIngressClassName = apimachineryvalidation.NameIsDNSSubdomain
    
    // ValidateIngressClass ensures that IngressClass resources are valid.
    func ValidateIngressClass(ingressClass *networking.IngressClass) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMeta(&ingressClass.ObjectMeta, false, ValidateIngressClassName, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. pkg/config/schema/collections/collections.gen.go

    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	IngressClass = resource.Builder{
    		Identifier:    "IngressClass",
    		Group:         "networking.k8s.io",
    		Kind:          "IngressClass",
    		Plural:        "ingressclasses",
    		Version:       "v1",
    		Proto:         "k8s.io.api.networking.v1.IngressClassSpec",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top