On Fri, Jul 19, 2019 at 3:15 PM Gianluca Cecchi <gianluca.cec...@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
_______________________________________________
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/3QSRA47E7STVEFX3WLPFPUC3YNNSCPWR/

Reply via email to