Skip to content

Commit

Permalink
Merge pull request #22517 from jaywcarman/fix_cloud_provision_quota_c…
Browse files Browse the repository at this point in the history
…pu_mem_calcs

Fix cloud provision quota memory and cpu counting
  • Loading branch information
kbrock authored May 30, 2023
2 parents 5fb8ce7 + 8c04616 commit 1919261
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/models/mixins/miq_provision_quota_mixin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,9 @@ def flavor(request)
end

def number_of_cpus(prov, cloud, flavor_obj)
return flavor_obj.try(:cpus) if cloud
num_cpus = flavor_obj.try(:cpus) if cloud
return num_cpus if num_cpus.present?

request = prov.kind_of?(MiqRequest) ? prov : prov.miq_request
num_cpus = request.get_option(:number_of_sockets).to_i * request.get_option(:cores_per_socket).to_i
num_cpus.zero? ? request.get_option(:number_of_cpus).to_i : num_cpus
Expand All @@ -384,7 +386,9 @@ def storage(prov, cloud, vendor, flavor_obj = nil)
end

def memory(prov, cloud, vendor, flavor_obj = nil)
return flavor_obj.try(:memory) if cloud
memory = flavor_obj.try(:memory) if cloud
return memory if memory.present?

request = prov.kind_of?(MiqRequest) ? prov : prov.miq_request
memory = request.get_option(:vm_memory).to_i
%w(amazon openstack google).include?(vendor) ? memory : memory.megabytes
Expand Down

0 comments on commit 1919261

Please sign in to comment.