Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 259 for admission (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	FeatureGate featuregate.FeatureGate
    	// ExtraAdmissionInitializers is called once after all ApplyTo from the options above, to pass the returned
    	// admission plugin initializers to Admission.ApplyTo.
    	ExtraAdmissionInitializers func(c *server.RecommendedConfig) ([]admission.PluginInitializer, error)
    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/generated.proto

      // MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
      // admission webhook name (e.g. imagepolicy.example.com/error=image-blacklisted). AuditAnnotations will be provided by
      // the admission webhook to add additional context to the audit log for this request.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
      // admission webhook name (e.g. imagepolicy.example.com/error=image-blacklisted). AuditAnnotations will be provided by
      // the admission webhook to add additional context to the audit log for this request.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/admission/initializer_test.go

    limitations under the License.
    */
    
    package admission
    
    import (
    	"context"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    )
    
    type doNothingAdmission struct{}
    
    func (doNothingAdmission) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/client-go/kubernetes"
    	listersv1 "k8s.io/client-go/listers/core/v1"
    
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules"
    )
    
    type MatchCriteria interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utiljson "k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/policy/generic"
    	celmetrics "k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/warning"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    	versionedAttrs   map[schema.GroupVersionKind]*admission.VersionedAttributes
    	attr             admission.Attributes
    	objectInterfaces admission.ObjectInterfaces
    }
    
    func (v *versionedAttributeAccessor) VersionedAttribute(gvk schema.GroupVersionKind) (*admission.VersionedAttributes, error) {
    	if val, ok := v.versionedAttrs[gvk]; ok {
    		return val, nil
    	}
    	versionedAttr, err := admission.NewVersionedAttributes(v.attr, gvk, v.objectInterfaces)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admission/v1/types.go

    	// AuditAnnotations is an unstructured key value map set by remote admission controller (e.g. error=image-blacklisted).
    	// MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
    	// admission webhook name (e.g. imagepolicy.example.com/error=image-blacklisted). AuditAnnotations will be provided by
    	// the admission webhook to add additional context to the audit log for this request.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/options/options_test.go

    		},
    		Admission: &kubeoptions.AdmissionOptions{
    			GenericAdmission: &apiserveroptions.AdmissionOptions{
    				RecommendedPluginOrder: s.Admission.GenericAdmission.RecommendedPluginOrder,
    				DefaultOffPlugins:      s.Admission.GenericAdmission.DefaultOffPlugins,
    				EnablePlugins:          []string{"AlwaysDeny"},
    				ConfigFile:             "/admission-control-config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admission/v1/generated.proto

      // MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
      // admission webhook name (e.g. imagepolicy.example.com/error=image-blacklisted). AuditAnnotations will be provided by
      // the admission webhook to add additional context to the audit log for this request.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top