Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for doExecute (1.01 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/core/validation/validation.go

    		}
    
    		if toleration.TolerationSeconds != nil && toleration.Effect != core.TaintEffectNoExecute {
    			allErrors = append(allErrors, field.Invalid(idxPath.Child("effect"), toleration.Effect,
    				"effect must be 'NoExecute' when `tolerationSeconds` is set"))
    		}
    
    		// validate toleration operator and value
    		switch toleration.Operator {
    		// empty operator means Equal
    		case core.TolerationOpEqual, "":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top