You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltacloud.apache.org by sa...@eucalyptus.com on 2011/05/09 22:54:49 UTC

[PATCH] enable elastic IPs for eucalyptus

From: Sang-Min Park <sp...@eucalyptus.com>

---
 .../drivers/eucalyptus/eucalyptus_driver.rb        |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb b/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
index c94dc6a..48f23d6 100644
--- a/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
+++ b/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
@@ -22,7 +22,7 @@ module Deltacloud
       class EucalyptusDriver < EC2::EC2Driver
 
         def supported_collections
-          DEFAULT_COLLECTIONS + [ :keys, :buckets ]
+          DEFAULT_COLLECTIONS + [ :keys, :buckets, :addresses ]
         end
 
         feature :instances, :user_data
@@ -75,7 +75,7 @@ module Deltacloud
         end
 
         def default_image_owner
-          "self"
+          nil  # list all images 
         end
 
         def default_image_type
-- 
1.7.4.1