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
This commit is contained in:
Emilien Macchi 2020-05-20 06:31:18 -04:00
parent d160d8c4b0
commit 60e59345b8
1 changed files with 4 additions and 4 deletions

View File

@ -26,12 +26,12 @@ tripleo_container_manage_config_id: tripleo
tripleo_container_manage_config_overrides: {}
tripleo_container_manage_config_patterns: '*.json'
tripleo_container_manage_debug: false
# Some containers where Puppet is run, can take up to 15 minutes to finish
# Some containers where Puppet is run, can take up to 10 minutes to finish
# in slow environments.
tripleo_container_manage_create_retries: 90
# Default delay is 10s so 60 retries makes a timeout of 15 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: 90
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