Skip to content

Commit

Permalink
Merge pull request cert-manager#73 from inteon/fix_busybox_version
Browse files Browse the repository at this point in the history
Use fixed version for busybox image
  • Loading branch information
jetstack-bot authored Jan 21, 2024
2 parents 20ad4f6 + 0d478b1 commit a4ee85b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions make/00_mod.mk
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ endef
mages_amd64 ?=
images_arm64 ?=

images_amd64 += docker.io/library/busybox:latest@sha256:cca7bbfb3cd4dc1022f00cee78c51aa46ecc3141188f0dd520978a620697e7ad
images_arm64 += docker.io/library/busybox:latest@sha256:a4ca727b12c67a0d6a0e8aa578b00eff94a2c092352e24db577aada1536f6c91
images_amd64 += docker.io/library/busybox:1.36.1-musl@sha256:d4707523ce6e12afdbe9a3be5ad69027150a834870ca0933baf7516dd1fe0f56
images_arm64 += docker.io/library/busybox:1.36.1-musl@sha256:fed6b26ea319254ef0d6bae87482b5ab58b85250a7cc46d14c533e1f5c2556db
2 changes: 1 addition & 1 deletion test/e2e/suite/carotation/carotation.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ var _ = framework.CasesDescribe("CA rotation", func() {
Containers: []corev1.Container{
corev1.Container{
Name: "my-container",
Image: "docker.io/library/busybox:latest",
Image: "docker.io/library/busybox:1.36.1-musl",
ImagePullPolicy: corev1.PullNever,
Command: []string{"sleep", "10000"},
VolumeMounts: []corev1.VolumeMount{
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/suite/fsgroup/fsgroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var _ = framework.CasesDescribe("FSGroup", func() {
Containers: []corev1.Container{
corev1.Container{
Name: "my-container",
Image: "docker.io/library/busybox:latest",
Image: "docker.io/library/busybox:1.36.1-musl",
ImagePullPolicy: corev1.PullNever,
Command: []string{"sleep", "10000"},
VolumeMounts: []corev1.VolumeMount{
Expand Down

0 comments on commit a4ee85b

Please sign in to comment.