mirror of https://github.com/apache/cloudstack.git
Update schema-41310to41400.sql (#3999)
* Update schema-41310to41400.sql * update desc * update the config key as well * Update schema-41310to41400.sql (#4012) * Update schema-41310to41400.sql * update configkey desc
This commit is contained in:
parent
22b4cca50d
commit
d52f3f4a6b
|
|
@ -19,6 +19,10 @@
|
|||
-- Schema upgrade from 4.13.1.0 to 4.14.0.0
|
||||
--;
|
||||
|
||||
-- Update the description to indicate this only works with KVM + Ceph
|
||||
-- (not implemented properly atm for KVM+NFS/local, and it accidentaly works with XS + NFS. Not applicable for VMware)
|
||||
UPDATE `cloud`.`configuration` SET `description`='Indicates whether to always backup primary storage snapshot to secondary storage. Keeping snapshots only on Primary storage is applicable for KVM + Ceph only.' WHERE `name`='snapshot.backup.to.secondary';
|
||||
|
||||
-- KVM: enable storage data motion on KVM hypervisor_capabilities
|
||||
UPDATE `cloud`.`hypervisor_capabilities` SET `storage_motion_supported` = 1 WHERE `hypervisor_capabilities`.`hypervisor_type` = 'KVM';
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public interface SnapshotManager extends Configurable {
|
|||
"Time in seconds between retries in backing up snapshot to secondary", false, ConfigKey.Scope.Global, null);
|
||||
|
||||
public static final ConfigKey<Boolean> BackupSnapshotAfterTakingSnapshot = new ConfigKey<Boolean>(Boolean.class, "snapshot.backup.to.secondary", "Snapshots", "true",
|
||||
"Indicates whether to always backup primary storage snapshot to secondary storage", false, ConfigKey.Scope.Global, null);
|
||||
"Indicates whether to always backup primary storage snapshot to secondary storage. Keeping snapshots only on Primary storage is applicable for KVM + Ceph only.", false, ConfigKey.Scope.Global, null);
|
||||
|
||||
void deletePoliciesForVolume(Long volumeId);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue