@@ -271,6 +271,28 @@ var _ = Describe("installer HostRoleMaster role", func() {
271
271
mockops .EXPECT ().CreateRandomHostname (gomock .Any ()).Return (nil ).Times (1 )
272
272
}
273
273
}
274
+ checkOcBinary := func (exists bool ) {
275
+ mockops .EXPECT ().FileExists (openshiftClientBin ).Return (exists ).Times (1 )
276
+ }
277
+ checkOverlayService := func (name string , injectError bool ) {
278
+ // verify that we retry if `systemctl show` fails for some reason
279
+ mockops .EXPECT ().ExecPrivilegeCommand (gomock .Any (), "systemctl" , "show" , "-P" , "ActiveState" , name ).Return ("" , errors .New ("bad" )).Times (1 )
280
+ // verify that we retry if service is still inactive (hasn't started yet)
281
+ mockops .EXPECT ().ExecPrivilegeCommand (gomock .Any (), "systemctl" , "show" , "-P" , "ActiveState" , name ).Return ("inactive" , nil ).Times (1 )
282
+ if ! injectError {
283
+ // ok, succeed this time
284
+ mockops .EXPECT ().ExecPrivilegeCommand (gomock .Any (), "systemctl" , "show" , "-P" , "ActiveState" , name ).Return ("active" , nil ).Times (1 )
285
+ } else {
286
+ // oh no! the service failed!
287
+ mockops .EXPECT ().ExecPrivilegeCommand (gomock .Any (), "systemctl" , "show" , "-P" , "ActiveState" , name ).Return ("failed" , nil ).Times (1 )
288
+ mockops .EXPECT ().ExecPrivilegeCommand (gomock .Any (), "systemctl" , "status" , name ).Return ("status" , nil ).Times (1 )
289
+ }
290
+ }
291
+ overlayNodeImage := func (injectError bool ) {
292
+ mockops .EXPECT ().SystemctlAction ("start" , "--no-block" , nodeImagePullService , nodeImageOverlayService ).Return (nil ).Times (1 )
293
+ checkOverlayService (nodeImagePullService , false )
294
+ checkOverlayService (nodeImageOverlayService , injectError )
295
+ }
274
296
startServicesSuccess := func () {
275
297
services := []string {"bootkube.service" , "progress.service" , "approve-csr.service" }
276
298
for i := range services {
@@ -354,6 +376,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
354
376
checkLocalHostname ("notlocalhost" , nil )
355
377
restartNetworkManager (nil )
356
378
prepareControllerSuccess ()
379
+ checkOcBinary (true )
357
380
startServicesSuccess ()
358
381
WaitMasterNodesSucccess ()
359
382
waitForBootkubeSuccess ()
@@ -375,6 +398,63 @@ var _ = Describe("installer HostRoleMaster role", func() {
375
398
ret := installerObj .InstallNode ()
376
399
Expect (ret ).Should (BeNil ())
377
400
})
401
+ It ("bootstrap role happy flow on RHEL-only bootimage" , func () {
402
+ updateProgressSuccess ([][]string {{string (models .HostStageStartingInstallation ), conf .Role },
403
+ {string (models .HostStageWaitingForControlPlane ), waitingForBootstrapToPrepare },
404
+ {string (models .HostStageWaitingForControlPlane ), waitingForMastersStatusInfo },
405
+ {string (models .HostStageInstalling ), string (models .HostRoleMaster )},
406
+ {string (models .HostStageWritingImageToDisk )},
407
+ {string (models .HostStageRebooting )},
408
+ })
409
+ bootstrapSetup ()
410
+ checkLocalHostname ("notlocalhost" , nil )
411
+ restartNetworkManager (nil )
412
+ prepareControllerSuccess ()
413
+ checkOcBinary (false )
414
+ overlayNodeImage (false )
415
+ checkOcBinary (true )
416
+ startServicesSuccess ()
417
+ WaitMasterNodesSucccess ()
418
+ waitForBootkubeSuccess ()
419
+ bootkubeStatusSuccess ()
420
+ waitForETCDBootstrapSuccess ()
421
+ bootstrapETCDStatusSuccess ()
422
+ resolvConfSuccess ()
423
+ waitForControllerSuccessfully (conf .ClusterID )
424
+ //HostRoleMaster flow:
425
+ downloadHostIgnitionSuccess (infraEnvId , hostId , "master-host-id.ign" )
426
+ writeToDiskSuccess (gomock .Any ())
427
+ reportLogProgressSuccess ()
428
+ setBootOrderSuccess (gomock .Any ())
429
+ uploadLogsSuccess (true )
430
+ ironicAgentDoesntExist ()
431
+ rebootSuccess ()
432
+ getEncapsulatedMcSuccess (nil )
433
+ overwriteImageSuccess ()
434
+ ret := installerObj .InstallNode ()
435
+ Expect (ret ).Should (BeNil ())
436
+ })
437
+ It ("bootstrap role fails on RHEL-only bootimage if can't overlay node image" , func () {
438
+ updateProgressSuccess ([][]string {{string (models .HostStageStartingInstallation ), conf .Role },
439
+ {string (models .HostStageWaitingForControlPlane ), waitingForBootstrapToPrepare },
440
+ {string (models .HostStageInstalling ), string (models .HostRoleMaster )},
441
+ {string (models .HostStageWritingImageToDisk )},
442
+ })
443
+ bootstrapSetup ()
444
+ checkLocalHostname ("notlocalhost" , nil )
445
+ restartNetworkManager (nil )
446
+ prepareControllerSuccess ()
447
+ checkOcBinary (false )
448
+ overlayNodeImage (true )
449
+ //HostRoleMaster flow:
450
+ downloadHostIgnitionSuccess (infraEnvId , hostId , "master-host-id.ign" )
451
+ writeToDiskSuccess (gomock .Any ())
452
+ setBootOrderSuccess (gomock .Any ())
453
+ getEncapsulatedMcSuccess (nil )
454
+ overwriteImageSuccess ()
455
+ ret := installerObj .InstallNode ()
456
+ Expect (ret ).To (HaveOccurred ())
457
+ })
378
458
It ("bootstrap role happy flow with invalid hostname" , func () {
379
459
updateProgressSuccess ([][]string {{string (models .HostStageStartingInstallation ), conf .Role },
380
460
{string (models .HostStageWaitingForControlPlane ), waitingForBootstrapToPrepare },
@@ -387,6 +467,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
387
467
checkLocalHostname ("InvalidHostname" , nil )
388
468
restartNetworkManager (nil )
389
469
prepareControllerSuccess ()
470
+ checkOcBinary (true )
390
471
startServicesSuccess ()
391
472
WaitMasterNodesSucccess ()
392
473
waitForBootkubeSuccess ()
@@ -420,6 +501,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
420
501
checkLocalHostname ("localhost" , nil )
421
502
restartNetworkManager (nil )
422
503
prepareControllerSuccess ()
504
+ checkOcBinary (true )
423
505
startServicesSuccess ()
424
506
WaitMasterNodesSucccess ()
425
507
waitForBootkubeSuccess ()
@@ -454,6 +536,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
454
536
checkLocalHostname ("notlocalhost" , nil )
455
537
restartNetworkManager (nil )
456
538
prepareControllerSuccess ()
539
+ checkOcBinary (true )
457
540
startServicesSuccess ()
458
541
WaitMasterNodesSucccessWithCluster (& models.Cluster {
459
542
Platform : & models.Platform {
@@ -520,6 +603,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
520
603
checkLocalHostname ("notlocalhost" , nil )
521
604
restartNetworkManager (nil )
522
605
prepareControllerSuccess ()
606
+ checkOcBinary (true )
523
607
startServicesSuccess ()
524
608
WaitMasterNodesSucccess ()
525
609
waitForBootkubeSuccess ()
@@ -633,6 +717,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
633
717
checkLocalHostname ("notlocalhost" , nil )
634
718
restartNetworkManager (nil )
635
719
prepareControllerSuccess ()
720
+ checkOcBinary (true )
636
721
startServicesSuccess ()
637
722
638
723
mockbmclient .EXPECT ().GetEnabledHostsNamesHosts (gomock .Any (), gomock .Any ()).Return (inventoryNamesHost , nil ).AnyTimes ()
@@ -1037,6 +1122,9 @@ var _ = Describe("installer HostRoleMaster role", func() {
1037
1122
mockops .EXPECT ().CreateRandomHostname (gomock .Any ()).Return (nil ).Times (1 )
1038
1123
}
1039
1124
}
1125
+ checkOcBinary := func (exists bool ) {
1126
+ mockops .EXPECT ().FileExists (openshiftClientBin ).Return (exists ).Times (1 )
1127
+ }
1040
1128
startServicesSuccess := func () {
1041
1129
services := []string {"bootkube.service" , "progress.service" , "approve-csr.service" }
1042
1130
for i := range services {
@@ -1079,6 +1167,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
1079
1167
singleNodeBootstrapSetup ()
1080
1168
checkLocalHostname ("localhost" , nil )
1081
1169
prepareControllerSuccess ()
1170
+ checkOcBinary (true )
1082
1171
startServicesSuccess ()
1083
1172
waitForBootkubeSuccess ()
1084
1173
bootkubeStatusSuccess ()
@@ -1116,6 +1205,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
1116
1205
singleNodeBootstrapSetup ()
1117
1206
checkLocalHostname ("localhost" , nil )
1118
1207
prepareControllerSuccess ()
1208
+ checkOcBinary (true )
1119
1209
startServicesSuccess ()
1120
1210
waitForBootkubeSuccess ()
1121
1211
bootkubeStatusSuccess ()
0 commit comments