Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for IngressClass (0.18 sec)

  1. 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)
  2. 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)
  3. pkg/apis/networking/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // 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: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/zz_generated.deepcopy.go

    func (in *IngressClass) DeepCopyInto(out *IngressClass) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressClass.
    func (in *IngressClass) DeepCopy() *IngressClass {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 20K 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. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.GatewayClass, true
    	case *sigsk8siogatewayapiapisv1beta1.HTTPRoute:
    		return gvk.HTTPRoute, true
    	case *k8sioapinetworkingv1.Ingress:
    		return gvk.Ingress, true
    	case *k8sioapinetworkingv1.IngressClass:
    		return gvk.IngressClass, true
    	case *sigsk8siogatewayapiapisv1beta1.Gateway:
    		return gvk.KubernetesGateway, true
    	case *k8sioapicoordinationv1.Lease:
    		return gvk.Lease, true
    	case *istioioapimeshv1alpha1.MeshConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. 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)
  9. pkg/apis/networking/zz_generated.deepcopy.go

    func (in *IngressClass) DeepCopyInto(out *IngressClass) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressClass.
    func (in *IngressClass) DeepCopy() *IngressClass {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. 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)
Back to top