File tree 1 file changed +7
-1
lines changed 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,10 @@ Examples:
59
59
60
60
REGISTRY=quay.io/<yourname> ALLOW_UNSTABLE=true VERSION=canary ./hack/release.sh
61
61
62
+ 3) Release multi-arch image to your own registry
63
+
64
+ REGISTRY=quay.io/<yourname> ALL_ARCH="amd64 arm64" ./hack/release.sh
65
+
62
66
EOF
63
67
}
64
68
@@ -81,8 +85,10 @@ ALLOW_OVERRIDE=${ALLOW_OVERRIDE:-}
81
85
SKIP_BUILD=${SKIP_BUILD:- }
82
86
# There is a problem in building multi-arch images in prow environment. Enable non-amd64
83
87
# arches when we have a reliable way, see https://github.com/kubernetes/test-infra/issues/13937.
88
+ # In the meantime, you may set the ALL_ARCH environment variable to name the architectures you'd
89
+ # like to target.
84
90
# ALL_ARCH="amd64 arm arm64 ppc64le s390x"
85
- ALL_ARCH=" amd64"
91
+ ALL_ARCH=${ALL_ARCH=- amd64}
86
92
IMAGE=" $REGISTRY /local-volume-provisioner"
87
93
88
94
# In prow job, DOCKER_CONFIG is mounted read-only, but docker manifest command
You can’t perform that action at this time.
0 commit comments