Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for matchConditions (0.48 sec)

  1. 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)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go

    func (m *MatchCondition) Reset()      { *m = MatchCondition{} }
    func (*MatchCondition) ProtoMessage() {}
    func (*MatchCondition) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2c49182728ae0af5, []int{2}
    }
    func (m *MatchCondition) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *MatchCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 117.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    	if err := Convert_v1alpha1_WebhookConnectionInfo_To_apiserver_WebhookConnectionInfo(&in.ConnectionInfo, &out.ConnectionInfo, s); err != nil {
    		return err
    	}
    	out.MatchConditions = *(*[]apiserver.WebhookMatchCondition)(unsafe.Pointer(&in.MatchConditions))
    	return nil
    }
    
    // Convert_v1alpha1_WebhookConfiguration_To_apiserver_WebhookConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubeapiserver/authorizer/reload.go

    				configuredAuthorizer.Webhook.AuthorizedTTL.Duration,
    				configuredAuthorizer.Webhook.UnauthorizedTTL.Duration,
    				*r.initialConfig.WebhookRetryBackoff,
    				decisionOnError,
    				configuredAuthorizer.Webhook.MatchConditions,
    				configuredAuthorizer.Name,
    				kubeapiserverWebhookMetrics{WebhookMetrics: webhookmetrics.NewWebhookMetrics(), MatcherMetrics: cel.NewMatcherMetrics()},
    			)
    			if err != nil {
    				return nil, nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. 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)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "matchConditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "matchConditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "matchConditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. 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\nThe exact matching logic is (in order):\n  1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n  2. If ALL...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top