Actions
Bug #4015
closedCannot provisiong oVirt/RHEV VM from template with finish script
Status:
Closed
Priority:
Normal
Assignee:
Category:
Compute resources - oVirt
Target version:
Description
Provisioning a VM on oVirt/RHEV via a template requires a finish template to be run over SSH in order to configure the provisioned VM. In order for Foreman to attempt to run the finish template over SSH, the compute resource needs to provide an :image capability.
From app/models/concerns/orchestration/ssh_provision.rb:
def ssh_provision?
compute_attributes.present? && capabilities.include?(:image)
end
However, ovirt doesn't (app/models/compute_resources/foreman/model/ovirt.rb):
def capabilities
[:build]
end
This prevents us from building VMs in RHEV from a RHEV template, something we would much prefer to do over kickstarting every time.
Updated by Dominic Cleal over 11 years ago
- Status changed from New to Ready For Testing
- Assignee set to Jimmi Dyson
- Target version set to 1.9.2
Updated by Anonymous about 11 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset 99527500ba12e0217e853ec85c709e73337c84ee.
Actions