mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
// https://github.com/harvester/dashboard/releases/tag/v1.3.0
|
|
const featuresV130 = [];
|
|
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.3.1
|
|
const featuresV131 = [
|
|
'autoRotateRke2CertsSetting',
|
|
'supportBundleNodeCollectionTimeoutSetting'
|
|
];
|
|
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.3.2
|
|
const featuresV132 = [
|
|
'autoRotateRke2CertsSetting',
|
|
'supportBundleNodeCollectionTimeoutSetting',
|
|
'kubeconfigDefaultTokenTTLMinutesSetting',
|
|
'improveMaintenanceMode',
|
|
];
|
|
|
|
// TODO: change to https://github.com/harvester/dashboard/releases/tag/v1.4.0 after v1.4.0 release
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.4.0-rc5
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.4.0-rc4
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.4.0-rc3
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.4.0-rc2
|
|
// https://github.com/harvester/dashboard/releases/tag/v1.4.0-rc1
|
|
const featuresV140 = [
|
|
'autoRotateRke2CertsSetting',
|
|
'supportBundleNodeCollectionTimeoutSetting',
|
|
'kubeconfigDefaultTokenTTLMinutesSetting',
|
|
'cpuPinning',
|
|
'usbPassthrough',
|
|
'volumeEncryption',
|
|
'schedulingVMBackup',
|
|
'vmSnapshotQuota',
|
|
'longhornV2LVMSupport',
|
|
'improveMaintenanceMode',
|
|
];
|
|
|
|
export const RELEASE_FEATURES = {
|
|
'v1.3.0': featuresV130,
|
|
'v1.3.1': featuresV131,
|
|
'v1.3.2': featuresV132,
|
|
'v1.4.0': featuresV140,
|
|
};
|