mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Fix bug: can not deploy VM on ESXi due to incorrect
secondaryStorageResource used for SSVM Issue: For deploying VMware VMs, cloud service on SSVM needs to be started with PremiumSecondaryStorageResource, a bunch of VMware related commands rely on it. Changes: 1)include cloud-vmware.jar in systemvm.zip 2)start cloud service in SSVM with PremiumSecondaryStorageResource RB: https://reviews.apache.org/r/6320/ Send-by: mice_xia@tcloudcomputing.com
This commit is contained in:
parent
e116c24989
commit
3996094e55
@ -131,6 +131,7 @@
|
|||||||
<property name="console-proxy.jar" value="cloud-console-proxy.jar" />
|
<property name="console-proxy.jar" value="cloud-console-proxy.jar" />
|
||||||
<property name="api.jar" value="cloud-api.jar"/>
|
<property name="api.jar" value="cloud-api.jar"/>
|
||||||
<property name="vmware-base.jar" value="cloud-vmware-base.jar" />
|
<property name="vmware-base.jar" value="cloud-vmware-base.jar" />
|
||||||
|
<property name="vmware.jar" value="cloud-vmware.jar" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Import information about the build version and company information
|
Import information about the build version and company information
|
||||||
|
|||||||
@ -1063,7 +1063,7 @@ public class SecondaryStorageManagerImpl implements SecondaryStorageVmManager, V
|
|||||||
if (profile.getHypervisorType() == HypervisorType.Hyperv) {
|
if (profile.getHypervisorType() == HypervisorType.Hyperv) {
|
||||||
buf.append(" resource=com.cloud.storage.resource.CifsSecondaryStorageResource");
|
buf.append(" resource=com.cloud.storage.resource.CifsSecondaryStorageResource");
|
||||||
} else {
|
} else {
|
||||||
buf.append(" resource=com.cloud.storage.resource.NfsSecondaryStorageResource");
|
buf.append(" resource=com.cloud.storage.resource.PremiumSecondaryStorageResource");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
buf.append(" resource=com.cloud.storage.resource.NfsSecondaryStorageResource");
|
buf.append(" resource=com.cloud.storage.resource.NfsSecondaryStorageResource");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user