Merge pull request #130383 from toVersus/chore/e2e-node-aghnhost

[e2e/node] update base image from busybox to agnhost
This commit is contained in:
Kubernetes Prow Robot 2025-03-20 09:22:40 -07:00 committed by GitHub
commit 9193be3aec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -911,7 +911,7 @@ func (s podFastDeleteScenario) Pod(worker, attempt int) *v1.Pod {
InitContainers: []v1.Container{ InitContainers: []v1.Container{
{ {
Name: "fail", Name: "fail",
Image: imageutils.GetE2EImage(imageutils.BusyBox), Image: imageutils.GetE2EImage(imageutils.Agnhost),
Command: []string{ Command: []string{
"/bin/false", "/bin/false",
}, },
@ -926,7 +926,7 @@ func (s podFastDeleteScenario) Pod(worker, attempt int) *v1.Pod {
Containers: []v1.Container{ Containers: []v1.Container{
{ {
Name: "blocked", Name: "blocked",
Image: imageutils.GetE2EImage(imageutils.BusyBox), Image: imageutils.GetE2EImage(imageutils.Agnhost),
Command: []string{ Command: []string{
"/bin/true", "/bin/true",
}, },
@ -955,7 +955,7 @@ func (s podFastDeleteScenario) Pod(worker, attempt int) *v1.Pod {
Containers: []v1.Container{ Containers: []v1.Container{
{ {
Name: "fail", Name: "fail",
Image: imageutils.GetE2EImage(imageutils.BusyBox), Image: imageutils.GetE2EImage(imageutils.Agnhost),
Command: []string{ Command: []string{
"/bin/false", "/bin/false",
}, },