1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/compute/helper.rb

52 lines
1.2 KiB
Ruby
Raw Normal View History

2011-01-03 16:34:08 -05:00
def compute_providers
{
:aws => {
:server_attributes => {},
2011-01-03 16:34:08 -05:00
:mocked => true
},
:bluebox => {
2011-02-23 18:00:56 -05:00
:server_attributes => {
:image_id => '03807e08-a13d-44e4-b011-ebec7ef2c928', # Ubuntu 10.04 64bit
:password => 'chunkybacon'
2011-02-23 18:00:56 -05:00
},
:mocked => false
},
:brightbox => {
2011-01-03 16:34:08 -05:00
:server_attributes => {
:image_id => 'img-2ab98' # Ubuntu Lucid 10.04 server (i686)
2011-01-03 16:34:08 -05:00
},
:mocked => false
},
:glesys => {
:mocked => false
},
:ninefold => {
:mocked => false
},
:rackspace => {
2011-01-03 16:34:08 -05:00
:server_attributes => {
:image_id => 49, # image 49 = Ubuntu 10.04 LTS (lucid)
:name => "fog_#{Time.now.to_i}"
},
:mocked => true
},
:slicehost => {
2011-01-03 16:34:08 -05:00
:server_attributes => {
:image_id => 49, # image 49 = Ubuntu 10.04 LTS (lucid)
:name => "fog_#{Time.now.to_i}"
},
:mocked => false
2011-02-23 18:00:56 -05:00
},
:voxel => {
2011-02-23 18:00:56 -05:00
:server_attributes => {
:name => "fog.#{Time.now.to_i}",
:disk_size => 10,
:processing_cores => 1,
:image_id => 55, # image 55 = Ubuntu 10.04 (Lucid), 64-bit, base install
:facility => "LDJ1"
},
:mocked => false
2011-01-03 16:34:08 -05:00
}
}
end