[train-squash] Fix default timeouts for container_manage

Doing a squash for clean backports:

tripleo_container_manage: increase timeout to 15min

neutron db sync can take up to 15 min (seen in CI...).

Change-Id: Ib0e155bb69142ec79238577ade61f54e627cb4e1
(cherry picked from commit 5991cbd156)

container_manage: fix number of retries to match 10 minutes

10 minutes is what we should aim for and we were doing 7 min 30s before,
since we rely on the default delay (5s and not 10s).

Change-Id: I95182701212717d8998ff9eb0737919b51350d21
(cherry picked from commit 60e59345b8)
This commit is contained in:
Emilien Macchi 2020-05-19 13:47:23 -04:00
parent ad1f8a2dec
commit a1c7cc73e0
1 changed files with 3 additions and 3 deletions

View File

@ -28,10 +28,10 @@ tripleo_container_manage_config_patterns: '*.json'
tripleo_container_manage_debug: false
# Some containers where Puppet is run, can take up to 10 minutes to finish
# in slow environments.
tripleo_container_manage_create_retries: 60
# Default delay is 10s so 60 retries makes a timeout of 10 minutes which is
tripleo_container_manage_create_retries: 120
# Default delay is 5s so 120 retries makes a timeout of 10 minutes which is
# what we have observed a necessary value for nova and neutron db-sync execs.
tripleo_container_manage_exec_retries: 60
tripleo_container_manage_exec_retries: 120
tripleo_container_manage_healthcheck_disabled: false
tripleo_container_manage_log_path: '/var/log/containers/stdouts'
tripleo_container_manage_systemd_order: false