Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for matchConditions (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.deepcopy.go

    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"matchConditions":  "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.MatchCondition)(nil), (*admissionregistration.MatchCondition)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_MatchCondition_To_admissionregistration_MatchCondition(a.(*v1alpha1.MatchCondition), b.(*admissionregistration.MatchCondition), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    // matching policy-binding-param tuple. The delegate is then called with the
    // list of tuples.
    //
    // Note: MatchConditions expressions are not evaluated here. The dispatcher delegate
    // is expected to ignore the result of any policies whose match conditions dont pass.
    // This may be possible to refactor so matchconditions are checked here instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.deepcopy.go

    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/zz_generated.deepcopy.go

    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// across the file.
    
    	// owner: @ivelichkovich, @tallclair
    	// alpha: v1.27
    	// beta: v1.28
    	// stable: v1.30
    	// kep: https://kep.k8s.io/3716
    	//
    	// Enables usage of MatchConditions fields to use CEL expressions for matching on admission webhooks
    	AdmissionWebhookMatchConditions featuregate.Feature = "AdmissionWebhookMatchConditions"
    
    	// owner: @jefftree @alexzielenski
    	// alpha: v1.26
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.conversion.go

    	if err := Convert_v1beta1_WebhookConnectionInfo_To_apiserver_WebhookConnectionInfo(&in.ConnectionInfo, &out.ConnectionInfo, s); err != nil {
    		return err
    	}
    	out.MatchConditions = *(*[]apiserver.WebhookMatchCondition)(unsafe.Pointer(&in.MatchConditions))
    	return nil
    }
    
    // Convert_v1beta1_WebhookConfiguration_To_apiserver_WebhookConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    				},
    			},
    		},
    		{
    			name:               "match condition with one compilation error",
    			attr:               aliceAttr,
    			expectedCompileErr: "matchConditions[2].expression: Invalid value: \"('group3' in request.group)\": compilation failed: ERROR: <input>:1:21: undefined field 'group'\n | ('group3' in request.group)\n | ....................^",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/host"
    )
    
    func Test_clusterMatch(t *testing.T) {
    	type args struct {
    		proxy          *model.Proxy
    		cluster        *cluster.Cluster
    		matchCondition *networking.EnvoyFilter_EnvoyConfigObjectMatch
    		operation      networking.EnvoyFilter_Patch_Operation
    		host           host.Name
    	}
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top