From 14d8804e1bf837b7e1f63ff86e7b1b1f88f7dc2d Mon Sep 17 00:00:00 2001 From: Vladimir Kozhukalov Date: Fri, 16 Jan 2026 14:34:48 -0600 Subject: [PATCH] Increase apt timeout and retries for deploy-selenium role Signed-off-by: Vladimir Kozhukalov Change-Id: Ife2c24a31810735750d01fe37032bd7b0eb03a5c --- roles/deploy-selenium/tasks/main.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/roles/deploy-selenium/tasks/main.yaml b/roles/deploy-selenium/tasks/main.yaml index c595fd8469..b8bdb571ae 100644 --- a/roles/deploy-selenium/tasks/main.yaml +++ b/roles/deploy-selenium/tasks/main.yaml @@ -32,6 +32,9 @@ get_url: url: https://dl-ssl.google.com/linux/linux_signing_key.pub dest: /etc/apt/trusted.gpg.d/google-chrome.asc + timeout: 120 + retries: 10 + delay: 5 - name: Add google chrome repository apt_repository: @@ -39,6 +42,18 @@ filename: google-chrome state: present +- name: Update apt acquire config + shell: | + tee /etc/apt/apt.conf.d/99retries-timeouts <