From 209c3781a03c7f75c9eea04fc7b38fe345fac0ff Mon Sep 17 00:00:00 2001 From: Nir Soffer Date: Tue, 29 Oct 2024 01:59:25 +0200 Subject: [PATCH] Use --force-update to ensure old repos are updated Without this you can get old volsync version (e.g. 0.7.0) silently instead of the latest release (e.g. 0.10.0). With an old version the volsync block self test will time out. Signed-off-by: Nir Soffer --- test/addons/volsync/start | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/addons/volsync/start b/test/addons/volsync/start index d0a1899ed..946496cb9 100755 --- a/test/addons/volsync/start +++ b/test/addons/volsync/start @@ -19,6 +19,8 @@ def add_helm_repo(): "helm", "repo", "add", + # replace (overwrite) the repo if it already exists. + "--force-update", "backube", "https://backube.github.io/helm-charts/", ]