Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retry trivy when it fails to download the vulnerability database due to rate-limiting #1700

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions pkg/image/vulnerability_scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"os/exec"
"sort"
"strings"
"time"

"github.com/google/go-containerregistry/pkg/authn"
buildapi "github.com/shipwright-io/build/pkg/apis/build/v1beta1"
Expand Down Expand Up @@ -51,14 +52,33 @@ func RunVulnerabilityScan(ctx context.Context, imagePath string, settings builda
}
}

cmd := exec.CommandContext(ctx, "trivy", trivyArgs...)
var result []byte
var err error

cmd.Stdin = nil
for i := 0; i < 10; i++ {
cmd := exec.CommandContext(ctx, "trivy", trivyArgs...)
cmd.Stdin = nil

result, err := cmd.CombinedOutput()
if err != nil {
log.Printf("failed to run trivy:\n%s", string(result))
return nil, fmt.Errorf("failed to run trivy: %w", err)
result, err = cmd.CombinedOutput()
if err == nil {
break
}

sResult := string(result)
log.Printf("failed to run trivy:\n%s", sResult)

// Retry the following errors
//
// FATAL Fatal error init error: DB error: failed to download vulnerability DB: database download error: OCI repository error: 1 error occurred:
// GET https://ghcr.io/v2/aquasecurity/trivy-db/manifests/2: TOOMANYREQUESTS: retry-after: 508.904┬Ás, allowed: 44000/minute
//
// FATAL Fatal error init error: DB error: failed to download vulnerability DB: OCI artifact error: failed to download vulnerability DB: failed to download artifact from any source
if i < 10 && strings.Contains(sResult, "failed to download vulnerability DB") {
log.Println("Will retry")
time.Sleep(time.Second)
} else {
return nil, fmt.Errorf("failed to run trivy: %w", err)
}
}

var trivyResult TrivyResult
Expand Down