Skip to content

Commit

Permalink
use multiarch busybox image
Browse files Browse the repository at this point in the history
Use quay.io/project-codeflare/busybox instead of k8s.icr.io/busybox
to ensure we get proper multiarch images.
  • Loading branch information
dgrove-oss committed Nov 15, 2023
1 parent 280e750 commit f940301
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion hack/run-e2e-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export CLUSTER_CONTEXT="--name test"
export IMAGE_ECHOSERVER="quay.io/project-codeflare/echo-server:1.0"
export IMAGE_UBUNTU_LATEST="ubuntu:latest"
export IMAGE_UBI_LATEST="registry.access.redhat.com/ubi8/ubi:latest"
export IMAGE_BUSY_BOX_LATEST="k8s.gcr.io/busybox:latest"
export IMAGE_BUSY_BOX_LATEST="quay.io/project-codeflare/busybox:latest"
export KIND_OPT=${KIND_OPT:=" --config ${ROOT_DIR}/hack/e2e-kind-config.yaml"}
export KA_BIN=_output/bin
export WAIT_TIME="20s"
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ func createJobAWWithInitContainer(context *context, name string, requeuingTimeIn
"initContainers": [
{
"name": "job-init-container",
"image": "k8s.gcr.io/busybox:latest",
"image": "quay.io/project-codeflare/busybox:latest",
"command": ["sleep", "200"],
"resources": {
"requests": {
Expand All @@ -597,7 +597,7 @@ func createJobAWWithInitContainer(context *context, name string, requeuingTimeIn
"containers": [
{
"name": "job-container",
"image": "k8s.gcr.io/busybox:latest",
"image": "quay.io/project-codeflare/busybox:latest",
"command": ["sleep", "10"],
"resources": {
"requests": {
Expand Down Expand Up @@ -1606,7 +1606,7 @@ func createGenericDeploymentAWWithMultipleItems(context *context, name string) *
"initContainers": [
{
"name": "job-init-container",
"image": "k8s.gcr.io/busybox:latest",
"image": "quay.io/project-codeflare/busybox:latest",
"command": ["sleep", "200"],
"resources": {
"requests": {
Expand Down
4 changes: 2 additions & 2 deletions test/yaml/0006-aw-init-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
restartPolicy: Never
initContainers:
- name: job-init-container
image: 'k8s.gcr.io/busybox:latest'
image: 'quay.io/project-codeflare/busybox:latest'
imagePullPolicy: IfNotPresent
command:
- sh
Expand All @@ -68,7 +68,7 @@ spec:
memory: 300Mi
containers:
- name: job-container
image: 'k8s.gcr.io/busybox:latest'
image: 'quay.io/project-codeflare/busybox:latest'
imagePullPolicy: IfNotPresent
command:
- sh
Expand Down

0 comments on commit f940301

Please sign in to comment.