Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for admitPV (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    				}
    				return
    			}
    			if !test.InitContext {
    				t.Errorf("expected webhook duration to not be initialized")
    				return
    			}
    			if wd.MutatingWebhookTracker.GetLatency() != 0 {
    				t.Errorf("expected admit duration to be equal to 0 got %q", wd.MutatingWebhookTracker.GetLatency())
    			}
    			if wd.ValidatingWebhookTracker.GetLatency() < test.ExpectedDurationMax {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission.go

    	leaseResource         = coordapi.Resource("leases")
    	csiNodeResource       = storage.Resource("csinodes")
    	resourceSliceResource = resource.Resource("resourceslices")
    )
    
    // Admit checks the admission policy and triggers corresponding actions
    func (p *Plugin) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    	nodeName, isNode := p.nodeIdentifier.NodeIdentity(a.GetUserInfo())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	return ValidateStructuralWithOptions(fldPath, s, ValidationOptions{
    		// This would widen the schema for CRD if set to true, so first few releases will still
    		// not admit any. But it can still be used by libraries and
    		// declarative validation for native types
    		AllowNestedAdditionalProperties:                   false,
    		AllowNestedXValidations:                           false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    // if the hook cannot be completed. The function may NOT transform the provided
    // object.
    type ValidateObjectFunc func(ctx context.Context, obj runtime.Object) error
    
    // ValidateAllObjectFunc is a "admit everything" instance of ValidateObjectFunc.
    func ValidateAllObjectFunc(ctx context.Context, obj runtime.Object) error {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/admission_test.go

    	}
    	informerFactory.Start(wait.NeverStop)
    
    	testPod := validPod("testPod", 1, api.ResourceRequirements{})
    	err = admissiontesting.WithReinvocationTesting(t, handler).Admit(context.TODO(), admission.NewAttributesRecord(&testPod, nil, api.Kind("Pod").WithVersion("version"), limitRange.Namespace, "testPod", api.Resource("pods").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil), nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    		}
    		c.podsGetter = a.podsGetter
    		c.nodesGetter = a.nodesGetter
    		err := c.Admit(context.TODO(), a.attributes, nil)
    		if (err == nil) != (len(a.err) == 0) {
    			t.Errorf("nodePlugin.Admit() error = %v, expected %v", err, a.err)
    			return
    		}
    		if len(a.err) > 0 && !strings.Contains(err.Error(), a.err) {
    			t.Errorf("nodePlugin.Admit() error = %v, expected %v", err, a.err)
    		}
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. pkg/scheduler/eventhandlers.go

    		if !includeAllFailures {
    			return admissionResults
    		}
    	}
    	return admissionResults
    }
    
    // AdmissionResult describes the reason why Scheduler can't admit the pod.
    // If the reason is a resource fit one, then AdmissionResult.InsufficientResource includes the details.
    type AdmissionResult struct {
    	Name                 string
    	Reason               string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	// list of pods to reject.
    	podsToReject []*v1.Pod
    }
    
    // Admit rejects all pods in the podsToReject list with a matching UID.
    func (a *testPodAdmitHandler) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	for _, podToReject := range a.podsToReject {
    		if podToReject.UID == attrs.Pod.UID {
    			return lifecycle.PodAdmitResult{Admit: false, Reason: "Rejected", Message: "Pod is rejected"}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux.go

    		opts.Annotations = append(opts.Annotations, resOpts.Annotations...)
    		opts.CDIDevices = append(opts.CDIDevices, resOpts.CDIDevices...)
    	}
    	// Allocate should already be called during predicateAdmitHandler.Admit(),
    	// just try to fetch device runtime information from cached state here
    	devOpts, err := cm.deviceManager.GetDeviceRunContainerOptions(pod, container)
    	if err != nil {
    		return nil, err
    	} else if devOpts == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	}
    	if len(nodeName) != 0 {
    		tcPod.Spec.NodeName = nodeName
    	}
    }
    
    func (f mutateObjectUpdateFunc) Handles(operation admission.Operation) bool {
    	return true
    }
    
    func (f mutateObjectUpdateFunc) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	return f(ctx, a.GetObject(), a.GetOldObject())
    }
    
    func TestTransformDecodeErrorEnsuresBadRequestError(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top