Skip to content

Commit

Permalink
Removed second return value from doServiceIfNeeded function.
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Anders <[email protected]>
  • Loading branch information
rhjanders committed Oct 23, 2024
1 parent 5dfc536 commit 324e111
Showing 1 changed file with 28 additions and 21 deletions.
49 changes: 28 additions & 21 deletions controllers/metal3.io/baremetalhost_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ func (r *BareMetalHostReconciler) actionDeprovisioning(prov provisioner.Provisio
return actionComplete{}
}

func (r *BareMetalHostReconciler) doServiceIfNeeded(prov provisioner.Provisioner, info *reconcileInfo, hup *metal3api.HostUpdatePolicy) (result actionResult, isServicing bool) {
func (r *BareMetalHostReconciler) doServiceIfNeeded(prov provisioner.Provisioner, info *reconcileInfo, hup *metal3api.HostUpdatePolicy) (result actionResult) {
servicingData := provisioner.ServicingData{}

// (NOTE)janders: since Servicing is an opt-in feature that requires HostUpdatePolicy to be created and set to onReboot
Expand All @@ -1382,7 +1382,7 @@ func (r *BareMetalHostReconciler) doServiceIfNeeded(prov provisioner.Provisioner
var err error
hfsDirty, hfs, err = r.getHostFirmwareSettings(info)
if err != nil {
return actionError{fmt.Errorf("could not determine updated settings: %w", err)}, false
return actionError{fmt.Errorf("could not determine updated settings: %w", err)}
}
if hfsDirty {
servicingData.ActualFirmwareSettings = hfs.Status.Settings
Expand All @@ -1395,41 +1395,46 @@ func (r *BareMetalHostReconciler) doServiceIfNeeded(prov provisioner.Provisioner
// Even if settings are clean, we need to check the result of the current servicing.
if !dirty && info.host.Status.OperationalStatus != metal3api.OperationalStatusServicing && info.host.Status.ErrorType != metal3api.ServicingError {
// If nothing is going on, return control to the power management.
return nil, false
return nil
}

provResult, started, err := prov.Service(servicingData, dirty,
info.host.Status.ErrorType == metal3api.ServicingError)
// FIXME(janders/dtantsur): this implementation may lead to a scenario where if we never actually
// succeed before leaving this state (e.g. by deprovisioning) we lose the signal that the
// update didn't actually happen. This is deemed an acceptable risk for the moment since it is only
// going to impact a small subset of Firmware Settings implementations.
currentError := info.host.Status.ErrorType
if clearErrorWithStatus(info.host, metal3api.OperationalStatusServicing) {
dirty = true
}
provResult, _, err := prov.Service(servicingData, dirty,
currentError == metal3api.ServicingError)
if err != nil {
return actionError{fmt.Errorf("error servicing host: %w", err)}, false
return actionError{fmt.Errorf("error servicing host: %w", err)}
}
if provResult.ErrorMessage != "" {
result = recordActionFailure(info, metal3api.ServicingError, provResult.ErrorMessage)
return result, true
return result
}
if started && clearErrorWithStatus(info.host, metal3api.OperationalStatusServicing) {
if fwDirty {
info.host.Status.Provisioning.Firmware = info.host.Spec.Firmware.DeepCopy()
}
dirty = true

if fwDirty {
info.host.Status.Provisioning.Firmware = info.host.Spec.Firmware.DeepCopy()
}

if provResult.Dirty {
result := actionContinue{provResult.RequeueAfter}
if dirty {
return actionUpdate{result}, true
return actionUpdate{result}
}
return result, true
return result
}

// Servicing is finished at this point, clean up operational status
if clearErrorWithStatus(info.host, metal3api.OperationalStatusOK) {
// We need to give the HostFirmwareSettings controller some time to
// catch up with the changes, otherwise we risk starting the same
// operation again.
return actionUpdate{actionContinue{delay: subResourceNotReadyRetryDelay}}, true
// FIXME(janders/dtantsur): this can be racy. We should consider
// using a generation number to decide if we start servicing or not.
return actionUpdate{actionContinue{delay: subResourceNotReadyRetryDelay}}
}
return nil, false
return nil
}

// Check the current power status against the desired power status.
Expand All @@ -1445,7 +1450,7 @@ func (r *BareMetalHostReconciler) manageHostPower(prov provisioner.Provisioner,
if hwState.PoweredOn != nil && *hwState.PoweredOn != info.host.Status.PoweredOn {
info.log.Info("updating power status", "discovered", *hwState.PoweredOn)
info.host.Status.PoweredOn = *hwState.PoweredOn
if info.host.Status.OperationalStatus == metal3api.OperationalStatusError || info.host.Status.ErrorType == metal3api.PowerManagementError {
if info.host.Status.OperationalStatus == metal3api.OperationalStatusError && info.host.Status.ErrorType == metal3api.PowerManagementError {
clearError(info.host)
}
return actionUpdate{}
Expand All @@ -1456,6 +1461,8 @@ func (r *BareMetalHostReconciler) manageHostPower(prov provisioner.Provisioner,
provState := info.host.Status.Provisioning.State
// Normal reboots only work in provisioned states, changing online is also possible for available hosts.
isProvisioned := provState == metal3api.StateProvisioned || provState == metal3api.StateExternallyProvisioned
// FIXME(janders/dtantsur) it would be preferrable to pass in state as an argument
// however this falls outside the scope of this specific change.

if !info.host.Status.PoweredOn {
if _, suffixlessAnnotationExists := info.host.Annotations[metal3api.RebootAnnotationPrefix]; suffixlessAnnotationExists {
Expand All @@ -1476,7 +1483,7 @@ func (r *BareMetalHostReconciler) manageHostPower(prov provisioner.Provisioner,

servicingAllowed := isProvisioned && !info.host.Status.PoweredOn && desiredPowerOnState
if servicingAllowed || info.host.Status.OperationalStatus == metal3api.OperationalStatusServicing || info.host.Status.ErrorType == metal3api.ServicingError {
result, _ := r.doServiceIfNeeded(prov, info, hup)
result := r.doServiceIfNeeded(prov, info, hup)
if result != nil {
return result
}
Expand Down

0 comments on commit 324e111

Please sign in to comment.