Skip to content

Commit 4c960c5

Browse files
authored
[IUO] update feature gate defaults for CNV 4.22 (#3979)
##### Short description: CNV 4.22 changed decentralizedLiveMigration default to enabled, added incrementalBackup gate, and added DecentralizedLiveMigration to KubeVirt hardcoded gates. ##### More details: ##### What this PR does / why we need it: ##### Which issue(s) this PR fixes: ##### Special notes for reviewer: ##### jira-ticket: https://issues.redhat.com/browse/CNV-80649 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Decentralized Live Migration is now enabled by default, providing improved virtualization migration capabilities. * Incremental Backup feature is now available (disabled by default). <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 18e0f72 commit 4c960c5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/install_upgrade_operators/constants.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"HypervStrictCheck",
3434
"VideoConfig",
3535
"HotplugVolumes",
36+
"DecentralizedLiveMigration",
3637
}
3738
EXPECTED_CDI_HARDCODED_FEATUREGATES = {
3839
"DataVolumeClaimAdoption",
@@ -46,10 +47,11 @@
4647
"alignCPUs": FG_DISABLED,
4748
"downwardMetrics": FG_DISABLED,
4849
"enableMultiArchBootImageImport": FG_DISABLED,
49-
"decentralizedLiveMigration": FG_DISABLED,
50+
"decentralizedLiveMigration": FG_ENABLED,
5051
"declarativeHotplugVolumes": FG_DISABLED,
5152
"videoConfig": FG_ENABLED,
5253
"objectGraph": FG_DISABLED,
54+
"incrementalBackup": FG_DISABLED,
5355
}
5456
CUSTOM_DATASOURCE_NAME = "custom-datasource"
5557
WORKLOAD_UPDATE_STRATEGY_KEY_NAME = "workloadUpdateStrategy"

0 commit comments

Comments
 (0)