Skip to content

Commit a03e2ba

Browse files
authored
Merge pull request #93167 from mburke5678/mco-opt-out-boot-images-418
DOC: Explain how to opt-out of boot image update in 4.18
2 parents c0b9cb5 + fafb105 commit a03e2ba

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

modules/mco-update-boot-images-disable.adoc

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[id="mco-update-boot-images-disable_{context}"]
88
= Disabling updated boot images
99

10-
To disable the updated boot image feature, edit the `MachineConfiguration` object to remove the `managedBootImages` stanza.
10+
To disable the updated boot image feature, edit the `MachineConfiguration` object so that the `machineManagers` field is an empty array.
1111

1212
If you disable this feature after some nodes have been created with the new boot image version, any existing nodes retain their current boot image. Turning off this feature does not rollback the nodes or machine sets to the originally-installed boot image. The machine sets retain the boot image version that was present when the feature was enabled and is not updated again when the cluster is upgraded to a new {product-title} version in the future.
1313

@@ -20,7 +20,7 @@ If you disable this feature after some nodes have been created with the new boot
2020
$ oc edit MachineConfiguration cluster
2121
----
2222

23-
. Remove the `managedBootImages` stanza:
23+
. Make the `machineManagers` parameter an empty array:
2424
+
2525
[source,yaml]
2626
----
@@ -32,10 +32,6 @@ metadata:
3232
spec:
3333
# ...
3434
managedBootImages: <1>
35-
machineManagers:
36-
- resource: machinesets
37-
apiGroup: machine.openshift.io
38-
selection:
39-
mode: All
35+
machineManagers: []
4036
----
41-
<1> Remove the entire stanza to disable updated boot images.
37+
Remove the parameters that are listed under `machineManagers` and add the `[]` characters to disable the updating of boot images.

0 commit comments

Comments
 (0)