We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 924b3b8 commit 515358eCopy full SHA for 515358e
Makefile
@@ -164,7 +164,8 @@ image-scan: $(TRIVY) ## Run image-scan
164
$(TRIVY) image --severity MEDIUM,HIGH,CRITICAL $(CRD_IMAGE_TAG)
165
# show vulnerabilities that have been fixed
166
$(TRIVY) image --exit-code 1 --ignore-unfixed --severity MEDIUM,HIGH,CRITICAL $(IMAGE_TAG)
167
- $(TRIVY) image --exit-code 1 --ignore-unfixed --severity MEDIUM,HIGH,CRITICAL $(CRD_IMAGE_TAG)
+ # The kubectl binary release is based on Kubernetes release cadence, so only failing for os vuln that we can actively patch
168
+ $(TRIVY) image --vuln-type os --exit-code 1 --ignore-unfixed --severity MEDIUM,HIGH,CRITICAL $(CRD_IMAGE_TAG)
169
170
## Tooling Binaries
171
0 commit comments