Sha256: 55435cc5cb30a4057d66e718ef5da39743d91a9352152e4e5581cd44b12668d1
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
module HammerCLIForeman module ComputeResources class Ovirt < Base def name 'oVirt' end def compute_attributes [ ['cluster', _('ID of cluster to use')], ['template', _('Hardware profile to use')], ['cores', _('Integer value, number of cores')], ['memory', _('Amount of memory, integer value in bytes')] ] end def host_attributes [ ['start', _('Boolean (expressed as 0 or 1), whether to start the machine or not')] ] end def interface_attributes [ ['name', _('Compute name, e.g. eth0')], ['network', _('Select one of available networks for a cluster, must be an ID')], ['interface', _('Interface type')] ] end def volume_attributes [ ['size_gb', _('Volume size in GB, integer value')], ['storage_domain', _('ID of storage domain')], ['bootable', _('Boolean, only one volume can be bootable')] ] end def provider_specific_fields [ Fields::Field.new(:label => _('Datacenter'), :path => [:datacenter]) ] end def mandatory_resource_options super + %i[url user password datacenter] end end HammerCLIForeman.register_compute_resource('ovirt', Ovirt.new) end end
Version data entries
3 entries across 3 versions & 1 rubygems