@@ -266,31 +266,41 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
266
266
}
267
267
kScalerFunc := w .Factory .Scaler
268
268
w .Scaler = func (mapping * meta.RESTMapping ) (kubectl.Scaler , error ) {
269
- oc , kc , err := w .Clients ()
270
- if err != nil {
271
- return nil , err
272
- }
273
-
274
269
if mapping .GroupVersionKind .GroupKind () == deployapi .Kind ("DeploymentConfig" ) {
270
+ oc , kc , err := w .Clients ()
271
+ if err != nil {
272
+ return nil , err
273
+ }
275
274
return deploycmd .NewDeploymentConfigScaler (oc , kc ), nil
276
275
}
277
276
return kScalerFunc (mapping )
278
277
}
279
278
kReaperFunc := w .Factory .Reaper
280
279
w .Reaper = func (mapping * meta.RESTMapping ) (kubectl.Reaper , error ) {
281
- oc , kc , err := w .Clients ()
282
- if err != nil {
283
- return nil , err
284
- }
285
-
286
280
switch mapping .GroupVersionKind .GroupKind () {
287
281
case deployapi .Kind ("DeploymentConfig" ):
282
+ oc , kc , err := w .Clients ()
283
+ if err != nil {
284
+ return nil , err
285
+ }
288
286
return deploycmd .NewDeploymentConfigReaper (oc , kc ), nil
289
287
case authorizationapi .Kind ("Role" ):
288
+ oc , _ , err := w .Clients ()
289
+ if err != nil {
290
+ return nil , err
291
+ }
290
292
return authorizationreaper .NewRoleReaper (oc , oc ), nil
291
293
case authorizationapi .Kind ("ClusterRole" ):
294
+ oc , _ , err := w .Clients ()
295
+ if err != nil {
296
+ return nil , err
297
+ }
292
298
return authorizationreaper .NewClusterRoleReaper (oc , oc , oc ), nil
293
299
case userapi .Kind ("User" ):
300
+ oc , kc , err := w .Clients ()
301
+ if err != nil {
302
+ return nil , err
303
+ }
294
304
return authenticationreaper .NewUserReaper (
295
305
client .UsersInterface (oc ),
296
306
client .GroupsInterface (oc ),
@@ -299,13 +309,21 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
299
309
kclient .SecurityContextConstraintsInterface (kc ),
300
310
), nil
301
311
case userapi .Kind ("Group" ):
312
+ oc , kc , err := w .Clients ()
313
+ if err != nil {
314
+ return nil , err
315
+ }
302
316
return authenticationreaper .NewGroupReaper (
303
317
client .GroupsInterface (oc ),
304
318
client .ClusterRoleBindingsInterface (oc ),
305
319
client .RoleBindingsNamespacer (oc ),
306
320
kclient .SecurityContextConstraintsInterface (kc ),
307
321
), nil
308
322
case buildapi .Kind ("BuildConfig" ):
323
+ oc , _ , err := w .Clients ()
324
+ if err != nil {
325
+ return nil , err
326
+ }
309
327
return buildreaper .NewBuildConfigReaper (oc ), nil
310
328
}
311
329
return kReaperFunc (mapping )
@@ -344,17 +362,16 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
344
362
}
345
363
kLogsForObjectFunc := w .Factory .LogsForObject
346
364
w .LogsForObject = func (object , options runtime.Object ) (* restclient.Request , error ) {
347
- oc , _ , err := w .Clients ()
348
- if err != nil {
349
- return nil , err
350
- }
351
-
352
365
switch t := object .(type ) {
353
366
case * deployapi.DeploymentConfig :
354
367
dopts , ok := options .(* deployapi.DeploymentLogOptions )
355
368
if ! ok {
356
369
return nil , errors .New ("provided options object is not a DeploymentLogOptions" )
357
370
}
371
+ oc , _ , err := w .Clients ()
372
+ if err != nil {
373
+ return nil , err
374
+ }
358
375
return oc .DeploymentLogs (t .Namespace ).Get (t .Name , * dopts ), nil
359
376
case * buildapi.Build :
360
377
bopts , ok := options .(* buildapi.BuildLogOptions )
@@ -364,12 +381,20 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
364
381
if bopts .Version != nil {
365
382
return nil , errors .New ("cannot specify a version and a build" )
366
383
}
384
+ oc , _ , err := w .Clients ()
385
+ if err != nil {
386
+ return nil , err
387
+ }
367
388
return oc .BuildLogs (t .Namespace ).Get (t .Name , * bopts ), nil
368
389
case * buildapi.BuildConfig :
369
390
bopts , ok := options .(* buildapi.BuildLogOptions )
370
391
if ! ok {
371
392
return nil , errors .New ("provided options object is not a BuildLogOptions" )
372
393
}
394
+ oc , _ , err := w .Clients ()
395
+ if err != nil {
396
+ return nil , err
397
+ }
373
398
builds , err := oc .Builds (t .Namespace ).List (api.ListOptions {})
374
399
if err != nil {
375
400
return nil , err
@@ -474,18 +499,17 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
474
499
w .PrintObjectSpecificMessage = func (obj runtime.Object , out io.Writer ) {}
475
500
kPauseObjectFunc := w .Factory .PauseObject
476
501
w .Factory .PauseObject = func (object runtime.Object ) (bool , error ) {
477
- oc , _ , err := w .Clients ()
478
- if err != nil {
479
- return false , err
480
- }
481
-
482
502
switch t := object .(type ) {
483
503
case * deployapi.DeploymentConfig :
484
504
if t .Spec .Paused {
485
505
return true , nil
486
506
}
487
507
t .Spec .Paused = true
488
- _ , err := oc .DeploymentConfigs (t .Namespace ).Update (t )
508
+ oc , _ , err := w .Clients ()
509
+ if err != nil {
510
+ return false , err
511
+ }
512
+ _ , err = oc .DeploymentConfigs (t .Namespace ).Update (t )
489
513
// TODO: Pause the deployer containers.
490
514
return false , err
491
515
default :
@@ -494,18 +518,17 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
494
518
}
495
519
kResumeObjectFunc := w .Factory .ResumeObject
496
520
w .Factory .ResumeObject = func (object runtime.Object ) (bool , error ) {
497
- oc , _ , err := w .Clients ()
498
- if err != nil {
499
- return false , err
500
- }
501
-
502
521
switch t := object .(type ) {
503
522
case * deployapi.DeploymentConfig :
504
523
if ! t .Spec .Paused {
505
524
return true , nil
506
525
}
507
526
t .Spec .Paused = false
508
- _ , err := oc .DeploymentConfigs (t .Namespace ).Update (t )
527
+ oc , _ , err := w .Clients ()
528
+ if err != nil {
529
+ return false , err
530
+ }
531
+ _ , err = oc .DeploymentConfigs (t .Namespace ).Update (t )
509
532
// TODO: Resume the deployer containers.
510
533
return false , err
511
534
default :
@@ -514,26 +537,24 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
514
537
}
515
538
kHistoryViewerFunc := w .Factory .HistoryViewer
516
539
w .Factory .HistoryViewer = func (mapping * meta.RESTMapping ) (kubectl.HistoryViewer , error ) {
517
- oc , kc , err := w .Clients ()
518
- if err != nil {
519
- return nil , err
520
- }
521
-
522
540
switch mapping .GroupVersionKind .GroupKind () {
523
541
case deployapi .Kind ("DeploymentConfig" ):
542
+ oc , kc , err := w .Clients ()
543
+ if err != nil {
544
+ return nil , err
545
+ }
524
546
return deploycmd .NewDeploymentConfigHistoryViewer (oc , kc ), nil
525
547
}
526
548
return kHistoryViewerFunc (mapping )
527
549
}
528
550
kRollbackerFunc := w .Factory .Rollbacker
529
551
w .Factory .Rollbacker = func (mapping * meta.RESTMapping ) (kubectl.Rollbacker , error ) {
530
- oc , _ , err := w .Clients ()
531
- if err != nil {
532
- return nil , err
533
- }
534
-
535
552
switch mapping .GroupVersionKind .GroupKind () {
536
553
case deployapi .Kind ("DeploymentConfig" ):
554
+ oc , _ , err := w .Clients ()
555
+ if err != nil {
556
+ return nil , err
557
+ }
537
558
return deploycmd .NewDeploymentConfigRollbacker (oc ), nil
538
559
}
539
560
return kRollbackerFunc (mapping )
@@ -705,10 +726,6 @@ func (f *Factory) PodForResource(resource string, timeout time.Duration) (string
705
726
if err != nil {
706
727
return "" , err
707
728
}
708
- oc , kc , err := f .Clients ()
709
- if err != nil {
710
- return "" , err
711
- }
712
729
mapper , _ := f .Object (false )
713
730
resourceType , name , err := util .ResolveResource (api .Resource ("pods" ), resource , mapper )
714
731
if err != nil {
@@ -719,6 +736,10 @@ func (f *Factory) PodForResource(resource string, timeout time.Duration) (string
719
736
case api .Resource ("pods" ):
720
737
return name , nil
721
738
case api .Resource ("replicationcontrollers" ):
739
+ kc , err := f .Client ()
740
+ if err != nil {
741
+ return "" , err
742
+ }
722
743
rc , err := kc .ReplicationControllers (namespace ).Get (name )
723
744
if err != nil {
724
745
return "" , err
@@ -730,6 +751,10 @@ func (f *Factory) PodForResource(resource string, timeout time.Duration) (string
730
751
}
731
752
return pod .Name , nil
732
753
case deployapi .Resource ("deploymentconfigs" ):
754
+ oc , kc , err := f .Clients ()
755
+ if err != nil {
756
+ return "" , err
757
+ }
733
758
dc , err := oc .DeploymentConfigs (namespace ).Get (name )
734
759
if err != nil {
735
760
return "" , err
@@ -741,6 +766,10 @@ func (f *Factory) PodForResource(resource string, timeout time.Duration) (string
741
766
}
742
767
return pod .Name , nil
743
768
case extensions .Resource ("daemonsets" ):
769
+ kc , err := f .Client ()
770
+ if err != nil {
771
+ return "" , err
772
+ }
744
773
ds , err := kc .Extensions ().DaemonSets (namespace ).Get (name )
745
774
if err != nil {
746
775
return "" , err
@@ -755,12 +784,20 @@ func (f *Factory) PodForResource(resource string, timeout time.Duration) (string
755
784
}
756
785
return pod .Name , nil
757
786
case extensions .Resource ("jobs" ):
787
+ kc , err := f .Client ()
788
+ if err != nil {
789
+ return "" , err
790
+ }
758
791
job , err := kc .Extensions ().Jobs (namespace ).Get (name )
759
792
if err != nil {
760
793
return "" , err
761
794
}
762
795
return podNameForJob (job , kc , timeout , sortBy )
763
796
case batch .Resource ("jobs" ):
797
+ kc , err := f .Client ()
798
+ if err != nil {
799
+ return "" , err
800
+ }
764
801
job , err := kc .Batch ().Jobs (namespace ).Get (name )
765
802
if err != nil {
766
803
return "" , err
0 commit comments