Skip to content

Commit ed07ae6

Browse files
committed
test: use pause image for autoscaler tests
1 parent b962bff commit ed07ae6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/framework/autoscaler_helpers.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,14 @@ func AddScaleUpDeploymentAndWait(ctx context.Context, input AddScaleUpDeployment
191191
Spec: corev1.PodSpec{
192192
Containers: []corev1.Container{
193193
{
194-
Name: "busybox",
195-
Image: "busybox",
194+
Name: "pause",
195+
Image: "registry.k8s.io/pause",
196+
ImagePullPolicy: corev1.PullIfNotPresent,
196197
Resources: corev1.ResourceRequirements{
197198
Requests: map[corev1.ResourceName]resource.Quantity{
198199
corev1.ResourceMemory: *podMemory,
199200
},
200201
},
201-
Command: []string{"/bin/sh", "-c", "echo \"up\" & sleep infinity"},
202202
},
203203
},
204204
},

0 commit comments

Comments
 (0)