Skip to content

Commit

Permalink
Update busybox image to pull from ghcr
Browse files Browse the repository at this point in the history
Signed-off-by: rcmadhankumar <[email protected]>
  • Loading branch information
rcmadhankumar committed Apr 16, 2024
1 parent fab8a4b commit b6f0fd7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions test/e2e/apply_wait_error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand All @@ -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
---
Expand All @@ -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
---
Expand Down Expand Up @@ -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
---
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/create_fallback_on_update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/formatted_error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
`
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/wait_timeout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
`
Expand Down

0 comments on commit b6f0fd7

Please sign in to comment.