Skip to content

Commit 529d5ba

Browse files
committed
Don't overly indirect image name
Signed-off-by: Laura Lorenz <[email protected]>
1 parent 8e7b2af commit 529d5ba

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

test/e2e_node/container_restart_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func newFailAlwaysPod() *v1.Pod {
132132
Containers: []v1.Container{
133133
{
134134
Name: containerName,
135-
Image: imageutils.GetBusyBoxImageName(),
135+
Image: imageutils.GetE2EImage(imageutils.BusyBox),
136136
ImagePullPolicy: v1.PullIfNotPresent,
137137
},
138138
},

test/utils/image/manifest.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -355,11 +355,6 @@ func GetPauseImageName() string {
355355
return GetE2EImage(Pause)
356356
}
357357

358-
// GetBusyBoxImageName returns the busybox image name with proper version
359-
func GetBusyBoxImageName() string {
360-
return GetE2EImage(BusyBox)
361-
}
362-
363358
// ReplaceRegistryInImageURL replaces the registry in the image URL with a custom one based
364359
// on the configured registries.
365360
func ReplaceRegistryInImageURL(imageURL string) (string, error) {

0 commit comments

Comments
 (0)