Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for nodecontroller (0.24 sec)

  1. CHANGELOG/CHANGELOG-1.6.md

    ### Taints and Tolerations
    * Add a manager to NodeController that is responsible for removing Pods from Nodes tainted with NoExecute Taints. This feature is beta (as the rest of taints) and enabled by default. It's gated by controller-manager enable-taint-manager flag. ([#40355](https://github.com/kubernetes/kubernetes/pull/40355), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PodSignature_To_core_PodSignature(in *v1.PodSignature, out *core.PodSignature, s conversion.Scope) error {
    	out.PodController = (*metav1.OwnerReference)(unsafe.Pointer(in.PodController))
    	return nil
    }
    
    // Convert_v1_PodSignature_To_core_PodSignature is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    // Exactly one field should be set.
    message PodSignature {
      // Reference to controller whose pods should avoid this node.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.OwnerReference podController = 1;
    }
    
    // PodSpec is a description of a pod.
    message PodSpec {
      // List of volumes that can be mounted by containers belonging to the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_PodSecurityContext
    }
    
    var map_PodSignature = map[string]string{
    	"":              "Describes the class of pods that should avoid this node. Exactly one field should be set.",
    	"podController": "Reference to controller whose pods should avoid this node.",
    }
    
    func (PodSignature) SwaggerDoc() map[string]string {
    	return map_PodSignature
    }
    
    var map_PodSpec = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    // Exactly one field should be set.
    message PodSignature {
      // Reference to controller whose pods should avoid this node.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.OwnerReference podController = 1;
    }
    
    // PodSpec is a description of a pod.
    message PodSpec {
      // List of volumes that can be mounted by containers belonging to the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top