diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh index 6e1aaa28acf..d9d9aa484a9 100755 --- a/hack/lib/golang.sh +++ b/hack/lib/golang.sh @@ -209,8 +209,8 @@ kube::golang::setup_platforms() { elif [[ "${KUBE_FASTBUILD:-}" == "true" ]]; then host_arch=$(kube::util::host_arch) - if [[ "${host_arch}" != "amd64" && "${host_arch}" != "arm64" ]]; then - # on any platform other than amd64 and arm64, we just default to amd64 + if [[ "${host_arch}" != "amd64" && "${host_arch}" != "arm64" && "${host_arch}" != "ppc64le" ]]; then + # on any platform other than amd64, arm64 and ppc64le, we just default to amd64 host_arch="amd64" fi KUBE_SERVER_PLATFORMS=("linux/${host_arch}")