Commit ed28695d authored by Guangya Liu's avatar Guangya Liu

Updated comments for TaintBasedEvictions.

parent 6fac75c8
...@@ -680,11 +680,9 @@ upgrade-target ...@@ -680,11 +680,9 @@ upgrade-target
use-kubernetes-cluster-service use-kubernetes-cluster-service
use-kubernetes-version use-kubernetes-version
use-service-account-credentials use-service-account-credentials
use-taint-based-evictions
user-whitelist user-whitelist
use-service-account-credentials use-service-account-credentials
use-service-account-credentials use-service-account-credentials
use-taint-based-evictions
verb verb
verify-only verify-only
versioned-clientset-package versioned-clientset-package
......
...@@ -34,12 +34,12 @@ const ( ...@@ -34,12 +34,12 @@ const (
// fluentd in not running as a manifest pod with LabelFluentdDsReady. // fluentd in not running as a manifest pod with LabelFluentdDsReady.
LabelFluentdDsReady = "alpha.kubernetes.io/fluentd-ds-ready" LabelFluentdDsReady = "alpha.kubernetes.io/fluentd-ds-ready"
// When the --use-taint-based-evictions flag is enabled, // When feature-gate for TaintBasedEvictions=true flag is enabled,
// TaintNodeNotReady would be automatically added by node controller // TaintNodeNotReady would be automatically added by node controller
// when node is not ready, and removed when node becomes ready. // when node is not ready, and removed when node becomes ready.
TaintNodeNotReady = "node.alpha.kubernetes.io/notReady" TaintNodeNotReady = "node.alpha.kubernetes.io/notReady"
// When the --use-taint-based-evictions flag is enabled, // When feature-gate for TaintBasedEvictions=true flag is enabled,
// TaintNodeUnreachable would be automatically added by node controller // TaintNodeUnreachable would be automatically added by node controller
// when node becomes unreachable (corresponding to NodeReady status ConditionUnknown) // when node becomes unreachable (corresponding to NodeReady status ConditionUnknown)
// and removed when node becomes reachable (NodeReady status ConditionTrue). // and removed when node becomes reachable (NodeReady status ConditionTrue).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment