@@ -318,28 +318,36 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
318
318
})
319
319
320
320
g .It ("should run a deployment to completion and then scale to zero" , func () {
321
- dc , err := createDeploymentConfig (oc , deploymentFixture )
321
+ namespace := oc .Namespace ()
322
+
323
+ dc , err := readDCFixture (deploymentFixture )
324
+ o .Expect (err ).NotTo (o .HaveOccurred ())
325
+ o .Expect (dc .Name ).To (o .Equal (dcName ))
326
+
327
+ dc , err = oc .AppsClient ().AppsV1 ().DeploymentConfigs (namespace ).Create (dc )
322
328
o .Expect (err ).NotTo (o .HaveOccurred ())
323
329
o .Expect (dc .Name ).To (o .Equal (dcName ))
330
+ e2e .Logf ("created DC, creationTimestamp: %v" , dc .CreationTimestamp )
324
331
325
332
o .Expect (waitForLatestCondition (oc , "deployment-test" , deploymentRunTimeout , deploymentRunning )).NotTo (o .HaveOccurred ())
326
333
327
334
out , err := oc .Run ("logs" ).Args ("-f" , "dc/deployment-test" ).Output ()
328
335
o .Expect (err ).NotTo (o .HaveOccurred ())
336
+ e2e .Logf ("oc logs finished" )
329
337
330
- g . By ("verifying the deployment is marked complete and scaled to zero" )
338
+ e2e . Logf ("verifying the deployment is marked complete and scaled to zero" )
331
339
o .Expect (waitForLatestCondition (oc , "deployment-test" , deploymentRunTimeout , deploymentReachedCompletion )).NotTo (o .HaveOccurred ())
332
340
333
- g . By ( fmt . Sprintf ( "checking the logs for substrings\n %s" , out ) )
341
+ e2e . Logf ( "checking the logs for substrings\n %s" , out )
334
342
o .Expect (out ).To (o .ContainSubstring ("deployment-test-1 to 2" ))
335
343
o .Expect (out ).To (o .ContainSubstring ("--> pre: Success" ))
336
344
o .Expect (out ).To (o .ContainSubstring ("--> Success" ))
337
345
338
- g . By ("verifying that scaling does not result in new pods" )
346
+ e2e . Logf ("verifying that scaling does not result in new pods" )
339
347
out , err = oc .Run ("scale" ).Args ("dc/deployment-test" , "--replicas=1" ).Output ()
340
348
o .Expect (err ).NotTo (o .HaveOccurred ())
341
349
342
- g . By ("ensuring no scale up of the deployment happens" )
350
+ e2e . Logf ("ensuring no scale up of the deployment happens" )
343
351
wait .PollImmediate (100 * time .Millisecond , 10 * time .Second , func () (bool , error ) {
344
352
rc , err := oc .KubeClient ().CoreV1 ().ReplicationControllers (oc .Namespace ()).Get ("deployment-test-1" , metav1.GetOptions {})
345
353
o .Expect (err ).NotTo (o .HaveOccurred ())
@@ -348,13 +356,13 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
348
356
return false , nil
349
357
})
350
358
351
- g . By ("verifying the scale is updated on the deployment config" )
359
+ e2e . Logf ("verifying the scale is updated on the deployment config" )
352
360
config , err := oc .AppsClient ().AppsV1 ().DeploymentConfigs (oc .Namespace ()).Get ("deployment-test" , metav1.GetOptions {})
353
361
o .Expect (err ).NotTo (o .HaveOccurred ())
354
362
o .Expect (config .Spec .Replicas ).Should (o .BeEquivalentTo (1 ))
355
363
o .Expect (config .Spec .Test ).Should (o .BeTrue ())
356
364
357
- g . By ("deploying a few more times" )
365
+ e2e . Logf ("deploying a few more times" )
358
366
for i := 0 ; i < 3 ; i ++ {
359
367
rolloutCompleteWithLogs := make (chan struct {})
360
368
out := ""
@@ -371,12 +379,12 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
371
379
// deployer container runs.
372
380
_ , err := oc .Run ("rollout" ).Args ("latest" , "deployment-test" ).Output ()
373
381
o .Expect (err ).NotTo (o .HaveOccurred ())
374
- g . By ( fmt . Sprintf ( "waiting for the rollout #%d to finish" , i + 2 ) )
382
+ e2e . Logf ( "waiting for the rollout #%d to finish" , i + 2 )
375
383
<- rolloutCompleteWithLogs
376
384
o .Expect (out ).NotTo (o .BeEmpty ())
377
385
o .Expect (waitForLatestCondition (oc , "deployment-test" , deploymentRunTimeout , deploymentReachedCompletion )).NotTo (o .HaveOccurred ())
378
386
379
- g . By ( fmt . Sprintf ( "checking the logs for substrings\n %s" , out ) )
387
+ e2e . Logf ( "checking the logs for substrings\n %s" , out )
380
388
o .Expect (out ).To (o .ContainSubstring (fmt .Sprintf ("deployment-test-%d up to 1" , i + 2 )))
381
389
o .Expect (out ).To (o .ContainSubstring ("--> pre: Success" ))
382
390
o .Expect (out ).To (o .ContainSubstring ("test pre hook executed" ))
@@ -575,19 +583,27 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
575
583
})
576
584
577
585
g .It ("should run the custom deployment steps" , func () {
578
- dc , err := createDeploymentConfig (oc , customDeploymentFixture )
586
+ namespace := oc .Namespace ()
587
+
588
+ dc , err := readDCFixture (customDeploymentFixture )
579
589
o .Expect (err ).NotTo (o .HaveOccurred ())
580
590
o .Expect (dc .Name ).To (o .Equal (dcName ))
581
591
592
+ dc , err = oc .AppsClient ().AppsV1 ().DeploymentConfigs (namespace ).Create (dc )
593
+ o .Expect (err ).NotTo (o .HaveOccurred ())
594
+ o .Expect (dc .Name ).To (o .Equal (dcName ))
595
+ e2e .Logf ("created DC, creationTimestamp: %v" , dc .CreationTimestamp )
596
+
582
597
o .Expect (waitForLatestCondition (oc , dcName , deploymentRunTimeout , deploymentRunning )).NotTo (o .HaveOccurred ())
583
598
584
599
out , err := oc .Run ("logs" ).Args ("--follow" , "dc/custom-deployment" ).Output ()
585
600
o .Expect (err ).NotTo (o .HaveOccurred ())
601
+ e2e .Logf ("oc logs finished" )
586
602
587
- g . By ("verifying the deployment is marked complete" )
603
+ e2e . Logf ("verifying the deployment is marked complete" )
588
604
o .Expect (waitForLatestCondition (oc , "custom-deployment" , deploymentRunTimeout , deploymentReachedCompletion )).NotTo (o .HaveOccurred ())
589
605
590
- g . By ( fmt . Sprintf ( "checking the logs for substrings\n %s" , out ) )
606
+ e2e . Logf ( "checking the logs for substrings\n %s" , out )
591
607
o .Expect (out ).To (o .ContainSubstring ("--> pre: Running hook pod ..." ))
592
608
o .Expect (out ).To (o .ContainSubstring ("test pre hook executed" ))
593
609
o .Expect (out ).To (o .ContainSubstring ("--> Scaling custom-deployment-1 to 2" ))
0 commit comments