2019-01-12 04:58:27 +00:00
/ *
Copyright 2015 The Kubernetes Authors .
Licensed under the Apache License , Version 2.0 ( the "License" ) ;
you may not use this file except in compliance with the License .
You may obtain a copy of the License at
http : //www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing , software
distributed under the License is distributed on an "AS IS" BASIS ,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
See the License for the specific language governing permissions and
limitations under the License .
* /
package drain
import (
"errors"
"fmt"
"math"
"time"
"github.com/spf13/cobra"
corev1 "k8s.io/api/core/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
2019-04-07 17:07:55 +00:00
"k8s.io/apimachinery/pkg/runtime/schema"
2019-01-12 04:58:27 +00:00
utilerrors "k8s.io/apimachinery/pkg/util/errors"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/cli-runtime/pkg/genericclioptions"
2019-04-07 17:07:55 +00:00
"k8s.io/cli-runtime/pkg/printers"
"k8s.io/cli-runtime/pkg/resource"
2019-01-12 04:58:27 +00:00
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
2019-04-07 17:07:55 +00:00
"k8s.io/kubernetes/pkg/kubectl/drain"
2019-01-12 04:58:27 +00:00
"k8s.io/kubernetes/pkg/kubectl/scheme"
"k8s.io/kubernetes/pkg/kubectl/util/i18n"
"k8s.io/kubernetes/pkg/kubectl/util/templates"
)
2019-04-07 17:07:55 +00:00
type DrainCmdOptions struct {
2019-01-12 04:58:27 +00:00
PrintFlags * genericclioptions . PrintFlags
ToPrinter func ( string ) ( printers . ResourcePrinterFunc , error )
2019-04-07 17:07:55 +00:00
Namespace string
2019-01-12 04:58:27 +00:00
2019-04-07 17:07:55 +00:00
drainer * drain . Helper
nodeInfos [ ] * resource . Info
2019-01-12 04:58:27 +00:00
2019-04-07 17:07:55 +00:00
genericclioptions . IOStreams
2019-01-12 04:58:27 +00:00
}
var (
2019-04-07 17:07:55 +00:00
cordonLong = templates . LongDesc ( i18n . T ( `
2019-01-12 04:58:27 +00:00
Mark node as unschedulable . ` ) )
2019-04-07 17:07:55 +00:00
cordonExample = templates . Examples ( i18n . T ( `
2019-01-12 04:58:27 +00:00
# Mark node "foo" as unschedulable .
kubectl cordon foo ` ) )
)
func NewCmdCordon ( f cmdutil . Factory , ioStreams genericclioptions . IOStreams ) * cobra . Command {
2019-04-07 17:07:55 +00:00
o := NewDrainCmdOptions ( f , ioStreams )
2019-01-12 04:58:27 +00:00
cmd := & cobra . Command {
Use : "cordon NODE" ,
DisableFlagsInUseLine : true ,
Short : i18n . T ( "Mark node as unschedulable" ) ,
2019-04-07 17:07:55 +00:00
Long : cordonLong ,
Example : cordonExample ,
2019-01-12 04:58:27 +00:00
Run : func ( cmd * cobra . Command , args [ ] string ) {
2019-04-07 17:07:55 +00:00
cmdutil . CheckErr ( o . Complete ( f , cmd , args ) )
cmdutil . CheckErr ( o . RunCordonOrUncordon ( true ) )
2019-01-12 04:58:27 +00:00
} ,
}
2019-04-07 17:07:55 +00:00
cmd . Flags ( ) . StringVarP ( & o . drainer . Selector , "selector" , "l" , o . drainer . Selector , "Selector (label query) to filter on" )
2019-01-12 04:58:27 +00:00
cmdutil . AddDryRunFlag ( cmd )
return cmd
}
var (
2019-04-07 17:07:55 +00:00
uncordonLong = templates . LongDesc ( i18n . T ( `
2019-01-12 04:58:27 +00:00
Mark node as schedulable . ` ) )
2019-04-07 17:07:55 +00:00
uncordonExample = templates . Examples ( i18n . T ( `
2019-01-12 04:58:27 +00:00
# Mark node "foo" as schedulable .
$ kubectl uncordon foo ` ) )
)
func NewCmdUncordon ( f cmdutil . Factory , ioStreams genericclioptions . IOStreams ) * cobra . Command {
2019-04-07 17:07:55 +00:00
o := NewDrainCmdOptions ( f , ioStreams )
2019-01-12 04:58:27 +00:00
cmd := & cobra . Command {
Use : "uncordon NODE" ,
DisableFlagsInUseLine : true ,
Short : i18n . T ( "Mark node as schedulable" ) ,
2019-04-07 17:07:55 +00:00
Long : uncordonLong ,
Example : uncordonExample ,
2019-01-12 04:58:27 +00:00
Run : func ( cmd * cobra . Command , args [ ] string ) {
2019-04-07 17:07:55 +00:00
cmdutil . CheckErr ( o . Complete ( f , cmd , args ) )
cmdutil . CheckErr ( o . RunCordonOrUncordon ( false ) )
2019-01-12 04:58:27 +00:00
} ,
}
2019-04-07 17:07:55 +00:00
cmd . Flags ( ) . StringVarP ( & o . drainer . Selector , "selector" , "l" , o . drainer . Selector , "Selector (label query) to filter on" )
2019-01-12 04:58:27 +00:00
cmdutil . AddDryRunFlag ( cmd )
return cmd
}
var (
2019-04-07 17:07:55 +00:00
drainLong = templates . LongDesc ( i18n . T ( `
2019-01-12 04:58:27 +00:00
Drain node in preparation for maintenance .
The given node will be marked unschedulable to prevent new pods from arriving .
2019-04-07 17:07:55 +00:00
' drain ' evicts the pods if the APIServer supports
2019-01-12 04:58:27 +00:00
[ eviction ] ( http : //kubernetes.io/docs/admin/disruptions/). Otherwise, it will use normal
DELETE to delete the pods .
The ' drain ' evicts or deletes all pods except mirror pods ( which cannot be deleted through
the API server ) . If there are DaemonSet - managed pods , drain will not proceed
without -- ignore - daemonsets , and regardless it will not delete any
DaemonSet - managed pods , because those pods would be immediately replaced by the
DaemonSet controller , which ignores unschedulable markings . If there are any
pods that are neither mirror pods nor managed by ReplicationController ,
ReplicaSet , DaemonSet , StatefulSet or Job , then drain will not delete any pods unless you
use -- force . -- force will also allow deletion to proceed if the managing resource of one
or more pods is missing .
' drain ' waits for graceful termination . You should not operate on the machine until
the command completes .
When you are ready to put the node back into service , use kubectl uncordon , which
will make the node schedulable again .
! [ Workflow ] ( http : //kubernetes.io/images/docs/kubectl_drain.svg)`))
2019-04-07 17:07:55 +00:00
drainExample = templates . Examples ( i18n . T ( `
2019-01-12 04:58:27 +00:00
# Drain node "foo" , even if there are pods not managed by a ReplicationController , ReplicaSet , Job , DaemonSet or StatefulSet on it .
$ kubectl drain foo -- force
# As above , but abort if there are pods not managed by a ReplicationController , ReplicaSet , Job , DaemonSet or StatefulSet , and use a grace period of 15 minutes .
$ kubectl drain foo -- grace - period = 900 ` ) )
)
2019-04-07 17:07:55 +00:00
func NewDrainCmdOptions ( f cmdutil . Factory , ioStreams genericclioptions . IOStreams ) * DrainCmdOptions {
return & DrainCmdOptions {
2019-01-12 04:58:27 +00:00
PrintFlags : genericclioptions . NewPrintFlags ( "drained" ) . WithTypeSetter ( scheme . Scheme ) ,
2019-04-07 17:07:55 +00:00
IOStreams : ioStreams ,
drainer : & drain . Helper {
GracePeriodSeconds : - 1 ,
ErrOut : ioStreams . ErrOut ,
} ,
2019-01-12 04:58:27 +00:00
}
}
func NewCmdDrain ( f cmdutil . Factory , ioStreams genericclioptions . IOStreams ) * cobra . Command {
2019-04-07 17:07:55 +00:00
o := NewDrainCmdOptions ( f , ioStreams )
2019-01-12 04:58:27 +00:00
cmd := & cobra . Command {
Use : "drain NODE" ,
DisableFlagsInUseLine : true ,
Short : i18n . T ( "Drain node in preparation for maintenance" ) ,
2019-04-07 17:07:55 +00:00
Long : drainLong ,
Example : drainExample ,
2019-01-12 04:58:27 +00:00
Run : func ( cmd * cobra . Command , args [ ] string ) {
2019-04-07 17:07:55 +00:00
cmdutil . CheckErr ( o . Complete ( f , cmd , args ) )
cmdutil . CheckErr ( o . RunDrain ( ) )
2019-01-12 04:58:27 +00:00
} ,
}
2019-04-07 17:07:55 +00:00
cmd . Flags ( ) . BoolVar ( & o . drainer . Force , "force" , o . drainer . Force , "Continue even if there are pods not managed by a ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet." )
cmd . Flags ( ) . BoolVar ( & o . drainer . IgnoreAllDaemonSets , "ignore-daemonsets" , o . drainer . IgnoreAllDaemonSets , "Ignore DaemonSet-managed pods." )
cmd . Flags ( ) . BoolVar ( & o . drainer . DeleteLocalData , "delete-local-data" , o . drainer . DeleteLocalData , "Continue even if there are pods using emptyDir (local data that will be deleted when the node is drained)." )
cmd . Flags ( ) . IntVar ( & o . drainer . GracePeriodSeconds , "grace-period" , o . drainer . GracePeriodSeconds , "Period of time in seconds given to each pod to terminate gracefully. If negative, the default value specified in the pod will be used." )
cmd . Flags ( ) . DurationVar ( & o . drainer . Timeout , "timeout" , o . drainer . Timeout , "The length of time to wait before giving up, zero means infinite" )
cmd . Flags ( ) . StringVarP ( & o . drainer . Selector , "selector" , "l" , o . drainer . Selector , "Selector (label query) to filter on" )
cmd . Flags ( ) . StringVarP ( & o . drainer . PodSelector , "pod-selector" , "" , o . drainer . PodSelector , "Label selector to filter pods on the node" )
2019-01-12 04:58:27 +00:00
cmdutil . AddDryRunFlag ( cmd )
return cmd
}
// Complete populates some fields from the factory, grabs command line
// arguments and looks up the node using Builder
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) Complete ( f cmdutil . Factory , cmd * cobra . Command , args [ ] string ) error {
2019-01-12 04:58:27 +00:00
var err error
if len ( args ) == 0 && ! cmd . Flags ( ) . Changed ( "selector" ) {
return cmdutil . UsageErrorf ( cmd , fmt . Sprintf ( "USAGE: %s [flags]" , cmd . Use ) )
}
2019-04-07 17:07:55 +00:00
if len ( args ) > 0 && len ( o . drainer . Selector ) > 0 {
2019-01-12 04:58:27 +00:00
return cmdutil . UsageErrorf ( cmd , "error: cannot specify both a node name and a --selector option" )
}
2019-04-07 17:07:55 +00:00
o . drainer . DryRun = cmdutil . GetDryRunFlag ( cmd )
2019-01-12 04:58:27 +00:00
2019-04-07 17:07:55 +00:00
if o . drainer . Client , err = f . KubernetesClientSet ( ) ; err != nil {
2019-01-12 04:58:27 +00:00
return err
}
2019-04-07 17:07:55 +00:00
if len ( o . drainer . PodSelector ) > 0 {
if _ , err := labels . Parse ( o . drainer . PodSelector ) ; err != nil {
2019-01-12 04:58:27 +00:00
return errors . New ( "--pod-selector=<pod_selector> must be a valid label selector" )
}
}
o . nodeInfos = [ ] * resource . Info { }
o . Namespace , _ , err = f . ToRawKubeConfigLoader ( ) . Namespace ( )
if err != nil {
return err
}
o . ToPrinter = func ( operation string ) ( printers . ResourcePrinterFunc , error ) {
o . PrintFlags . NamePrintFlags . Operation = operation
2019-04-07 17:07:55 +00:00
if o . drainer . DryRun {
2019-01-12 04:58:27 +00:00
o . PrintFlags . Complete ( "%s (dry run)" )
}
printer , err := o . PrintFlags . ToPrinter ( )
if err != nil {
return nil , err
}
return printer . PrintObj , nil
}
builder := f . NewBuilder ( ) .
WithScheme ( scheme . Scheme , scheme . Scheme . PrioritizedVersionsAllGroups ( ) ... ) .
NamespaceParam ( o . Namespace ) . DefaultNamespace ( ) .
ResourceNames ( "nodes" , args ... ) .
SingleResourceType ( ) .
Flatten ( )
2019-04-07 17:07:55 +00:00
if len ( o . drainer . Selector ) > 0 {
builder = builder . LabelSelectorParam ( o . drainer . Selector ) .
2019-01-12 04:58:27 +00:00
ResourceTypes ( "nodes" )
}
r := builder . Do ( )
if err = r . Err ( ) ; err != nil {
return err
}
return r . Visit ( func ( info * resource . Info , err error ) error {
if err != nil {
return err
}
if info . Mapping . Resource . GroupResource ( ) != ( schema . GroupResource { Group : "" , Resource : "nodes" } ) {
return fmt . Errorf ( "error: expected resource of type node, got %q" , info . Mapping . Resource )
}
o . nodeInfos = append ( o . nodeInfos , info )
return nil
} )
}
// RunDrain runs the 'drain' command
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) RunDrain ( ) error {
2019-01-12 04:58:27 +00:00
if err := o . RunCordonOrUncordon ( true ) ; err != nil {
return err
}
printObj , err := o . ToPrinter ( "drained" )
if err != nil {
return err
}
drainedNodes := sets . NewString ( )
var fatal error
for _ , info := range o . nodeInfos {
var err error
2019-04-07 17:07:55 +00:00
if ! o . drainer . DryRun {
2019-01-12 04:58:27 +00:00
err = o . deleteOrEvictPodsSimple ( info )
}
2019-04-07 17:07:55 +00:00
if err == nil || o . drainer . DryRun {
2019-01-12 04:58:27 +00:00
drainedNodes . Insert ( info . Name )
printObj ( info . Object , o . Out )
} else {
fmt . Fprintf ( o . ErrOut , "error: unable to drain node %q, aborting command...\n\n" , info . Name )
remainingNodes := [ ] string { }
fatal = err
for _ , remainingInfo := range o . nodeInfos {
if drainedNodes . Has ( remainingInfo . Name ) {
continue
}
remainingNodes = append ( remainingNodes , remainingInfo . Name )
}
if len ( remainingNodes ) > 0 {
fmt . Fprintf ( o . ErrOut , "There are pending nodes to be drained:\n" )
for _ , nodeName := range remainingNodes {
fmt . Fprintf ( o . ErrOut , " %s\n" , nodeName )
}
}
break
}
}
return fatal
}
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) deleteOrEvictPodsSimple ( nodeInfo * resource . Info ) error {
list , errs := o . drainer . GetPodsForDeletion ( nodeInfo . Name )
if errs != nil {
return utilerrors . NewAggregate ( errs )
2019-01-12 04:58:27 +00:00
}
2019-04-07 17:07:55 +00:00
if warnings := list . Warnings ( ) ; warnings != "" {
fmt . Fprintf ( o . ErrOut , "WARNING: %s\n" , warnings )
2019-01-12 04:58:27 +00:00
}
2019-04-07 17:07:55 +00:00
if err := o . deleteOrEvictPods ( list . Pods ( ) ) ; err != nil {
pendingList , newErrs := o . drainer . GetPodsForDeletion ( nodeInfo . Name )
2019-01-12 04:58:27 +00:00
2019-04-07 17:07:55 +00:00
fmt . Fprintf ( o . ErrOut , "There are pending pods in node %q when an error occurred: %v\n" , nodeInfo . Name , err )
for _ , pendingPod := range pendingList . Pods ( ) {
fmt . Fprintf ( o . ErrOut , "%s/%s\n" , "pod" , pendingPod . Name )
2019-01-12 04:58:27 +00:00
}
2019-04-07 17:07:55 +00:00
if newErrs != nil {
fmt . Fprintf ( o . ErrOut , "following errors also occurred:\n%s" , utilerrors . NewAggregate ( newErrs ) )
2019-01-12 04:58:27 +00:00
}
2019-04-07 17:07:55 +00:00
return err
2019-01-12 04:58:27 +00:00
}
2019-04-07 17:07:55 +00:00
return nil
2019-01-12 04:58:27 +00:00
}
// deleteOrEvictPods deletes or evicts the pods on the api server
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) deleteOrEvictPods ( pods [ ] corev1 . Pod ) error {
2019-01-12 04:58:27 +00:00
if len ( pods ) == 0 {
return nil
}
2019-04-07 17:07:55 +00:00
policyGroupVersion , err := drain . CheckEvictionSupport ( o . drainer . Client )
2019-01-12 04:58:27 +00:00
if err != nil {
return err
}
getPodFn := func ( namespace , name string ) ( * corev1 . Pod , error ) {
2019-04-07 17:07:55 +00:00
return o . drainer . Client . CoreV1 ( ) . Pods ( namespace ) . Get ( name , metav1 . GetOptions { } )
2019-01-12 04:58:27 +00:00
}
if len ( policyGroupVersion ) > 0 {
return o . evictPods ( pods , policyGroupVersion , getPodFn )
} else {
return o . deletePods ( pods , getPodFn )
}
}
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) evictPods ( pods [ ] corev1 . Pod , policyGroupVersion string , getPodFn func ( namespace , name string ) ( * corev1 . Pod , error ) ) error {
2019-01-12 04:58:27 +00:00
returnCh := make ( chan error , 1 )
for _ , pod := range pods {
go func ( pod corev1 . Pod , returnCh chan error ) {
for {
2019-04-07 17:07:55 +00:00
fmt . Fprintf ( o . Out , "evicting pod %q\n" , pod . Name )
err := o . drainer . EvictPod ( pod , policyGroupVersion )
2019-01-12 04:58:27 +00:00
if err == nil {
break
} else if apierrors . IsNotFound ( err ) {
returnCh <- nil
return
} else if apierrors . IsTooManyRequests ( err ) {
fmt . Fprintf ( o . ErrOut , "error when evicting pod %q (will retry after 5s): %v\n" , pod . Name , err )
time . Sleep ( 5 * time . Second )
} else {
returnCh <- fmt . Errorf ( "error when evicting pod %q: %v" , pod . Name , err )
return
}
}
2019-04-07 17:07:55 +00:00
_ , err := o . waitForDelete ( [ ] corev1 . Pod { pod } , 1 * time . Second , time . Duration ( math . MaxInt64 ) , true , getPodFn )
2019-01-12 04:58:27 +00:00
if err == nil {
returnCh <- nil
} else {
returnCh <- fmt . Errorf ( "error when waiting for pod %q terminating: %v" , pod . Name , err )
}
} ( pod , returnCh )
}
doneCount := 0
var errors [ ] error
// 0 timeout means infinite, we use MaxInt64 to represent it.
var globalTimeout time . Duration
2019-04-07 17:07:55 +00:00
if o . drainer . Timeout == 0 {
2019-01-12 04:58:27 +00:00
globalTimeout = time . Duration ( math . MaxInt64 )
} else {
2019-04-07 17:07:55 +00:00
globalTimeout = o . drainer . Timeout
2019-01-12 04:58:27 +00:00
}
globalTimeoutCh := time . After ( globalTimeout )
numPods := len ( pods )
for doneCount < numPods {
select {
case err := <- returnCh :
doneCount ++
if err != nil {
errors = append ( errors , err )
}
case <- globalTimeoutCh :
2019-04-07 17:07:55 +00:00
return fmt . Errorf ( "drain did not complete within %v" , globalTimeout )
2019-01-12 04:58:27 +00:00
}
}
return utilerrors . NewAggregate ( errors )
}
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) deletePods ( pods [ ] corev1 . Pod , getPodFn func ( namespace , name string ) ( * corev1 . Pod , error ) ) error {
2019-01-12 04:58:27 +00:00
// 0 timeout means infinite, we use MaxInt64 to represent it.
var globalTimeout time . Duration
2019-04-07 17:07:55 +00:00
if o . drainer . Timeout == 0 {
2019-01-12 04:58:27 +00:00
globalTimeout = time . Duration ( math . MaxInt64 )
} else {
2019-04-07 17:07:55 +00:00
globalTimeout = o . drainer . Timeout
2019-01-12 04:58:27 +00:00
}
for _ , pod := range pods {
2019-04-07 17:07:55 +00:00
err := o . drainer . DeletePod ( pod )
2019-01-12 04:58:27 +00:00
if err != nil && ! apierrors . IsNotFound ( err ) {
return err
}
}
_ , err := o . waitForDelete ( pods , 1 * time . Second , globalTimeout , false , getPodFn )
return err
}
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) waitForDelete ( pods [ ] corev1 . Pod , interval , timeout time . Duration , usingEviction bool , getPodFn func ( string , string ) ( * corev1 . Pod , error ) ) ( [ ] corev1 . Pod , error ) {
2019-01-12 04:58:27 +00:00
var verbStr string
if usingEviction {
verbStr = "evicted"
} else {
verbStr = "deleted"
}
printObj , err := o . ToPrinter ( verbStr )
if err != nil {
return pods , err
}
err = wait . PollImmediate ( interval , timeout , func ( ) ( bool , error ) {
pendingPods := [ ] corev1 . Pod { }
for i , pod := range pods {
p , err := getPodFn ( pod . Namespace , pod . Name )
if apierrors . IsNotFound ( err ) || ( p != nil && p . ObjectMeta . UID != pod . ObjectMeta . UID ) {
printObj ( & pod , o . Out )
continue
} else if err != nil {
return false , err
} else {
pendingPods = append ( pendingPods , pods [ i ] )
}
}
pods = pendingPods
if len ( pendingPods ) > 0 {
return false , nil
}
return true , nil
} )
return pods , err
}
// RunCordonOrUncordon runs either Cordon or Uncordon. The desired value for
// "Unschedulable" is passed as the first arg.
2019-04-07 17:07:55 +00:00
func ( o * DrainCmdOptions ) RunCordonOrUncordon ( desired bool ) error {
2019-01-12 04:58:27 +00:00
cordonOrUncordon := "cordon"
if ! desired {
cordonOrUncordon = "un" + cordonOrUncordon
}
for _ , nodeInfo := range o . nodeInfos {
2019-04-07 17:07:55 +00:00
printError := func ( err error ) {
fmt . Fprintf ( o . ErrOut , "error: unable to %s node %q: %v\n" , cordonOrUncordon , nodeInfo . Name , err )
}
gvk := nodeInfo . ResourceMapping ( ) . GroupVersionKind
if gvk . Kind == "Node" {
c , err := drain . NewCordonHelperFromRuntimeObject ( nodeInfo . Object , scheme . Scheme , gvk )
2019-01-12 04:58:27 +00:00
if err != nil {
2019-04-07 17:07:55 +00:00
printError ( err )
2019-01-12 04:58:27 +00:00
continue
}
2019-04-07 17:07:55 +00:00
if updateRequired := c . UpdateIfRequired ( desired ) ; ! updateRequired {
2019-01-12 04:58:27 +00:00
printObj , err := o . ToPrinter ( already ( desired ) )
if err != nil {
fmt . Fprintf ( o . ErrOut , "error: %v\n" , err )
continue
}
printObj ( nodeInfo . Object , o . Out )
} else {
2019-04-07 17:07:55 +00:00
if ! o . drainer . DryRun {
err , patchErr := c . PatchOrReplace ( o . drainer . Client )
if patchErr != nil {
printError ( patchErr )
2019-01-12 04:58:27 +00:00
}
if err != nil {
2019-04-07 17:07:55 +00:00
printError ( err )
2019-01-12 04:58:27 +00:00
continue
}
}
printObj , err := o . ToPrinter ( changed ( desired ) )
if err != nil {
fmt . Fprintf ( o . ErrOut , "%v\n" , err )
continue
}
printObj ( nodeInfo . Object , o . Out )
}
} else {
printObj , err := o . ToPrinter ( "skipped" )
if err != nil {
fmt . Fprintf ( o . ErrOut , "%v\n" , err )
continue
}
printObj ( nodeInfo . Object , o . Out )
}
}
return nil
}
// already() and changed() return suitable strings for {un,}cordoning
func already ( desired bool ) string {
if desired {
return "already cordoned"
}
return "already uncordoned"
}
func changed ( desired bool ) string {
if desired {
return "cordoned"
}
return "uncordoned"
}