mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merged pull request #274 from brightbox/master.
Updated Image identifiers
This commit is contained in:
commit
2e7d255322
4 changed files with 4 additions and 5 deletions
|
@ -30,7 +30,7 @@ module Fog
|
||||||
|
|
||||||
def initialize(attributes={})
|
def initialize(attributes={})
|
||||||
self.flavor_id ||= 'typ-4nssg' # Nano
|
self.flavor_id ||= 'typ-4nssg' # Nano
|
||||||
self.image_id ||= 'img-tjjt6' # Lucid 10.04 LTS 64bit
|
self.image_id ||= 'img-2ab98' # Ubuntu Lucid 10.04 server (i686)
|
||||||
super
|
super
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ def compute_providers
|
||||||
},
|
},
|
||||||
Brightbox => {
|
Brightbox => {
|
||||||
:server_attributes => {
|
:server_attributes => {
|
||||||
:image_id => 'img-9vxqi' # image img-9vxqi = Ubuntu Maverick 10.10 server
|
:image_id => 'img-2ab98' # Ubuntu Lucid 10.04 server (i686)
|
||||||
},
|
},
|
||||||
:mocked => false
|
:mocked => false
|
||||||
},
|
},
|
||||||
|
|
|
@ -6,7 +6,7 @@ Shindo.tests('Bluebox::Compute | block requests', ['bluebox']) do
|
||||||
'hostname' => String,
|
'hostname' => String,
|
||||||
'id' => String,
|
'id' => String,
|
||||||
'ips' => [{'address' => String}],
|
'ips' => [{'address' => String}],
|
||||||
'lb_applications' => [{'lb_application_name' => String, 'lb_application_id' => String}]
|
'lb_applications' => [{'lb_application_name' => String, 'lb_application_id' => String}],
|
||||||
'memory' => Integer,
|
'memory' => Integer,
|
||||||
'product' => Bluebox::Compute::Formats::PRODUCT,
|
'product' => Bluebox::Compute::Formats::PRODUCT,
|
||||||
'status' => String,
|
'status' => String,
|
||||||
|
|
|
@ -32,8 +32,7 @@ NilClass.send :include, Fog::Brightbox::Nullable::Zone
|
||||||
class Brightbox
|
class Brightbox
|
||||||
module Compute
|
module Compute
|
||||||
module TestSupport
|
module TestSupport
|
||||||
# image img-9vxqi = Ubuntu Maverick 10.10 server
|
IMAGE_IDENTIFER = "img-2ab98" # Ubuntu Lucid 10.04 server (i686)
|
||||||
IMAGE_IDENTIFER = "img-9vxqi"
|
|
||||||
end
|
end
|
||||||
module Formats
|
module Formats
|
||||||
module Struct
|
module Struct
|
||||||
|
|
Loading…
Reference in a new issue