Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for admission (0.21 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
      // 'oldObject' - The existing object. The value is null for CREATE requests.
      // 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
      // 'oldObject' - The existing object. The value is null for CREATE requests.
      // 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/server.go

    	storageFactory *serverstorage.DefaultStorageFactory,
    ) (
    	*controlplane.Config,
    	aggregatorapiserver.ServiceResolver,
    	[]admission.PluginInitializer,
    	error,
    ) {
    	// global stuff
    	capabilities.Setup(opts.AllowPrivileged, opts.MaxConnectionBytesPerSec)
    
    	// additional admission initializers
    	kubeAdmissionConfig := &kubeapiserveradmission.Config{
    		CloudConfigFile: opts.CloudProvider.CloudConfigFile,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    var map_MatchResources = map[string]string{
    	"":                     "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "uid": "Kubernetes//Pod/gateway-system/gateway-api-admission-server-85985d48ff-5jcvd",
          "name": "gateway-api-admission-server-85985d48ff-5jcvd",
          "namespace": "gateway-system",
          "trustDomain": "cluster.local",
          "serviceAccount": "default",
          "workloadName": "gateway-api-admission-server",
          "workloadType": "deployment",
          "canonicalName": "gateway-api-admission-server",
          "canonicalRevision": "latest",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    	"k8s.io/apiserver/pkg/endpoints/request"
    	clocktesting "k8s.io/utils/clock/testing"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apiserver/pkg/admission"
    	webhooktesting "k8s.io/apiserver/pkg/admission/plugin/webhook/testing"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    )
    
    // BenchmarkAdmit tests the performance cost of invoking a mutating webhook
    func BenchmarkAdmit(b *testing.B) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    				return errors.New("validating admission failure")
    			},
    			expectedError: "validating admission failure",
    		},
    		{
    			name: "TestPatchWithBothAdmissionRejections",
    			admissionMutation: func(ctx context.Context, updatedObject runtime.Object, currentObject runtime.Object) error {
    				return errors.New("mutating admission failure")
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/topology_hints.go

    // container are created.
    func (m *ManagerImpl) GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	// Garbage collect any stranded device resources before providing TopologyHints
    	m.UpdateAllocatedDevices()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	return nil
    }
    
    func (m *manager) Allocate(p *v1.Pod, c *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(p)
    
    	// Garbage collect any stranded resources before allocating CPUs.
    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  10. pkg/controlplane/apiserver/options/options.go

    	s.Authorization.AddFlags(fss.FlagSet("authorization"))
    	s.APIEnablement.AddFlags(fss.FlagSet("API enablement"))
    	s.EgressSelector.AddFlags(fss.FlagSet("egress selector"))
    	s.Admission.AddFlags(fss.FlagSet("admission"))
    	s.Metrics.AddFlags(fss.FlagSet("metrics"))
    	logsapi.AddFlags(s.Logs, fss.FlagSet("logs"))
    	s.Traces.AddFlags(fss.FlagSet("traces"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top