Does trivy operator downloads the images of all containers in the cluster to check them ? #1251
-
Question 1: Does trivy operator downloads all the images of the containers in the cluster in order to check them against the vulnerability DB ? Issue we are facing: We have multiple clusters where the image repository sits in one of them and all images are pulled from that repository. Communication between all other clusters and the cluster which owns the image repository is done via Transit Gateway (AWS). After configuring trivy operator in our clusters , we are seeing substantial increase in cost/usage of transit gateway hence we want to know if trivy download images of all containers in the clusters each time it does the vulnerability scan. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
regarding you question trivy is more design for single cluster mode less of multi-cluster. Please feel free to share an ideas on how to improve scanning process and share resources |
Beta Was this translation helpful? Give feedback.
@togrulazizli
in addition bare in mind that image that was scanned today (and no issues found) can be vulnerable tomorrow as vulnDB might change. we are looking on adding support to SBOM in cluster level , this will enable us to reduce the number of nightly scan (TTL exceeded) as operator will scan only if vulnDB has change.
regarding you questio…