Skip to content

Commit 5fabc5a

Browse files
committed
ops: add new FileExists method
Prep for next patch. Also use that in one spot where we were manually calling `stat`.
1 parent 34b971a commit 5fabc5a

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

src/installer/installer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ func (i *installer) waitForBootkube(ctx context.Context) {
658658
return
659659
case <-time.After(generalWaitInterval):
660660
// check if bootkube is done every 5 seconds
661-
if _, err := i.ops.ExecPrivilegeCommand(nil, "stat", "/opt/openshift/.bootkube.done"); err == nil {
661+
if i.ops.FileExists("/opt/openshift/.bootkube.done") {
662662
// in case bootkube is done log the status and return
663663
i.log.Info("bootkube service completed")
664664
out, _ := i.ops.ExecPrivilegeCommand(nil, "systemctl", "status", "bootkube.service")

src/installer/installer_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
297297
}
298298
waitForBootkubeSuccess := func() {
299299
mockbmclient.EXPECT().UpdateHostInstallProgress(gomock.Any(), infraEnvId, hostId, models.HostStageWaitingForBootkube, "").Return(nil).Times(1)
300-
mockops.EXPECT().ExecPrivilegeCommand(gomock.Any(), "stat", "/opt/openshift/.bootkube.done").Return("OK", nil).Times(1)
300+
mockops.EXPECT().FileExists("/opt/openshift/.bootkube.done").Return(true).Times(1)
301301
}
302302
bootkubeStatusSuccess := func() {
303303
mockops.EXPECT().ExecPrivilegeCommand(gomock.Any(), "systemctl", "status", "bootkube.service").Return("1", nil).Times(1)
@@ -1048,7 +1048,7 @@ var _ = Describe("installer HostRoleMaster role", func() {
10481048
}
10491049
waitForBootkubeSuccess := func() {
10501050
mockbmclient.EXPECT().UpdateHostInstallProgress(gomock.Any(), infraEnvId, hostId, models.HostStageWaitingForBootkube, "").Return(nil).Times(1)
1051-
mockops.EXPECT().ExecPrivilegeCommand(gomock.Any(), "stat", "/opt/openshift/.bootkube.done").Return("OK", nil).Times(1)
1051+
mockops.EXPECT().FileExists("/opt/openshift/.bootkube.done").Return(true).Times(1)
10521052
}
10531053
bootkubeStatusSuccess := func() {
10541054
mockops.EXPECT().ExecPrivilegeCommand(gomock.Any(), "systemctl", "status", "bootkube.service").Return("1", nil).Times(1)

src/ops/mock_ops.go

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ops/ops.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ type Ops interface {
6666
FormatDisk(string) error
6767
CreateManifests(string, []byte) error
6868
DryRebootHappened(markerPath string) bool
69+
FileExists(path string) bool
6970
ExecPrivilegeCommand(liveLogger io.Writer, command string, args ...string) (string, error)
7071
ReadFile(filePath string) ([]byte, error)
7172
GetEncapsulatedMC(ignitionPath string) (*mcfgv1.MachineConfig, error)
@@ -652,7 +653,12 @@ func (o *ops) CreateManifests(kubeconfig string, content []byte) error {
652653
// The dry run installer creates this file on "Reboot" (instead of actually rebooting)
653654
// We use this function to check whether the given node in the cluster have already rebooted
654655
func (o *ops) DryRebootHappened(markerPath string) bool {
655-
_, err := o.ExecPrivilegeCommand(nil, "stat", markerPath)
656+
return o.FileExists(markerPath)
657+
}
658+
659+
// FileExists checks if a file exists
660+
func (o *ops) FileExists(path string) bool {
661+
_, err := o.ExecPrivilegeCommand(nil, "stat", path)
656662

657663
return err == nil
658664
}

0 commit comments

Comments
 (0)