Skip to content

Commit 85a464d

Browse files
committed
disable non-amd64 arches
1 parent e65237d commit 85a464d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hack/release.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ ALLOW_UNSTABLE=${ALLOW_UNSTABLE:-}
7979
ALLOW_DIRTY=${ALLOW_DIRTY:-}
8080
ALLOW_OVERRIDE=${ALLOW_OVERRIDE:-}
8181
SKIP_BUILD=${SKIP_BUILD:-}
82-
ALL_ARCH="amd64 arm arm64 ppc64le s390x"
82+
# There is a problem in building multi-arch images in prow environment. Enable non-amd64
83+
# arches when we have a reliable way, see https://github.com/kubernetes/test-infra/issues/13937.
84+
#ALL_ARCH="amd64 arm arm64 ppc64le s390x"
85+
ALL_ARCH="amd64"
8386
IMAGE="$REGISTRY/local-volume-provisioner"
8487

8588
# In prow job, DOCKER_CONFIG is mounted read-only, but docker manifest command

0 commit comments

Comments
 (0)