Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/components/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ firmware:
libvirt: 10.9.0
edk2: stable202411
core:
3p-kubevirt: v1.3.1-v12n.8
3p-kubevirt: v1.3.1-v12n.9
3p-containerized-data-importer: v1.60.3-v12n.7
distribution: 2.8.3
package:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ func (o StopOperation) IsApplicableForVMPhase(phase virtv2.MachinePhase) bool {
return phase == virtv2.MachineRunning ||
phase == virtv2.MachineDegraded ||
phase == virtv2.MachineStarting ||
phase == virtv2.MachinePause
phase == virtv2.MachinePause ||
phase == virtv2.MachinePending
}

func (o StopOperation) IsApplicableForRunPolicy(runPolicy virtv2.RunPolicy) bool {
Expand Down
Loading