[DO NOT MERGE] - expands skip-ignition-apply work in MCD #4961
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is meant to expand on @dkhater-redhat 's work around skipping the ignition apply path in the MCD in this PR: https://github.com/openshift/machine-config-operator/pull/4871/files . My work is intended to be cherry-picked into Dalia's PR and expanded upon.
Here's how this works:
triggerUpdate()
is called. This is where we effectively "merge" the OCL and non-OCL update paths.triggerUpdate()
, we embed the OCL image pullspecs into the MachineConfig, overriding the OSImageURL value. The reason we override this value is because many of the update functions use OSImageURL as their source of truth.applyOSImageUpdates()
function (which was already done in a separate PR), only minor code changes were necessary.A few notes about the implementation:
triggerUpdate()
andtriggerUpdateWithMachineConfig()
methods were consolidated into a singular code path for both OCL and non-OCL paths.canonicalizeMachineConfigImage()
function was renamed toembedOCLImageIntoMachineConfig()
and refactored to set a few annotations in the case that it embeds an image into the MachineConfig by overriding the OSImageURL value. A companionextractOCLImageFromMachineConfig()
was also implemented that will revert the OSImageURL back its original value on-demand. Both functions will perform a DeepCopy of the MachineConfig so that the mutations we make are not reflected in the lister cache.newMachineConfigDiff()
function where it extracts these values to determine if OCL is enabled. 2) BeforestoreCurrentConfigOnDisk()
is called.