Skip to content

Commit

Permalink
fix: set ignoreUnfixed false (#1006)
Browse files Browse the repository at this point in the history
Signed-off-by: Sertac Ozercan <sozercan@gmail.com>
  • Loading branch information
sozercan authored Apr 1, 2024
1 parent 79eca5b commit 390f727
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion api/unversioned/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dbRepo: ghcr.io/aquasecurity/trivy-db
deleteFailedImages: true
deleteEOLImages: true
vulnerabilities:
ignoreUnfixed: true
ignoreUnfixed: false
types:
- os
- library
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dbRepo: ghcr.io/aquasecurity/trivy-db
deleteFailedImages: true
deleteEOLImages: true
vulnerabilities:
ignoreUnfixed: true
ignoreUnfixed: false
types:
- os
- library
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha2/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dbRepo: ghcr.io/aquasecurity/trivy-db
deleteFailedImages: true
deleteEOLImages: true
vulnerabilities:
ignoreUnfixed: true
ignoreUnfixed: false
types:
- os
- library
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha3/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dbRepo: ghcr.io/aquasecurity/trivy-db
deleteFailedImages: true
deleteEOLImages: true
vulnerabilities:
ignoreUnfixed: true
ignoreUnfixed: false
types:
- os
- library
Expand Down
2 changes: 1 addition & 1 deletion config/manager/controller_manager_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ components:
deleteFailedImages: true
deleteEOLImages: true
vulnerabilities:
ignoreUnfixed: true
ignoreUnfixed: false
types:
- os
- library
Expand Down
2 changes: 1 addition & 1 deletion manifest_staging/charts/eraser/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runtimeConfig:
# deleteFailedImages: true
# deleteEOLImages: true
# vulnerabilities:
# ignoreUnfixed: true
# ignoreUnfixed: false
# types:
# - os
# - library
Expand Down
2 changes: 1 addition & 1 deletion manifest_staging/deploy/eraser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ data:
deleteFailedImages: true
deleteEOLImages: true
vulnerabilities:
ignoreUnfixed: true
ignoreUnfixed: false
types:
- os
- library
Expand Down
2 changes: 1 addition & 1 deletion pkg/scanners/trivy/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func DefaultConfig() *Config {
DeleteFailedImages: true,
DeleteEOLImages: true,
Vulnerabilities: VulnConfig{
IgnoreUnfixed: true,
IgnoreUnfixed: false,
Types: []string{
vulnTypeOs,
vulnTypeLibrary,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runtimeConfig:
# deleteFailedImages: true
# deleteEOLImages: true
# vulnerabilities:
# ignoreUnfixed: true
# ignoreUnfixed: false
# types:
# - os
# - library
Expand Down

0 comments on commit 390f727

Please sign in to comment.