Skip to content

Commit 11f1c67

Browse files
committed
use zero for external host cpu, ram
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 4290367 commit 11f1c67

File tree

1 file changed

+4
-4
lines changed
  • plugins/hypervisors/external/src/main/java/org/apache/cloudstack/hypervisor/external/resource

1 file changed

+4
-4
lines changed

plugins/hypervisors/external/src/main/java/org/apache/cloudstack/hypervisor/external/resource/ExternalResource.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@
6868

6969
public class ExternalResource implements ServerResource {
7070
protected Logger logger = LogManager.getLogger(getClass());
71-
protected static final int CPU = 4;
72-
protected static final long CPU_SPEED = 4000L;
73-
protected static final long RAM = 16000 * 1024 * 1024L;
74-
protected static final long DOM0_RAM = 768 * 1024 * 1024L;
71+
protected static final int CPU = 0;
72+
protected static final long CPU_SPEED = 0;
73+
protected static final long RAM = 0;
74+
protected static final long DOM0_RAM = 0;
7575
protected static final String CAPABILITIES = "hvm";
7676

7777
protected ExternalProvisioner externalProvisioner;

0 commit comments

Comments
 (0)