Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for ingressclasses (0.31 sec)

  1. pkg/apis/networking/validation/validation_test.go

    		return func(ingressClass *networking.IngressClass) {
    			ingressClass.Spec.Parameters = params
    		}
    	}
    
    	testCases := map[string]struct {
    		ingressClass *networking.IngressClass
    		expectedErrs field.ErrorList
    	}{
    		"valid name, valid controller": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar"),
    			expectedErrs: field.ErrorList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/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: Wed Nov 02 23:13:31 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/conversion.go

    			return false
    		case meshconfig.MeshConfig_STRICT:
    			return class == mesh.IngressClass
    		case meshconfig.MeshConfig_DEFAULT:
    			return class == mesh.IngressClass
    		default:
    			log.Warnf("invalid ingress synchronization mode: %v", mesh.IngressControllerMode)
    			return false
    		}
    	} else if ingressClass != nil {
    		return ingressClass.Spec.Controller == IstioIngressController
    	} else {
    		switch mesh.IngressControllerMode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/config/mesh/kubemesh/watcher_test.go

    	extraCmName := "extra"
    
    	cmCore := makeConfigMap("1", map[string]string{
    		key: "ingressClass: core",
    	})
    	cmUser := makeConfigMapWithName(extraCmName, "1", map[string]string{
    		key: "ingressClass: user",
    	})
    	cmUserinvalid := makeConfigMapWithName(extraCmName, "1", map[string]string{
    		key: "ingressClass: 1",
    	})
    	setup := func(t test.Failer) (corev1.ConfigMapInterface, mesh.Watcher) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/zz_generated.prerelease-lifecycle.go

    func (in *IngressClass) APILifecycleDeprecated() (major, minor int) {
    	return 1, 19
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *IngressClass) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. pkg/apis/networking/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.IngressClass)(nil), (*networking.IngressClass)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_IngressClass_To_networking_IngressClass(a.(*v1.IngressClass), b.(*networking.IngressClass), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.IngressClass)(nil), (*v1.IngressClass)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1.IngressClass.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 490 bytes
    - Viewed (0)
Back to top