Skip to content

Commit 56c337a

Browse files
fix: Update busy box image for download pod (#1897)
# Description Update image of busybox pod used for capture download. Testing steps - Create kind cluster - Install gatekeeper for policy inforcemente - Apply constraint that denies - Download a capture with the busybox docker image - check that it fails - Download a capture with the busybox mcr image - downloads without issues - Followed the same steps for an aks cluster and the mcr busybox as a sanity check ## Checklist - [ ] I have read the [contributing documentation](https://retina.sh/docs/Contributing/overview). - [ ] I signed and signed-off the commits (`git commit -S -s ...`). See [this documentation](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification) on signing commits. - [ ] I have correctly attributed the author(s) of the code. - [x] I have tested the changes locally. - [ ] I have followed the project's style guidelines. - [ ] I have updated the documentation, if necessary. - [ ] I have added tests, if applicable. ## Screenshots (if applicable) or Testing Completed Please add any relevant screenshots or GIFs to showcase the changes made. ## Additional Notes Add any additional notes or context about the pull request here. --- Please refer to the [CONTRIBUTING.md](../CONTRIBUTING.md) file for more information on how to contribute to this project.
1 parent b0f09b1 commit 56c337a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cmd/capture/download.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ func createDownloadPod(ctx context.Context, kubeClient *kubernetes.Clientset, na
172172
Containers: []corev1.Container{
173173
{
174174
Name: "download",
175-
Image: "busybox",
175+
Image: "mcr.microsoft.com/azurelinux/busybox:1.36",
176176
Command: []string{"sh", "-c", "echo 'Download pod ready'; sleep 3600"},
177177
VolumeMounts: []corev1.VolumeMount{
178178
{

0 commit comments

Comments
 (0)