koji_builder: Adjust oz config to use more cpus and memory and move config from koji.conf for timeouts.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2019-12-01 22:54:39 +00:00 committed by Pierre-Yves Chibon
parent 7ff66cd3ec
commit 8c0b633742
2 changed files with 7 additions and 6 deletions

View file

@ -18,10 +18,6 @@ maxjobs=25
rpmbuild_timeout=201600
; Set oz timeout higher to allow aarch64, ppc64{le} and s390x to finish.
; Install timeout(seconds) for image build
; if it's unset, use the number in /etc/oz/oz.cfg, supported since oz-0.16.0
oz_install_timeout=14400
use_createrepo_c=True
{% if env != 'staging' %}

View file

@ -12,9 +12,9 @@ image_type = raw
{% if ansible_architecture == 'ppc64' or ansible_architecture == 'ppc64le' %}
cpus = 1
{% else %}
cpus = 2
cpus = 4
{% endif %}
memory = 3096
memory = 4096
[cache]
original_media = yes
@ -24,3 +24,8 @@ jeos = no
[icicle]
safe_generation = no
[timeouts]
install = 14400
inactivity = 300
boot = 300
shutdown = 90