Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for tolerated (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.7.md

    #### PodDisruptionBudget
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, ValidateQualifiedName(*sp.AppProtocol, fldPath.Child("appProtocol"))...)
    	}
    
    	// in the v1 API, targetPorts on headless services were tolerated.
    	// once we have version-specific validation, we can reject this on newer API versions, but until then, we have to tolerate it for compatibility.
    	//
    	// if isHeadlessService {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.16.md

    * For x-kubernetes-list-type=set a scalar or atomic item type is now required, as documented. Persisted, invalid data is tolerated. ([#85385](https://github.com/kubernetes/kubernetes/pull/85385), [@sttts](https://github.com/sttts))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// 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
    // the triple <key,value,effect> using the matching operator <operator>.
    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. common-protos/k8s.io/api/core/v1/generated.proto

      optional string effect = 4;
    
      // TolerationSeconds represents the period of time the toleration (which must be
      // of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
      // it is not set, which means tolerate the taint forever (do not evict). Zero and
      // negative values will be treated as 0 (evict immediately) by the system.
      // +optional
      optional int64 tolerationSeconds = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"tolerationSeconds": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
    }
    
    func (Toleration) SwaggerDoc() 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)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// TaintEffectNoScheduleNoAdmit TaintEffect = "NoScheduleNoAdmit"
    
    	// Evict any already-running pods that do not tolerate the taint.
    	// Currently enforced by NodeController.
    	TaintEffectNoExecute TaintEffect = "NoExecute"
    )
    
    // The pod this Toleration is attached to tolerates any taint that matches
    // the triple <key,value,effect> using the matching operator <operator>.
    type Toleration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      optional string effect = 4;
    
      // TolerationSeconds represents the period of time the toleration (which must be
      // of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
      // it is not set, which means tolerate the taint forever (do not evict). Zero and
      // negative values will be treated as 0 (evict immediately) by the system.
      // +optional
      optional int64 tolerationSeconds = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    * fluentd will tolerate all NoExecute Taints when run in gcp configuration. ([#45715](https://github.com/kubernetes/kubernetes/pull/45715), [@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)
  10. CHANGELOG/CHANGELOG-1.9.md

    * fix device name change issue for azure disk: add remount logic ([#57953](https://github.com/kubernetes/kubernetes/pull/57953), [@andyzhangx](https://github.com/andyzhangx))
    * calico-node addon tolerates all NoExecute and NoSchedule taints by default. ([#57122](https://github.com/kubernetes/kubernetes/pull/57122), [@caseydavenport](https://github.com/caseydavenport))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top