From e1f1dd661ba6746d94e5fbb48023edbd815f2221 Mon Sep 17 00:00:00 2001 From: Smriti Dahal <93288516+smritidahal653@users.noreply.github.com> Date: Tue, 11 Jun 2024 19:12:53 -0700 Subject: [PATCH] fix: fix e2e failed cases (#612) --- e2e/fixtures/csi-driver.yml | 2 +- e2e/fixtures/hpa.yml | 2 +- e2e/fixtures/multi-volume.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/fixtures/csi-driver.yml b/e2e/fixtures/csi-driver.yml index b80ccb86..e7a434e7 100644 --- a/e2e/fixtures/csi-driver.yml +++ b/e2e/fixtures/csi-driver.yml @@ -24,7 +24,7 @@ spec: name: busybox imagePullPolicy: Always command: [ - "sh", + "/bin/sh", "-c", "sleep 10; while sleep 0.01; do wget -q -O- http://127.0.0.1; done", ] diff --git a/e2e/fixtures/hpa.yml b/e2e/fixtures/hpa.yml index ed3698fe..6f29161b 100644 --- a/e2e/fixtures/hpa.yml +++ b/e2e/fixtures/hpa.yml @@ -24,7 +24,7 @@ spec: name: busybox imagePullPolicy: Always command: [ - "sh", + "/bin/sh", "-c", "sleep 10; while sleep 0.01; do wget -q -O- http://127.0.0.1; done", ] diff --git a/e2e/fixtures/multi-volume.yml b/e2e/fixtures/multi-volume.yml index 971b2bc6..5ab6ed38 100644 --- a/e2e/fixtures/multi-volume.yml +++ b/e2e/fixtures/multi-volume.yml @@ -10,7 +10,7 @@ spec: imagePullPolicy: Always name: busybox command: [ - "sh", + "/bin/sh", "-c", "sleep 10; while sleep 0.01; do wget -q -O- http://127.0.0.1; done", ]