Skip to content

Commit daf7d5e

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

File tree

2 files changed

+112
-0
lines changed

2 files changed

+112
-0
lines changed

CHANGELOG/CHANGELOG-v1.1.0.yml

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

CHANGELOG/CHANGELOG-v1.1.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
- **[observability]** Repeat "Network details" graphs for all networks specified in the VM spec. [#1475](https://github.com/deckhouse/virtualization/pull/1475)
9+
- **[vm]** Added the ability to migrate VMs using disks on local storage. Restrictions:
10+
- The feature is not available in the CE edition.
11+
- Migration is only possible for running VMs (`phase: Running`).
12+
- Migration of VMs with local disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) is not supported yet.
13+
14+
Added the ability to migrate storage for VM disks (change `StorageClass`). Restrictions:
15+
- The feature is not available in the CE edition.
16+
- Migration is only possible for running VMs (`phase: Running`).
17+
- Storage migration for disks connected via `VirtualMachineBlockDeviceAttachment` (hotplug) is not supported yet. [#1360](https://github.com/deckhouse/virtualization/pull/1360)
18+
- **[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)
19+
20+
## Fixes
21+
22+
23+
- **[module]** fix install packages via dnf and yum [#1464](https://github.com/deckhouse/virtualization/pull/1464)
24+
- **[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)
25+
- **[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)
26+
- **[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)
27+
- **[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)
28+

0 commit comments

Comments
 (0)