considering argocd for backups
Check scripts syntax / check-scripts-syntax (push) Successful in 13s
Test Kubernetes backup scripts / test-k3s-control-plane-config-backup (push) Successful in 14s
Test Kubernetes backup scripts / test-automated-nfs-backup (push) Successful in 14s

This commit is contained in:
2026-09-07 16:18:19 -03:00
parent 75e888806f
commit 65fc9b3b9e
5 changed files with 164 additions and 37 deletions
+2 -1
View File
@@ -94,8 +94,9 @@ retry() {
while true; do
if "$@"; then
return 0
else
exit_code=$?
fi
exit_code=$?
if (( attempt >= attempts )); then
return "$exit_code"
fi