mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
83b1a05f8c
https://www.geekwire.com/2015/ibm-acquires-seattles-blue-box-in-exit-for-private-cloud-startup/ BlueBox was acquired by IBM and they moved towards OpenStack. While I no longer work at BlueBox an IBM Company, I wrote large parts of the server side and to the best of my knowledge this offering is no longer available.
83 lines
2.6 KiB
Ruby
83 lines
2.6 KiB
Ruby
def compute_providers
|
|
{
|
|
:aws => {
|
|
:server_attributes => {},
|
|
:mocked => true
|
|
},
|
|
:cloudstack => {
|
|
:provider_attributes => {
|
|
:cloudstack_host => 'http://host.foo'
|
|
},
|
|
:server_attributes => {}.tap do |hash|
|
|
[:zone_id, :network_ids, :template_id, :service_offering_id].each do |k|
|
|
key = "cloudstack_#{k}".to_sym
|
|
if Fog.credentials[key]
|
|
hash[k]= Fog.credentials[key]
|
|
end
|
|
end
|
|
end,
|
|
:volume_attributes => {:name => "somevolume"}.tap do |hash|
|
|
[:zone_id, :disk_offering_id].each do |k|
|
|
key = "cloudstack_#{k}".to_sym
|
|
if Fog.credentials[key]
|
|
hash[k]= Fog.credentials[key]
|
|
end
|
|
end
|
|
end,
|
|
:snapshot_attributes => {:volume_id => "89198f7c-0245-aa1d-136a-c5f479ef9db7"}.tap do |hash|
|
|
[:volume_id, :domain_id, :policy_id].each do |k|
|
|
key = "cloudstack_#{k}".to_sym
|
|
if Fog.credentials[key]
|
|
hash[k]= Fog.credentials[key]
|
|
end
|
|
end
|
|
end,
|
|
:security_group_attributes => {:name => "cloudstack.sg.#{Time.now.to_i}"},
|
|
:security_group_rule_attributes => {
|
|
:cidr => '0.0.0.0/0',
|
|
:start_port => 123,
|
|
:end_port => 456,
|
|
:protocol => 'tcp'
|
|
},
|
|
:disk_offering_attributes => { :name => "new disk offering", :display_text => 'New Disk Offering' },
|
|
:egress_firewall_rule_attributes => { :protocol => "tcp", :network_id => "8aacae29-e0a4-4b7b-8a7a-3ee11cfb4362", :cidr_list =>"10.1.1.0/24"},
|
|
:public_ip_address_attributes => {}.tap do |hash|
|
|
[:zone_id].each do |k|
|
|
key = "cloudstack_#{k}".to_sym
|
|
if Fog.credentials[key]
|
|
hash[k]= Fog.credentials[key]
|
|
end
|
|
end
|
|
end,
|
|
:mocked => true
|
|
},
|
|
:glesys => {
|
|
:server_attributes => {
|
|
:rootpassword => "secret_password_#{Time.now.to_i}",
|
|
:hostname => "fog.example#{Time.now.to_i}.com"
|
|
},
|
|
:mocked => false
|
|
},
|
|
:ibm => {
|
|
:server_attributes => {},
|
|
:mocked => true
|
|
},
|
|
:openstack => {
|
|
:mocked => true,
|
|
:server_attributes => {
|
|
:flavor_ref => 2,
|
|
:image_ref => "0e09fbd6-43c5-448a-83e9-0d3d05f9747e",
|
|
:name => "fog_#{Time.now.to_i}"
|
|
}
|
|
},
|
|
:rackspace => {
|
|
:provider_attributes => { :version => :v2 },
|
|
:server_attributes => {
|
|
:image_id => "23b564c9-c3e6-49f9-bc68-86c7a9ab5018", # Ubuntu 12.04 LTS (Precise Pangolin)
|
|
:flavor_id => 2,
|
|
:name => "fog_#{Time.now.to_i}"
|
|
},
|
|
:mocked => true
|
|
}
|
|
}
|
|
end
|