Skip to content

Commit 23f9c3f

Browse files
committed
WIP: overlay node image before bootstrapping if necessary
As per openshift/enhancements#1637, we're trying to get rid of all OpenShift-versioned components from the bootimages. This means that there will no longer be oc, kubelet, or crio binaries for example, which bootstrapping obviously relies on. To adapt to this, the OpenShift installer now ships a new `node-image-overlay.service` in its bootstrap Ignition config. This service takes care of pulling down the node image and overlaying it, effectively updating the system to the node image version. Here, we accordingly also adapt assisted-installer so that we run `node-image-overlay.service` before starting e.g. `kubelet.service` and `bootkube.service`. See also: openshift/installer#8742
1 parent c1e4fb7 commit 23f9c3f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/installer/installer.go

+31
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,18 @@ func (i *installer) startBootstrap() error {
410410
return err
411411
}
412412

413+
// If we're in a pure RHEL/CentOS environment, we need to overlay the node image
414+
// first to have access to e.g. oc, kubelet, cri-o, etc...
415+
// https://github.com/openshift/enhancements/pull/1637
416+
if !i.ops.FileExists("/usr/bin/oc") {
417+
err = i.ops.SystemctlAction("start", "node-image-overlay.service")
418+
if err != nil {
419+
return err
420+
}
421+
422+
i.waitForNodeImageOverlay(context.Background())
423+
}
424+
413425
servicesToStart := []string{"bootkube.service", "approve-csr.service", "progress.service"}
414426
for _, service := range servicesToStart {
415427
err = i.ops.SystemctlAction("start", service)
@@ -626,6 +638,25 @@ func (i *installer) waitForBootkube(ctx context.Context) {
626638
}
627639
}
628640

641+
func (i *installer) waitForNodeImageOverlay(ctx context.Context) {
642+
i.log.Infof("Waiting for node image overlay to complete")
643+
644+
for {
645+
select {
646+
case <-ctx.Done():
647+
i.log.Info("Context cancelled, terminating wait for node image overlay\n")
648+
return
649+
case <-time.After(generalWaitInterval):
650+
out, err := i.ops.ExecPrivilegeCommand(nil, "systemctl", "is-active", "node-image-overlay.service")
651+
if err == nil {
652+
i.log.Info("node image overlay service completed")
653+
return
654+
}
655+
i.log.Debugf("node image overlay service not yet active: %s", out)
656+
}
657+
}
658+
}
659+
629660
func (i *installer) waitForController(kc k8s_client.K8SClient) error {
630661
i.log.Infof("Waiting for controller to be ready")
631662
i.UpdateHostInstallProgress(models.HostStageWaitingForController, "waiting for controller pod ready event")

0 commit comments

Comments
 (0)