Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update e2e tests to pull busybox from quay.io #692

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading