Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for doExecute (0.53 sec)

  1. pkg/apis/core/types.go

    	Value string
    	// Required. The effect of the taint on pods
    	// that do not tolerate the taint.
    	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    	Effect TaintEffect
    	// TimeAdded represents the time at which the taint was added.
    	// It is only written for NoExecute taints.
    	// +optional
    	TimeAdded *metav1.Time
    }
    
    // TaintEffect defines the effects of Taint
    type TaintEffect string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
      // Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
      optional string effect = 3;
    
      // TimeAdded represents the time at which the taint was added.
      // It is only written for NoExecute taints.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"effect":    "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
    	"timeAdded": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.",
    }
    
    func (Taint) SwaggerDoc() map[string]string {
    	return map_Taint
    }
    
    var map_Toleration = 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)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// that do not tolerate the taint.
    	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    	Effect TaintEffect `json:"effect" protobuf:"bytes,3,opt,name=effect,casttype=TaintEffect"`
    	// TimeAdded represents the time at which the taint was added.
    	// It is only written for NoExecute taints.
    	// +optional
    	TimeAdded *metav1.Time `json:"timeAdded,omitempty" protobuf:"bytes,4,opt,name=timeAdded"`
    }
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
      // Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
      optional string effect = 3;
    
      // TimeAdded represents the time at which the taint was added.
      // It is only written for NoExecute taints.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

            - effect: NoSchedule
              operator: Exists
            # Mark the pod as a critical add-on for rescheduling.
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          serviceAccountName: calico-node
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

      - PreemptionByKubeScheduler (Pod preempted by kube-scheduler)
      - DeletionByTaintManager (Pod deleted by taint manager due to NoExecute taint)
      - EvictionByEvictionAPI (Pod evicted by Eviction API)
      - DeletionByPodGC (an orphaned Pod deleted by PodGC) ([#110959](https://github.com/kubernetes/kubernetes/pull/110959), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.26.md

    - Fixed code to ensure that pods running on nodes tainted with `NoExecute` continue to run when the `PodDisruptionConditions` feature gate is enabled. ([#112518](https://github.com/kubernetes/kubernetes/pull/112518), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "effect": {
                "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
                "type": "string"
              },
              "key": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    - Kubeadm: fixed the bug that `kubeadm certs generate-csr` command does not remove duplicated SANs ([#107982](https://github.com/kubernetes/kubernetes/pull/107982), [@SataQiu](https://github.com/SataQiu))
    - Kubelet now checks "NoExecute" taint/toleration before accepting pods, except for static pods. ([#101218](https://github.com/kubernetes/kubernetes/pull/101218), [@gjkim42](https://github.com/gjkim42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top