-
Notifications
You must be signed in to change notification settings - Fork 2
Backport: Changelog v1.1.0 #1531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
deckhouse-BOaTswain
merged 1 commit into
release-1.1
from
cherry-pick-release-1.1-04bbdd35081b04fe1edc0e73c8543cbef5f7511a
Oct 6, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
ci: | ||
features: | ||
- summary: add alias linter for golangci-lint | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1387 | ||
fixes: | ||
- summary: E2E tests no longer fail due to kubectl logs exit codes during teardown. | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1466 | ||
- summary: fix variable name for delve debug | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1442 | ||
core: | ||
features: | ||
- summary: add e2e framework | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1366 | ||
docs: | ||
fixes: | ||
- summary: english documentation remove cyrillic characters cdi_kubevirt_patching | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1481 | ||
module: | ||
features: | ||
- summary: >- | ||
Added the `D8VirtualizationDVCRInsufficientCapacityRisk` alert, which warns of the risk of | ||
insufficient free space in the virtual machine image storage (DVCR). | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1461 | ||
- summary: >- | ||
Added the `KubeNodeAwaitingVirtualMachinesEvictionBeforeShutdown` alert, which is triggered | ||
when the node hosting the virtual machines is about to shut down but VM evacuation is not | ||
yet complete. | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1268 | ||
observability: | ||
fixes: | ||
- summary: >- | ||
Fixed the graph on the virtual machine dashboard that displays memory copy statistics during | ||
VM migration. | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1474 | ||
vd: | ||
fixes: | ||
- summary: respect user-specified storage class when restoring from snapshot | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1417 | ||
vm: | ||
features: | ||
- summary: >- | ||
Added the ability to migrate VMs using disks on local storage. Restrictions: | ||
|
||
- The feature is not available in the CE edition. | ||
|
||
- Migration is only possible for running VMs (`phase: Running`). | ||
|
||
- Migration of VMs with local disks connected via `VirtualMachineBlockDeviceAttachment` | ||
(hotplug) is not supported yet. | ||
|
||
|
||
Added the ability to migrate storage for VM disks (change `StorageClass`). Restrictions: | ||
|
||
- The feature is not available in the CE edition. | ||
|
||
- Migration is only possible for running VMs (`phase: Running`). | ||
|
||
- Storage migration for disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) | ||
is not supported yet. | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1360 | ||
vmclass: | ||
fixes: | ||
- summary: >- | ||
Use qemu64 CPU model for Discovery and Features types to fix nested virtualization on AMD | ||
hosts | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1446 | ||
vmop: | ||
features: | ||
- summary: >- | ||
Added an operation with the `Clone` type to create a clone of a VM from an existing VM | ||
(`VirtualMachineOperation` `.spec.type: Clone`). | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1418 | ||
fixes: | ||
- summary: >- | ||
Fix the problem where a disk that in the "Terminating" phase was wrongly added to kvvm's | ||
volumes during a restore operation in Strict mode. | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1493 | ||
- summary: >- | ||
Fixed garbage collector behavior: previously, all VMOP objects were deleted after restarting | ||
the virtualization controller, ignoring cleanup rules. | ||
pull_request: https://github.com/deckhouse/virtualization/pull/1471 | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Changelog v1.1 | ||
|
||
## Features | ||
|
||
|
||
- **[module]** Added the `D8VirtualizationDVCRInsufficientCapacityRisk` alert, which warns of the risk of insufficient free space in the virtual machine image storage (DVCR). [#1461](https://github.com/deckhouse/virtualization/pull/1461) | ||
- **[module]** Added the `KubeNodeAwaitingVirtualMachinesEvictionBeforeShutdown` alert, which is triggered when the node hosting the virtual machines is about to shut down but VM evacuation is not yet complete. [#1268](https://github.com/deckhouse/virtualization/pull/1268) | ||
- **[vm]** Added the ability to migrate VMs using disks on local storage. Restrictions: | ||
- The feature is not available in the CE edition. | ||
- Migration is only possible for running VMs (`phase: Running`). | ||
- Migration of VMs with local disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) is not supported yet. | ||
|
||
Added the ability to migrate storage for VM disks (change `StorageClass`). Restrictions: | ||
- The feature is not available in the CE edition. | ||
- Migration is only possible for running VMs (`phase: Running`). | ||
- Storage migration for disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) is not supported yet. [#1360](https://github.com/deckhouse/virtualization/pull/1360) | ||
- **[vmop]** Added an operation with the `Clone` type to create a clone of a VM from an existing VM (`VirtualMachineOperation` `.spec.type: Clone`). [#1418](https://github.com/deckhouse/virtualization/pull/1418) | ||
|
||
## Fixes | ||
|
||
|
||
- **[observability]** Fixed the graph on the virtual machine dashboard that displays memory copy statistics during VM migration. [#1474](https://github.com/deckhouse/virtualization/pull/1474) | ||
- **[vd]** respect user-specified storage class when restoring from snapshot [#1417](https://github.com/deckhouse/virtualization/pull/1417) | ||
- **[vmclass]** Use qemu64 CPU model for Discovery and Features types to fix nested virtualization on AMD hosts [#1446](https://github.com/deckhouse/virtualization/pull/1446) | ||
- **[vmop]** Fix the problem where a disk that in the "Terminating" phase was wrongly added to kvvm's volumes during a restore operation in Strict mode. [#1493](https://github.com/deckhouse/virtualization/pull/1493) | ||
- **[vmop]** Fixed garbage collector behavior: previously, all VMOP objects were deleted after restarting the virtualization controller, ignoring cleanup rules. [#1471](https://github.com/deckhouse/virtualization/pull/1471) | ||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue (typo): Add 'is' to 'a disk that is in the "Terminating" phase' for grammatical correctness.
Update the phrase to 'a disk that is in the "Terminating" phase' for correct grammar.