We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ecc10 commit 3924195Copy full SHA for 3924195
hack/e2e-common.sh
@@ -109,8 +109,9 @@ function cluster_create {
109
}
110
111
function prepare_docker_images {
112
- docker pull "$E2E_TEST_AGNHOST_IMAGE_OLD_WITH_SHA"
113
- docker pull "$E2E_TEST_AGNHOST_IMAGE_WITH_SHA"
+ local platform="linux/$(uname -m)"
+ docker pull --platform "$platform" "$E2E_TEST_AGNHOST_IMAGE_OLD_WITH_SHA"
114
+ docker pull --platform "$platform" "$E2E_TEST_AGNHOST_IMAGE_WITH_SHA"
115
116
# We can load image by a digest but we cannot reference it by the digest that we pulled.
117
# For more information https://github.com/kubernetes-sigs/kind/issues/2394#issuecomment-888713831.
0 commit comments