diff --git a/test/e2e/apply_wait_error_test.go b/test/e2e/apply_wait_error_test.go index a4fc2a971..6b21c5407 100644 --- a/test/e2e/apply_wait_error_test.go +++ b/test/e2e/apply_wait_error_test.go @@ -33,7 +33,7 @@ spec: restartPolicy: Never containers: - name: my-job-fail - image: busybox + image: ghcr.io/distroless/busybox command: [ "sh", "-c", "exit 1" ] backoffLimit: 0 --- @@ -51,7 +51,7 @@ spec: restartPolicy: Never containers: - name: my-job-fail-2 - image: busybox + image: ghcr.io/distroless/busybox command: [ "sh", "-c", "exit 1" ] backoffLimit: 0 --- @@ -70,7 +70,7 @@ spec: restartPolicy: Never containers: - name: my-job-succeed - image: busybox + image: ghcr.io/distroless/busybox command: [ "sh", "-c", "exit 0" ] backoffLimit: 0 --- @@ -181,7 +181,7 @@ spec: restartPolicy: Never containers: - name: my-job-succeed - image: busybox + image: ghcr.io/distroless/busybox command: [ "sh", "-c", "exit 0" ] backoffLimit: 0 --- diff --git a/test/e2e/create_fallback_on_update_test.go b/test/e2e/create_fallback_on_update_test.go index 06c505fa3..103a7ec31 100644 --- a/test/e2e/create_fallback_on_update_test.go +++ b/test/e2e/create_fallback_on_update_test.go @@ -39,7 +39,7 @@ spec: spec: containers: - name: successful-job - image: busybox + image: ghcr.io/distroless/busybox command: ["/bin/sh", "-c", "sleep 10"] restartPolicy: Never --- diff --git a/test/e2e/formatted_error_test.go b/test/e2e/formatted_error_test.go index c8dc756d4..5c3bda6f6 100644 --- a/test/e2e/formatted_error_test.go +++ b/test/e2e/formatted_error_test.go @@ -35,7 +35,7 @@ spec: spec: containers: - name: successful-job - image: busybox + image: ghcr.io/distroless/busybox command: ["/bin/sh", "-c", "sleep 11"] restartPolicy: Never ` diff --git a/test/e2e/wait_timeout_test.go b/test/e2e/wait_timeout_test.go index 7214fa6df..1b3a9b4f1 100644 --- a/test/e2e/wait_timeout_test.go +++ b/test/e2e/wait_timeout_test.go @@ -27,7 +27,7 @@ func TestWaitTimeout(t *testing.T) { spec: containers: - name: successful-job - image: busybox + image: ghcr.io/distroless/busybox command: ["/bin/sh", "-c", "sleep 10"] restartPolicy: Never `