On Fri, Jul 19, 2019 at 3:15 PM Gianluca Cecchi <gianluca.cecchi(a)gmail.com>
wrote:
In engine.log the first error I see is 30 minutes after start
2019-07-19 12:25:31,563+02 ERROR
[org.ovirt.engine.core.common.utils.ansible.AnsibleExecutor]
(EE-ManagedThreadFactory-engineScheduled-Thread-64) [2001ddf4] Ansible
playbook execution failed: Timeout occurred while executing Ansible
playbook.
In the mean time, as the playbook seems this one ( I run the job from
engine) : /usr/share/ovirt-engine/playbooks/ovirt-ova-export.yml
- hosts: all
remote_user: root
gather_facts: no
roles:
- ovirt-ova-export-pre-pack
- ovirt-ova-pack
- ovirt-ova-export-post-pack
and it seems async is not supported, I temporary changed the main.yml
inside ovirt-ova-pack role from
--
- name: Run packing script
script: >
pack_ova.py
...
to
---
- name: Copy packing script
copy:
src: pack_ova.py
dest: /tmp/pack_ova.py
mode: '0755'
- name: Run packing script
command: timeout 4800 /tmp/pack_ova.py
...
just to check... see how it goes now