You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by al...@apache.org on 2012/08/08 20:55:23 UTC

[7/43] git commit: add devcloud marvin configuration file

add devcloud marvin configuration file


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/4429c2d9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/4429c2d9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/4429c2d9

Branch: refs/heads/vpc
Commit: 4429c2d95ca253dfa4b5698cf22d2812088fa11e
Parents: 8e1f32f
Author: Edison Su <su...@gmail.com>
Authored: Wed Aug 8 10:46:43 2012 -0700
Committer: Edison Su <su...@gmail.com>
Committed: Wed Aug 8 10:46:43 2012 -0700

----------------------------------------------------------------------
 tools/devcloud/devcloud.cfg |   91 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 91 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/4429c2d9/tools/devcloud/devcloud.cfg
----------------------------------------------------------------------
diff --git a/tools/devcloud/devcloud.cfg b/tools/devcloud/devcloud.cfg
new file mode 100644
index 0000000..c0ea6c0
--- /dev/null
+++ b/tools/devcloud/devcloud.cfg
@@ -0,0 +1,91 @@
+{
+    "zones": [
+        {
+            "name": "DevCloud0", 
+            "providers": [
+                {
+                    "broadcastdomainrange": "ZONE", 
+                    "name": "VirtualRouter"
+                }
+            ], 
+            "dns2": "4.4.4.4", 
+            "dns1": "8.8.8.8", 
+            "networktype": "Basic", 
+            "pods": [
+                {
+                    "endip": "10.0.2.220", 
+                    "name": "test00", 
+                    "startip": "10.0.2.200", 
+                    "guestIpRanges": [
+                        {
+                            "startip": "10.0.2.100", 
+                            "endip": "10.0.2.199", 
+                            "netmask": "255.255.255.0", 
+                            "gateway": "10.0.2.2"
+                        }
+                    ], 
+                    "netmask": "255.255.255.0", 
+                    "clusters": [
+                        {
+                            "clustername": "test000", 
+                            "hypervisor": "XenServer", 
+                            "hosts": [
+                                {
+                                    "username": "root", 
+                                    "url": "http://10.0.2.15/", 
+                                    "password": "password"
+                                }
+                            ], 
+                            "clustertype": "CloudManaged"
+                        }
+                    ], 
+                    "gateway": "10.0.2.2"
+                }
+            ], 
+            "internaldns1": "10.0.2.3", 
+            "internaldns2": "10.0.2.3", 
+            "secondaryStorages": [
+                {
+                    "url": "nfs://10.0.2.15/opt/storage/secondary"
+                }
+            ]
+        }
+    ], 
+    "dbSvr": {
+        "dbSvr": "localhost", 
+        "passwd": "cloud", 
+        "db": "cloud", 
+        "port": 3306, 
+        "user": "cloud"
+    }, 
+    "logger": [
+        {
+            "name": "TestClient", 
+            "file": "/tmp/testclient.log"
+        }, 
+        {
+            "name": "TestCase", 
+            "file": "/tmp/testcase.log"
+        }
+    ], 
+    "globalConfig": [
+        {
+            "name": "expunge.workers", 
+            "value": "3"
+        }, 
+        {
+            "name": "expunge.delay", 
+            "value": "60"
+        }, 
+        {
+            "name": "expunge.interval", 
+            "value": "60"
+        }
+    ], 
+    "mgtSvr": [
+        {
+            "mgtSvrIp": "127.0.0.1", 
+            "port": 8096
+        }
+    ]
+}