QuickCloud: add a network offering without any services
This can be used to avoid starting up a virtual router simply for the purposes 
of offering dhcp and dns services
With the QuickCloudNoServices offering, no virtual router will be started up 
and the vm instance will not get a CloudStack-assigned IP address.
Instead, the VM will simply get whatever IP address is offered by an DHCP 
service that happens to be running in the same network


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

Branch: refs/heads/quickcloud2
Commit: cd6cc689586041f4471cb2b54f4a4385d2228063
Parents: 46712c5
Author: Chiradeep Vittal <chirad...@apache.org>
Authored: Tue Mar 26 13:36:04 2013 -0700
Committer: Chiradeep Vittal <chirad...@apache.org>
Committed: Fri Apr 5 15:12:16 2013 -0700

----------------------------------------------------------------------
 api/src/com/cloud/offering/NetworkOffering.java    |    1 +
 .../src/com/cloud/network/NetworkManagerImpl.java  |   16 +++++++++++++-
 2 files changed, 15 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/cd6cc689/api/src/com/cloud/offering/NetworkOffering.java
----------------------------------------------------------------------
diff --git a/api/src/com/cloud/offering/NetworkOffering.java 
b/api/src/com/cloud/offering/NetworkOffering.java
index 8cb8299..bd14acd 100644
--- a/api/src/com/cloud/offering/NetworkOffering.java
+++ b/api/src/com/cloud/offering/NetworkOffering.java
@@ -46,6 +46,7 @@ public interface NetworkOffering extends 
InfrastructureEntity, InternalIdentity,
     public final static String SystemPrivateGatewayNetworkOffering = 
"System-Private-Gateway-Network-Offering";
 
     public final static String DefaultSharedNetworkOfferingWithSGService = 
"DefaultSharedNetworkOfferingWithSGService";
+    public final static String QuickCloudNoServices = "QuickCloudNoServices";
     public final static String 
DefaultIsolatedNetworkOfferingWithSourceNatService = 
"DefaultIsolatedNetworkOfferingWithSourceNatService";
     public final static String OvsIsolatedNetworkOfferingWithSourceNatService 
= "OvsIsolatedNetworkOfferingWithSourceNatService";
     public final static String DefaultSharedNetworkOffering = 
"DefaultSharedNetworkOffering";

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/cd6cc689/server/src/com/cloud/network/NetworkManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/network/NetworkManagerImpl.java 
b/server/src/com/cloud/network/NetworkManagerImpl.java
index 6296011..a97f2ce 100755
--- a/server/src/com/cloud/network/NetworkManagerImpl.java
+++ b/server/src/com/cloud/network/NetworkManagerImpl.java
@@ -968,9 +968,21 @@ public class NetworkManagerImpl extends ManagerBase 
implements NetworkManager, L
         // diff between offering #1 and #2 - securityGroup is enabled for the 
first, and disabled for the third
 
         NetworkOfferingVO offering = null;
+        if 
(_networkOfferingDao.findByUniqueName(NetworkOffering.QuickCloudNoServices) == 
null) {
+            offering =
+                    
_configMgr.createNetworkOffering(NetworkOffering.QuickCloudNoServices,
+                            "Offering for QuickCloud with no services", 
TrafficType.Guest, null, true,
+                            Availability.Optional, null, new 
HashMap<Network.Service, Set<Network.Provider>>(), true,
+                            Network.GuestType.Shared, false, null, true, null, 
true, false);
+            offering.setState(NetworkOffering.State.Enabled);
+            _networkOfferingDao.update(offering.getId(), offering);
+        }
         if 
(_networkOfferingDao.findByUniqueName(NetworkOffering.DefaultSharedNetworkOfferingWithSGService)
 == null) {
-            offering = 
_configMgr.createNetworkOffering(NetworkOffering.DefaultSharedNetworkOfferingWithSGService,
 "Offering for Shared Security group enabled networks", TrafficType.Guest, null,
-                    true, Availability.Optional, null, 
defaultSharedNetworkOfferingProviders, true, Network.GuestType.Shared, false, 
null, true, null, true, false);
+            offering =
+                    
_configMgr.createNetworkOffering(NetworkOffering.DefaultSharedNetworkOfferingWithSGService,
+                            "Offering for Shared Security group enabled 
networks", TrafficType.Guest, null, true,
+                            Availability.Optional, null, 
defaultSharedNetworkOfferingProviders, true,
+                            Network.GuestType.Shared, false, null, true, null, 
true, false);
             offering.setState(NetworkOffering.State.Enabled);
             _networkOfferingDao.update(offering.getId(), offering);
         }

Reply via email to