Skip to content

Commit d34b7ad

Browse files
deckhouse-BOaTswainloktev-d
authored andcommitted
Changelog v1.1.0 (#1450)
Signed-off-by: deckhouse-BOaTswain <[email protected]> Co-authored-by: loktev-d <[email protected]>
1 parent d64d0a8 commit d34b7ad

File tree

2 files changed

+109
-0
lines changed

2 files changed

+109
-0
lines changed

CHANGELOG/CHANGELOG-v1.1.0.yml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
ci:
2+
features:
3+
- summary: add alias linter for golangci-lint
4+
pull_request: https://github.com/deckhouse/virtualization/pull/1387
5+
fixes:
6+
- summary: E2E tests no longer fail due to kubectl logs exit codes during teardown.
7+
pull_request: https://github.com/deckhouse/virtualization/pull/1466
8+
- summary: fix variable name for delve debug
9+
pull_request: https://github.com/deckhouse/virtualization/pull/1442
10+
core:
11+
features:
12+
- summary: add e2e framework
13+
pull_request: https://github.com/deckhouse/virtualization/pull/1366
14+
docs:
15+
fixes:
16+
- summary: english documentation remove cyrillic characters cdi_kubevirt_patching
17+
pull_request: https://github.com/deckhouse/virtualization/pull/1481
18+
module:
19+
features:
20+
- summary: >-
21+
Added the `D8VirtualizationDVCRInsufficientCapacityRisk` alert, which warns of the risk of
22+
insufficient free space in the virtual machine image storage (DVCR).
23+
pull_request: https://github.com/deckhouse/virtualization/pull/1461
24+
- summary: >-
25+
Added the `KubeNodeAwaitingVirtualMachinesEvictionBeforeShutdown` alert, which is triggered
26+
when the node hosting the virtual machines is about to shut down but VM evacuation is not
27+
yet complete.
28+
pull_request: https://github.com/deckhouse/virtualization/pull/1268
29+
observability:
30+
fixes:
31+
- summary: >-
32+
Fixed the graph on the virtual machine dashboard that displays memory copy statistics during
33+
VM migration.
34+
pull_request: https://github.com/deckhouse/virtualization/pull/1474
35+
vd:
36+
fixes:
37+
- summary: respect user-specified storage class when restoring from snapshot
38+
pull_request: https://github.com/deckhouse/virtualization/pull/1417
39+
vm:
40+
features:
41+
- summary: >-
42+
Added the ability to migrate VMs using disks on local storage. Restrictions:
43+
44+
- The feature is not available in the CE edition.
45+
46+
- Migration is only possible for running VMs (`phase: Running`).
47+
48+
- Migration of VMs with local disks connected via `VirtualMachineBlockDeviceAttachment`
49+
(hotplug) is not supported yet.
50+
51+
52+
Added the ability to migrate storage for VM disks (change `StorageClass`). Restrictions:
53+
54+
- The feature is not available in the CE edition.
55+
56+
- Migration is only possible for running VMs (`phase: Running`).
57+
58+
- Storage migration for disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug)
59+
is not supported yet.
60+
pull_request: https://github.com/deckhouse/virtualization/pull/1360
61+
vmclass:
62+
fixes:
63+
- summary: >-
64+
Use qemu64 CPU model for Discovery and Features types to fix nested virtualization on AMD
65+
hosts
66+
pull_request: https://github.com/deckhouse/virtualization/pull/1446
67+
vmop:
68+
features:
69+
- summary: >-
70+
Added an operation with the `Clone` type to create a clone of a VM from an existing VM
71+
(`VirtualMachineOperation` `.spec.type: Clone`).
72+
pull_request: https://github.com/deckhouse/virtualization/pull/1418
73+
fixes:
74+
- summary: >-
75+
Fix the problem where a disk that in the "Terminating" phase was wrongly added to kvvm's
76+
volumes during a restore operation in Strict mode.
77+
pull_request: https://github.com/deckhouse/virtualization/pull/1493
78+
- summary: >-
79+
Fixed garbage collector behavior: previously, all VMOP objects were deleted after restarting
80+
the virtualization controller, ignoring cleanup rules.
81+
pull_request: https://github.com/deckhouse/virtualization/pull/1471
82+

CHANGELOG/CHANGELOG-v1.1.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Changelog v1.1
2+
3+
## Features
4+
5+
6+
- **[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)
7+
- **[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)
8+
- **[vm]** Added the ability to migrate VMs using disks on local storage. Restrictions:
9+
- The feature is not available in the CE edition.
10+
- Migration is only possible for running VMs (`phase: Running`).
11+
- Migration of VMs with local disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) is not supported yet.
12+
13+
Added the ability to migrate storage for VM disks (change `StorageClass`). Restrictions:
14+
- The feature is not available in the CE edition.
15+
- Migration is only possible for running VMs (`phase: Running`).
16+
- Storage migration for disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) is not supported yet. [#1360](https://github.com/deckhouse/virtualization/pull/1360)
17+
- **[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)
18+
19+
## Fixes
20+
21+
22+
- **[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)
23+
- **[vd]** respect user-specified storage class when restoring from snapshot [#1417](https://github.com/deckhouse/virtualization/pull/1417)
24+
- **[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)
25+
- **[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)
26+
- **[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)
27+

0 commit comments

Comments
 (0)