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

Updates E2E test images registry #12584

Merged
merged 1 commit into from
Oct 5, 2021
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
- name: busybox
# flaky nslookup in busybox versions newer than 1.28:
# https://github.com/docker-library/busybox/issues/48
# note: gcr.io/kubernetes-e2e-test-images/dnsutils:1.3
# note: k8s.gcr.io/e2e-test-images/agnhost:2.32
# has similar issues (ie, resolves but returns exit code 1)
image: busybox:1.28
command:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/testdata/netcat-deployment-nomaster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
containers:
# dnsutils is easier to debug DNS issues with than the standard busybox image
- name: dnsutils
image: gcr.io/kubernetes-e2e-test-images/dnsutils
image: k8s.gcr.io/e2e-test-images/agnhost:2.32
command:
["/bin/sh", "-c", "while true; do echo hello | nc -l -p 8080; done"]
affinity:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/testdata/netcat-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
containers:
# dnsutils is easier to debug DNS issues with than the standard busybox image
- name: dnsutils
image: gcr.io/kubernetes-e2e-test-images/dnsutils:1.3
image: k8s.gcr.io/e2e-test-images/agnhost:2.32
command:
["/bin/sh", "-c", "while true; do echo hello | nc -l -p 8080; done"]
---
Expand Down