Instead of being equal to the minimum ones, these are reusing current
constants.
---
 lib/constants.py |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/constants.py b/lib/constants.py
index 64669cc..16931ac 100644
--- a/lib/constants.py
+++ b/lib/constants.py
@@ -1873,11 +1873,11 @@ IPOLICY_DEFAULTS = {
     ISPEC_NIC_COUNT: 1,
     },
   ISPECS_MAX: {
-    ISPEC_MEM_SIZE: 128,
-    ISPEC_CPU_COUNT: 1,
-    ISPEC_DISK_COUNT: 1,
-    ISPEC_DISK_SIZE: 1024,
-    ISPEC_NIC_COUNT: 1,
+    ISPEC_MEM_SIZE: 32768,
+    ISPEC_CPU_COUNT: 8,
+    ISPEC_DISK_COUNT: MAX_DISKS,
+    ISPEC_DISK_SIZE: 1024 * 1024,
+    ISPEC_NIC_COUNT: MAX_NICS,
     },
   ISPECS_STD: {
     ISPEC_MEM_SIZE: 128,
-- 
1.7.3.1

Reply via email to