@@ -38,6 +38,7 @@ import (
38
38
"k8s.io/kubernetes/pkg/api"
39
39
"k8s.io/kubernetes/pkg/apis/policy"
40
40
"k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
41
+ "k8s.io/kubernetes/pkg/controller"
41
42
"k8s.io/kubernetes/pkg/kubectl"
42
43
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
43
44
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
@@ -266,40 +267,38 @@ func (o *DrainOptions) deleteOrEvictPodsSimple() error {
266
267
return err
267
268
}
268
269
269
- func (o * DrainOptions ) getController (sr * api. SerializedReference ) (interface {}, error ) {
270
- switch sr . Reference .Kind {
270
+ func (o * DrainOptions ) getController (namespace string , controllerRef * metav1. OwnerReference ) (interface {}, error ) {
271
+ switch controllerRef .Kind {
271
272
case "ReplicationController" :
272
- return o .client .Core ().ReplicationControllers (sr . Reference . Namespace ).Get (sr . Reference .Name , metav1.GetOptions {})
273
+ return o .client .Core ().ReplicationControllers (namespace ).Get (controllerRef .Name , metav1.GetOptions {})
273
274
case "DaemonSet" :
274
- return o .client .Extensions ().DaemonSets (sr . Reference . Namespace ).Get (sr . Reference .Name , metav1.GetOptions {})
275
+ return o .client .Extensions ().DaemonSets (namespace ).Get (controllerRef .Name , metav1.GetOptions {})
275
276
case "Job" :
276
- return o .client .Batch ().Jobs (sr . Reference . Namespace ).Get (sr . Reference .Name , metav1.GetOptions {})
277
+ return o .client .Batch ().Jobs (namespace ).Get (controllerRef .Name , metav1.GetOptions {})
277
278
case "ReplicaSet" :
278
- return o .client .Extensions ().ReplicaSets (sr . Reference . Namespace ).Get (sr . Reference .Name , metav1.GetOptions {})
279
+ return o .client .Extensions ().ReplicaSets (namespace ).Get (controllerRef .Name , metav1.GetOptions {})
279
280
case "StatefulSet" :
280
- return o .client .Apps ().StatefulSets (sr . Reference . Namespace ).Get (sr . Reference .Name , metav1.GetOptions {})
281
+ return o .client .Apps ().StatefulSets (namespace ).Get (controllerRef .Name , metav1.GetOptions {})
281
282
}
282
- return nil , fmt .Errorf ("Unknown controller kind %q" , sr . Reference .Kind )
283
+ return nil , fmt .Errorf ("Unknown controller kind %q" , controllerRef .Kind )
283
284
}
284
285
285
- func (o * DrainOptions ) getPodCreator (pod api.Pod ) (* api. SerializedReference , error ) {
286
- creatorRef , found := pod . ObjectMeta . Annotations [ api . CreatedByAnnotation ]
287
- if ! found {
286
+ func (o * DrainOptions ) getPodController (pod api.Pod ) (* metav1. OwnerReference , error ) {
287
+ controllerRef := controller . GetControllerOf ( & pod )
288
+ if controllerRef == nil {
288
289
return nil , nil
289
290
}
290
- // Now verify that the specified creator actually exists.
291
- sr := & api.SerializedReference {}
292
- if err := runtime .DecodeInto (o .Factory .Decoder (true ), []byte (creatorRef ), sr ); err != nil {
293
- return nil , err
294
- }
291
+
295
292
// We assume the only reason for an error is because the controller is
296
- // gone/missing, not for any other cause. TODO(mml): something more
297
- // sophisticated than this
298
- _ , err := o .getController (sr )
293
+ // gone/missing, not for any other cause.
294
+ // TODO(mml): something more sophisticated than this
295
+ // TODO(juntee): determine if it's safe to remove getController(),
296
+ // so that drain can work for controller types that we don't know about
297
+ _ , err := o .getController (pod .Namespace , controllerRef )
299
298
if err != nil {
300
299
return nil , err
301
300
}
302
- return sr , nil
301
+ return controllerRef , nil
303
302
}
304
303
305
304
func (o * DrainOptions ) unreplicatedFilter (pod api.Pod ) (bool , * warning , * fatal ) {
@@ -308,15 +307,15 @@ func (o *DrainOptions) unreplicatedFilter(pod api.Pod) (bool, *warning, *fatal)
308
307
return true , nil , nil
309
308
}
310
309
311
- sr , err := o .getPodCreator (pod )
310
+ controllerRef , err := o .getPodController (pod )
312
311
if err != nil {
313
312
// if we're forcing, remove orphaned pods with a warning
314
313
if apierrors .IsNotFound (err ) && o .Force {
315
314
return true , & warning {err .Error ()}, nil
316
315
}
317
316
return false , nil , & fatal {err .Error ()}
318
317
}
319
- if sr != nil {
318
+ if controllerRef != nil {
320
319
return true , nil , nil
321
320
}
322
321
if ! o .Force {
@@ -333,18 +332,18 @@ func (o *DrainOptions) daemonsetFilter(pod api.Pod) (bool, *warning, *fatal) {
333
332
// The exception is for pods that are orphaned (the referencing
334
333
// management resource - including DaemonSet - is not found).
335
334
// Such pods will be deleted if --force is used.
336
- sr , err := o .getPodCreator (pod )
335
+ controllerRef , err := o .getPodController (pod )
337
336
if err != nil {
338
337
// if we're forcing, remove orphaned pods with a warning
339
338
if apierrors .IsNotFound (err ) && o .Force {
340
339
return true , & warning {err .Error ()}, nil
341
340
}
342
341
return false , nil , & fatal {err .Error ()}
343
342
}
344
- if sr == nil || sr . Reference .Kind != "DaemonSet" {
343
+ if controllerRef == nil || controllerRef .Kind != "DaemonSet" {
345
344
return true , nil , nil
346
345
}
347
- if _ , err := o .client .Extensions ().DaemonSets (sr . Reference . Namespace ).Get (sr . Reference .Name , metav1.GetOptions {}); err != nil {
346
+ if _ , err := o .client .Extensions ().DaemonSets (pod . Namespace ).Get (controllerRef .Name , metav1.GetOptions {}); err != nil {
348
347
return false , nil , & fatal {err .Error ()}
349
348
}
350
349
if ! o .IgnoreDaemonsets {
0 commit comments