@@ -27,16 +27,14 @@ import (
27
27
kapi "k8s.io/kubernetes/pkg/apis/core"
28
28
kapihelper "k8s.io/kubernetes/pkg/apis/core/helper"
29
29
30
- appsapiv1 "github.com/openshift/api/apps/v1"
31
30
appsapi "github.com/openshift/origin/pkg/apps/apis/apps"
32
31
_ "github.com/openshift/origin/pkg/apps/apis/apps/install"
33
32
appstest "github.com/openshift/origin/pkg/apps/apis/apps/test"
34
33
appsutil "github.com/openshift/origin/pkg/apps/util"
35
34
)
36
35
37
36
var (
38
- env = []kapi.EnvVar {{Name : "ENV1" , Value : "VAL1" }}
39
- codec = legacyscheme .Codecs .LegacyCodec (appsapiv1 .SchemeGroupVersion )
37
+ env = []kapi.EnvVar {{Name : "ENV1" , Value : "VAL1" }}
40
38
)
41
39
42
40
func alwaysReady () bool { return true }
@@ -51,7 +49,7 @@ func okDeploymentController(client kclientset.Interface, deployment *v1.Replicat
51
49
rcInformer := informerFactory .Core ().V1 ().ReplicationControllers ()
52
50
podInformer := informerFactory .Core ().V1 ().Pods ()
53
51
54
- c := NewDeployerController (rcInformer , podInformer , client , "sa:test" , "openshift/origin-deployer" , env , codec )
52
+ c := NewDeployerController (rcInformer , podInformer , client , "sa:test" , "openshift/origin-deployer" , env )
55
53
c .podListerSynced = alwaysReady
56
54
c .rcListerSynced = alwaysReady
57
55
@@ -185,7 +183,7 @@ func TestHandle_createPodOk(t *testing.T) {
185
183
// Verify new -> pending
186
184
config := appstest .OkDeploymentConfig (1 )
187
185
config .Spec .Strategy = appstest .OkCustomStrategy ()
188
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
186
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
189
187
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
190
188
deployment .Spec .Template .Spec .NodeSelector = map [string ]string {"labelKey1" : "labelValue1" , "labelKey2" : "labelValue2" }
191
189
deployment .CreationTimestamp = metav1 .Now ()
@@ -276,7 +274,7 @@ func TestHandle_createPodFail(t *testing.T) {
276
274
})
277
275
278
276
config := appstest .OkDeploymentConfig (1 )
279
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
277
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
280
278
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
281
279
deployment .CreationTimestamp = metav1 .Now ()
282
280
@@ -332,7 +330,7 @@ func TestHandle_deployerPodAlreadyExists(t *testing.T) {
332
330
var updatedDeployment * v1.ReplicationController
333
331
334
332
config := appstest .OkDeploymentConfig (1 )
335
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
333
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
336
334
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
337
335
deployment .CreationTimestamp = metav1 .Now ()
338
336
deployerPodName := appsutil .DeployerPodNameForDeployment (deployment .Name )
@@ -373,7 +371,7 @@ func TestHandle_unrelatedPodAlreadyExists(t *testing.T) {
373
371
var updatedDeployment * v1.ReplicationController
374
372
375
373
config := appstest .OkDeploymentConfig (1 )
376
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
374
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
377
375
deployment .CreationTimestamp = metav1 .Now ()
378
376
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
379
377
@@ -414,7 +412,7 @@ func TestHandle_unrelatedPodAlreadyExistsTestScaled(t *testing.T) {
414
412
var updatedDeployment * v1.ReplicationController
415
413
416
414
config := appstest .TestDeploymentConfig (appstest .OkDeploymentConfig (1 ))
417
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
415
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
418
416
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
419
417
deployment .CreationTimestamp = metav1 .Now ()
420
418
one := int32 (1 )
@@ -486,7 +484,7 @@ func TestHandle_noop(t *testing.T) {
486
484
for _ , test := range tests {
487
485
client := fake .NewSimpleClientset ()
488
486
489
- deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ), codec )
487
+ deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ))
490
488
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (test .deploymentPhase )
491
489
deployment .CreationTimestamp = metav1 .Now ()
492
490
@@ -531,7 +529,7 @@ func TestHandle_failedTest(t *testing.T) {
531
529
532
530
// Verify successful cleanup
533
531
config := appstest .TestDeploymentConfig (appstest .OkDeploymentConfig (1 ))
534
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
532
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
535
533
deployment .CreationTimestamp = metav1 .Now ()
536
534
one := int32 (1 )
537
535
deployment .Spec .Replicas = & one
@@ -574,7 +572,7 @@ func TestHandle_cleanupPodOk(t *testing.T) {
574
572
575
573
// Verify successful cleanup
576
574
config := appstest .OkDeploymentConfig (1 )
577
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
575
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
578
576
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusComplete )
579
577
deployment .CreationTimestamp = metav1 .Now ()
580
578
@@ -619,7 +617,7 @@ func TestHandle_cleanupPodOkTest(t *testing.T) {
619
617
620
618
// Verify successful cleanup
621
619
config := appstest .TestDeploymentConfig (appstest .OkDeploymentConfig (1 ))
622
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
620
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
623
621
deployment .CreationTimestamp = metav1 .Now ()
624
622
one := int32 (1 )
625
623
deployment .Spec .Replicas = & one
@@ -664,7 +662,7 @@ func TestHandle_cleanupPodNoop(t *testing.T) {
664
662
665
663
// Verify no-op
666
664
config := appstest .OkDeploymentConfig (1 )
667
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
665
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
668
666
deployment .CreationTimestamp = metav1 .Now ()
669
667
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusComplete )
670
668
@@ -696,7 +694,7 @@ func TestHandle_cleanupPodFail(t *testing.T) {
696
694
697
695
// Verify error
698
696
config := appstest .OkDeploymentConfig (1 )
699
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
697
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
700
698
deployment .CreationTimestamp = metav1 .Now ()
701
699
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusComplete )
702
700
@@ -727,7 +725,7 @@ func TestHandle_cancelNew(t *testing.T) {
727
725
return true , rc , nil
728
726
})
729
727
730
- deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ), codec )
728
+ deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ))
731
729
deployment .CreationTimestamp = metav1 .Now ()
732
730
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
733
731
deployment .Annotations [appsapi .DeploymentCancelledAnnotation ] = appsapi .DeploymentCancelledAnnotationValue
@@ -749,7 +747,7 @@ func TestHandle_cleanupNewWithDeployers(t *testing.T) {
749
747
var updatedDeployment * v1.ReplicationController
750
748
deletedDeployer := false
751
749
752
- deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ), codec )
750
+ deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ))
753
751
deployment .CreationTimestamp = metav1 .Now ()
754
752
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (appsapi .DeploymentStatusNew )
755
753
deployment .Annotations [appsapi .DeploymentCancelledAnnotation ] = appsapi .DeploymentCancelledAnnotationValue
@@ -844,7 +842,7 @@ func TestHandle_cleanupPostNew(t *testing.T) {
844
842
return true , nil , nil
845
843
})
846
844
847
- deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ), codec )
845
+ deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ))
848
846
deployment .CreationTimestamp = metav1 .Now ()
849
847
deployment .Annotations [appsapi .DeploymentCancelledAnnotation ] = appsapi .DeploymentCancelledAnnotationValue
850
848
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (test .deploymentPhase )
@@ -903,7 +901,7 @@ func TestHandle_deployerPodDisappeared(t *testing.T) {
903
901
return true , nil , nil
904
902
})
905
903
906
- deployment , err := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ), codec )
904
+ deployment , err := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ))
907
905
if err != nil {
908
906
t .Errorf ("%s: unexpected error: %v" , test .name , err )
909
907
continue
@@ -1043,7 +1041,7 @@ func TestHandle_transitionFromDeployer(t *testing.T) {
1043
1041
return true , nil , nil
1044
1042
})
1045
1043
1046
- deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ), codec )
1044
+ deployment , _ := appsutil .MakeDeploymentV1 (appstest .OkDeploymentConfig (1 ))
1047
1045
deployment .Annotations [appsapi .DeploymentStatusAnnotation ] = string (test .deploymentPhase )
1048
1046
deployment .CreationTimestamp = metav1 .Now ()
1049
1047
@@ -1099,7 +1097,7 @@ func TestDeployerCustomLabelsAndAnnotations(t *testing.T) {
1099
1097
config .Spec .Strategy = test .strategy
1100
1098
config .Spec .Strategy .Labels = test .labels
1101
1099
config .Spec .Strategy .Annotations = test .annotations
1102
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
1100
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
1103
1101
1104
1102
client := & fake.Clientset {}
1105
1103
client .AddReactor ("create" , "pods" , func (action clientgotesting.Action ) (handled bool , ret runtime.Object , err error ) {
@@ -1130,7 +1128,7 @@ func TestMakeDeployerPod(t *testing.T) {
1130
1128
client := & fake.Clientset {}
1131
1129
controller := okDeploymentController (client , nil , nil , true , v1 .PodUnknown )
1132
1130
config := appstest .OkDeploymentConfig (1 )
1133
- deployment , _ := appsutil .MakeDeploymentV1 (config , codec )
1131
+ deployment , _ := appsutil .MakeDeploymentV1 (config )
1134
1132
container := controller .makeDeployerContainer (& config .Spec .Strategy )
1135
1133
container .Resources = appsutil .CopyApiResourcesToV1Resources (& config .Spec .Strategy .Resources )
1136
1134
defaultGracePeriod := int64 (10 )
0 commit comments