Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for admitPod (0.17 sec)

  1. pkg/kubelet/eviction/eviction_manager.go

    	// If the pod is marked as critical and static, and support for critical pod annotations is enabled,
    	// do not evict such pods. Static pods are not re-admitted after evictions.
    	// https://github.com/kubernetes/kubernetes/issues/40573 has more details.
    	if kubelettypes.IsCriticalPod(pod) {
    		klog.ErrorS(nil, "Eviction manager: cannot evict a critical pod", "pod", klog.KObj(pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
      // if the object being admitted is modified by other admission plugins after the initial webhook call.
      // Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
      // Note:
      // * the number of additional invocations is not guaranteed to be exactly one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. plugin/pkg/admission/imagepolicy/admission_test.go

    				t.Errorf("%s: failed to admit with AllowAll policy: %v", tt.test, err)
    				return
    			}
    
    			service.Deny()
    			if err := wh.Validate(context.TODO(), attr, nil); err == nil {
    				t.Errorf("%s: incorrectly admitted with DenyAll policy", tt.test)
    			}
    		})
    	}
    }
    
    type webhookCacheTestCase struct {
    	statusCode         int
    	expectedErr        bool
    	expectedAuthorized bool
    	expectedCached     bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
      // if the object being admitted is modified by other admission plugins after the initial webhook call.
      // Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
      // Note:
      // * the number of additional invocations is not guaranteed to be exactly one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pkg/kubelet/metrics/metrics.go

    	MirrorPodCount = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           MirrorPodCountKey,
    			Help:           "The number of mirror pods the kubelet will try to create (one per admitted static pod)",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// WorkingPodCount tracks the count of pods in each lifecycle phase, whether they are static pods, and whether they are desired, orphaned, or runtime_only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	// WildCard is a special GVK to match all resources.
    	// e.g., If you register `{Resource: "*", ActionType: All}` in EventsToRegister,
    	// all coming clusterEvents will be admitted. Be careful to register it, it will
    	// increase the computing pressure in requeueing unless you really need it.
    	//
    	// Meanwhile, if the coming clusterEvent is a wildcard one, all pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/policy_static.go

    	resources := container.Resources.Requests
    	// In-place pod resize feature makes Container.Resources field mutable for CPU & memory.
    	// AllocatedResources holds the value of Container.Resources.Requests when the pod was admitted.
    	// We should return this value because this is what kubelet agreed to allocate for the container
    	// and the value configured with runtime.
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    		needed = needed - devices.Len()
    		// A pod's resource is not expected to change once admitted by the API server,
    		// so just fail loudly here. We can revisit this part if this no longer holds.
    		if needed != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top