An OpenShift cluster upgrade stalled because a MachineConfigPool is paused. The administrator needs to verify which MachineConfigPool is paused and unpause it. Which command accomplishes this?
Trap 1: oc adm upgrade resume
CVO upgrades are managed via clusterversion, not machineconfigpools directly with this command.
Trap 2: oc get mcp --show-paused
There is no --show-paused flag for oc get mcp.
Trap 3: oc resume machineconfigpool/worker
'oc resume' is not a valid OpenShift CLI verb.
- A
oc adm upgrade resume
Why wrong: CVO upgrades are managed via clusterversion, not machineconfigpools directly with this command.
- B
oc get mcp --show-paused
Why wrong: There is no --show-paused flag for oc get mcp.
- C
oc resume machineconfigpool/worker
Why wrong: 'oc resume' is not a valid OpenShift CLI verb.
- D
oc get machineconfigpools
oc get machineconfigpools displays the status, including whether a pool is paused.