diff --git a/lib/fog/openstack/requests/compute/get_limits.rb b/lib/fog/openstack/requests/compute/get_limits.rb index 8f22e3253..6938308fb 100644 --- a/lib/fog/openstack/requests/compute/get_limits.rb +++ b/lib/fog/openstack/requests/compute/get_limits.rb @@ -63,19 +63,15 @@ module Fog 'maxPersonalitySize' => 10240, 'maxSecurityGroupRules' => 20, 'maxTotalKeypairs' => 100, - 'maxTotalVolumes' => 10, 'maxSecurityGroups' => 10, 'maxTotalCores' => 20, 'maxTotalFloatingIps' => 10, - 'maxTotalVolumeGigabytes' => 1000, 'maxTotalRAMSize' => 51200, # Used - 'totalVolumesUsed' => 0, 'totalCoresUsed' => -1, 'totalRAMUsed' => -2048, 'totalInstancesUsed' => -1, - 'totalVolumeGigabytesUsed' => 0, 'totalSecurityGroupsUsed' => 0, 'totalKeyPairsUsed' => 0 } diff --git a/tests/openstack/requests/compute/limit_tests.rb b/tests/openstack/requests/compute/limit_tests.rb index b4f038089..a285024c3 100644 --- a/tests/openstack/requests/compute/limit_tests.rb +++ b/tests/openstack/requests/compute/limit_tests.rb @@ -21,17 +21,13 @@ Shindo.tests('Fog::Compute[:openstack] | limits requests', ['openstack']) do 'maxPersonalitySize' => Fixnum, 'maxSecurityGroupRules' => Fixnum, 'maxTotalKeypairs' => Fixnum, - 'maxTotalVolumes' => Fixnum, 'maxSecurityGroups' => Fixnum, 'maxTotalCores' => Fixnum, 'maxTotalFloatingIps' => Fixnum, - 'maxTotalVolumeGigabytes' => Fixnum, 'maxTotalRAMSize' => Fixnum, - 'totalVolumesUsed' => Fixnum, 'totalCoresUsed' => Fixnum, 'totalRAMUsed' => Fixnum, 'totalInstancesUsed' => Fixnum, - 'totalVolumeGigabytesUsed' => Fixnum, 'totalSecurityGroupsUsed' => Fixnum, 'totalKeyPairsUsed' => Fixnum }