Skip to content

Commit a8681e7

Browse files
authored
Re-generate changelog v1.1.0
Signed-off-by: deckhouse-BOaTswain <[email protected]>
1 parent d346247 commit a8681e7

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

CHANGELOG/CHANGELOG-v1.1.0.yml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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+
vm:
36+
features:
37+
- summary: >-
38+
Added the ability to migrate VMs using disks on local storage. Restrictions:
39+
40+
- The feature is not available in the CE edition.
41+
42+
- Migration is only possible for running VMs (`phase: Running`).
43+
44+
- Migration of VMs with local disks connected via `VirtualMachineBlockDeviceAttachment`
45+
(hotplug) is not supported yet.
46+
47+
48+
Added the ability to migrate storage for VM disks (change `StorageClass`). Restrictions:
49+
50+
- The feature is not available in the CE edition.
51+
52+
- Migration is only possible for running VMs (`phase: Running`).
53+
54+
- Storage migration for disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug)
55+
is not supported yet.
56+
pull_request: https://github.com/deckhouse/virtualization/pull/1360
57+
vmclass:
58+
fixes:
59+
- summary: >-
60+
Use qemu64 CPU model for Discovery and Features types to fix nested virtualization on AMD
61+
hosts
62+
pull_request: https://github.com/deckhouse/virtualization/pull/1446
63+
vmop:
64+
features:
65+
- summary: >-
66+
Added an operation with the `Clone` type to create a clone of a VM from an existing VM
67+
(`VirtualMachineOperation` `.spec.type: Clone`).
68+
pull_request: https://github.com/deckhouse/virtualization/pull/1418
69+
fixes:
70+
- summary: >-
71+
Fix the problem where a disk that in the "Terminating" phase was wrongly added to kvvm's
72+
volumes during a restore operation in Strict mode.
73+
pull_request: https://github.com/deckhouse/virtualization/pull/1493
74+
- summary: >-
75+
Fixed garbage collector behavior: previously, all VMOP objects were deleted after restarting
76+
the virtualization controller, ignoring cleanup rules.
77+
pull_request: https://github.com/deckhouse/virtualization/pull/1471
78+

CHANGELOG/CHANGELOG-v1.1.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
- **[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)
24+
- **[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)
25+
- **[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)
26+

0 commit comments

Comments
 (0)