Module: BeakerHostGenerator::AbsSupport
- Defined in:
- lib/beaker-hostgenerator/abs_support.rb
Overview
Utility functions for supporting CI.next and the AlwaysBeScheduling hypervisor.
Class Method Summary collapse
-
.extract_templates(config) ⇒ Object
Given an existing, fully-specified host configuration, count the number of hosts using each template, and return a map of template name to host count.
Class Method Details
.extract_templates(config) ⇒ Object
Given an existing, fully-specified host configuration, count the number of hosts using each template, and return a map of template name to host count.
For example, given the following config (parts omitted for brevity):
{"HOSTS"=>
{"centos9-64-1"=>
{"template"=>"centos-9-x86_64", ...},
"redhat7-64-1"=>
{"template"=>"redhat-7-x86_64", ...},
"centos9-64-2"=>
{"template"=>"centos-9-x86_64", ...}},
...
}}
Returns the following map:
{"centos-9-x86_64"=>2, "redhat-7-x86_64"=>1}
23 24 25 26 27 28 |
# File 'lib/beaker-hostgenerator/abs_support.rb', line 23 def extract_templates(config) templates_hosts = config['HOSTS'].values.group_by { |h| h['template'] } templates_hosts.each do |template, hosts| templates_hosts[template] = hosts.count end end |