[trivy] Include vizier and cloud dependency images in image scan#2231
Merged
ddelnano merged 19 commits intoJul 16, 2025
Conversation
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
b01151d to
0698605
Compare
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
…ing deprecation Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
vihangm
approved these changes
Jul 16, 2025
ddelnano
added a commit
to k8sstormcenter/pixie
that referenced
this pull request
Feb 25, 2026
…ie-io#2231) Summary: [trivy] Include vizier and cloud dependency images in image scan While are aware of CVEs and vulnerabilities with Pixie's code, our dependency images are a blind spot in our security scanning. This change updates the trivy-image GitHub action to include the cloud and vizier dependency images so we can address those vulnerabilities in a timely manner. This change makes it possible to add the operator dependency images in the future, but for now I've omitted them (dealing with helm is a bit challenging without some additional work). Relevant Issues: N/A Type of change: /kind dependencies Test Plan: Verified the following - [x] Simulated test works ``` $ bazel build k8s/cloud:cloud_image_list $ cat bazel-bin/k8s/cloud/cloud_image_list.txt | grep -v '\/cloud' | xargs -I{} sh -c 'trivy image {}' $ bazel build k8s/vizier:vizier_image_list $ cat bazel-bin/k8s/vizier/vizier_image_list.txt | grep -v '\/vizier' | xargs -I{} sh -c 'trivy image {}' ``` - [x] GitHub action completed successfully ([link](https://github.com/pixie-io/pixie/actions/runs/16327263639)) --------- Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
ddelnano
added a commit
to k8sstormcenter/pixie
that referenced
this pull request
Feb 25, 2026
…ie-io#2231) Summary: [trivy] Include vizier and cloud dependency images in image scan While are aware of CVEs and vulnerabilities with Pixie's code, our dependency images are a blind spot in our security scanning. This change updates the trivy-image GitHub action to include the cloud and vizier dependency images so we can address those vulnerabilities in a timely manner. This change makes it possible to add the operator dependency images in the future, but for now I've omitted them (dealing with helm is a bit challenging without some additional work). Relevant Issues: N/A Type of change: /kind dependencies Test Plan: Verified the following - [x] Simulated test works ``` $ bazel build k8s/cloud:cloud_image_list $ cat bazel-bin/k8s/cloud/cloud_image_list.txt | grep -v '\/cloud' | xargs -I{} sh -c 'trivy image {}' $ bazel build k8s/vizier:vizier_image_list $ cat bazel-bin/k8s/vizier/vizier_image_list.txt | grep -v '\/vizier' | xargs -I{} sh -c 'trivy image {}' ``` - [x] GitHub action completed successfully ([link](https://github.com/pixie-io/pixie/actions/runs/16327263639)) --------- Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
entlein
pushed a commit
to k8sstormcenter/pixie
that referenced
this pull request
Jun 2, 2026
…ie-io#2231) Summary: [trivy] Include vizier and cloud dependency images in image scan While are aware of CVEs and vulnerabilities with Pixie's code, our dependency images are a blind spot in our security scanning. This change updates the trivy-image GitHub action to include the cloud and vizier dependency images so we can address those vulnerabilities in a timely manner. This change makes it possible to add the operator dependency images in the future, but for now I've omitted them (dealing with helm is a bit challenging without some additional work). Relevant Issues: N/A Type of change: /kind dependencies Test Plan: Verified the following - [x] Simulated test works ``` $ bazel build k8s/cloud:cloud_image_list $ cat bazel-bin/k8s/cloud/cloud_image_list.txt | grep -v '\/cloud' | xargs -I{} sh -c 'trivy image {}' $ bazel build k8s/vizier:vizier_image_list $ cat bazel-bin/k8s/vizier/vizier_image_list.txt | grep -v '\/vizier' | xargs -I{} sh -c 'trivy image {}' ``` - [x] GitHub action completed successfully ([link](https://github.com/pixie-io/pixie/actions/runs/16327263639)) --------- Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary: [trivy] Include vizier and cloud dependency images in image scan
While are aware of CVEs and vulnerabilities with Pixie's code, our dependency images are a blind spot in our security scanning. This change updates the trivy-image GitHub action to include the cloud and vizier dependency images so we can address those vulnerabilities in a timely manner.
This change makes it possible to add the operator dependency images in the future, but for now I've omitted them (dealing with helm is a bit challenging without some additional work).
Relevant Issues: N/A
Type of change: /kind dependencies
Test Plan: Verified the following