Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for nodecontroller (0.39 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    			podUID:        "pod",
    			nonController: true,
    		},
    		{
    			name: "pod noncontroller",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "pod",
    					Name:       "pod",
    					UID:        "pod",
    				},
    			},
    			setUID:        "set",
    			podUID:        "pod",
    			nonController: true,
    		},
    		{
    			name: "other noncontroller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// feature is not enabled, it is also the frequency that kubelet posts node status to master.
    	// In that case, be cautious when changing the constant, it must work with nodeMonitorGracePeriod
    	// in nodecontroller. There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than nodeStatusUpdateFrequency, where
    	//    N means number of retries allowed for kubelet to post node status. It is pointless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

        *   Extends the gpu_device_plugin e2e_node test to verify that scheduled pods can continue to run even after a device plugin deletion and kubelet restart.
    *   The NodeController no longer supports kubelet 1.2. ([#48996](https://github.com/kubernetes/kubernetes/pull/48996),[ @k82cn](https://github.com/k82cn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// Enforced by Kubelet and the scheduler.
    	// TaintEffectNoScheduleNoAdmit TaintEffect = "NoScheduleNoAdmit"
    
    	// Evict any already-running pods that do not tolerate the taint.
    	// Currently enforced by NodeController.
    	TaintEffectNoExecute TaintEffect = "NoExecute"
    )
    
    // Toleration represents the toleration object that can be attached to a pod.
    // The pod this Toleration is attached to tolerates any taint that matches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    // Exactly one field should be set.
    type PodSignature struct {
    	// Reference to controller whose pods should avoid this node.
    	// +optional
    	PodController *metav1.OwnerReference `json:"podController,omitempty" protobuf:"bytes,1,opt,name=podController"`
    }
    
    // Describe a container image
    type ContainerImage struct {
    	// Names by which this image is known.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/cloud-provider/config/v1alpha1.KubeCloudSharedConfiguration"),
    						},
    					},
    					"NodeController": {
    						SchemaProps: spec.SchemaProps{
    							Description: "NodeController holds configuration for node controller related features.",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PodSignature) DeepCopyInto(out *PodSignature) {
    	*out = *in
    	if in.PodController != nil {
    		in, out := &in.PodController, &out.PodController
    		*out = new(v1.OwnerReference)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PodSignature) DeepCopyInto(out *PodSignature) {
    	*out = *in
    	if in.PodController != nil {
    		in, out := &in.PodController, &out.PodController
    		*out = new(metav1.OwnerReference)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	if avoidPodEntry.PodSignature.PodController == nil {
    		allErrors = append(allErrors, field.Required(fldPath.Child("PodSignature"), ""))
    	} else {
    		if !*(avoidPodEntry.PodSignature.PodController.Controller) {
    			allErrors = append(allErrors,
    				field.Invalid(fldPath.Child("PodSignature").Child("PodController").Child("Controller"),
    					*(avoidPodEntry.PodSignature.PodController.Controller), "must point to a controller"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	// expects to observe the tracking finalizer removed.
    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    	// A store of pods, populated by the podController
    	podStore corelisters.PodLister
    
    	// Jobs that need to be updated
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Orphan deleted pods that still have a Job tracking finalizer to be removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top