Bug 1833851
Summary: | [4.4 Beta] Cannot export VM as OVA | ||
---|---|---|---|
Product: | Red Hat Enterprise Virtualization Manager | Reporter: | Germano Veit Michel <gveitmic> |
Component: | ovirt-engine | Assignee: | Nobody <nobody> |
Status: | CLOSED DUPLICATE | QA Contact: | meital avital <mavital> |
Severity: | medium | Docs Contact: | |
Priority: | unspecified | ||
Version: | 4.4.0 | CC: | lrotenbe |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2020-05-11 08:24:45 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | Virt | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Germano Veit Michel
2020-05-11 02:19:36 UTC
Seems to be here in pack_ova.py def write_disk_headers(ova_file, disks_info): for disk_info in disks_info: # disk_info is of the following structure: <full path>::<size in bytes> idx = disk_info.index('::') disk_path = disk_info[:idx] disk_size = int(disk_info[idx+2:]) print("skipping disk: path=%s size=%d" % (disk_path, disk_size)) disk_name = os.path.basename(disk_path) tar_info = create_tar_info(disk_name, disk_size) # write tar info ova_file.write(tar_info.tobuf()) path_to_offset[disk_path] = str(ova_file.tell()) ova_file.seek(disk_size, 1) os.fsync(ova_file.fileno()) Hi Germano, This bug is a duplicate of BZ 1825638. Please note that the main reason of failing is the ansible-runner service. *** This bug has been marked as a duplicate of bug 1825638 *** (In reply to Liran Rotenberg from comment #3) > Hi Germano, > This bug is a duplicate of BZ 1825638. > Please note that the main reason of failing is the ansible-runner service. > > *** This bug has been marked as a duplicate of bug 1825638 *** Sorry for raising a DUP, I did search for those strings :( |