Merge pull request #115742 from dims/drop-32-bit-platforms

Drop 32 bit linux/arm platform
This commit is contained in:
Kubernetes Prow Robot 2023-03-11 06:12:40 -08:00 committed by GitHub
commit bb6c6fad2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,6 @@ readonly KUBE_GOPATH="${KUBE_OUTPUT}/go"
# The server platform we are building on.
readonly KUBE_SUPPORTED_SERVER_PLATFORMS=(
linux/amd64
linux/arm
linux/arm64
linux/s390x
linux/ppc64le
@ -32,7 +31,6 @@ readonly KUBE_SUPPORTED_SERVER_PLATFORMS=(
# The node platforms we build for
readonly KUBE_SUPPORTED_NODE_PLATFORMS=(
linux/amd64
linux/arm
linux/arm64
linux/s390x
linux/ppc64le
@ -59,7 +57,6 @@ readonly KUBE_SUPPORTED_CLIENT_PLATFORMS=(
# Not all client platforms need these tests
readonly KUBE_SUPPORTED_TEST_PLATFORMS=(
linux/amd64
linux/arm
linux/arm64
linux/s390x
linux/ppc64le
@ -251,6 +248,8 @@ kube::golang::setup_platforms() {
fi
}
kube::log::status "WARNING: linux/arm will no longer be built/shipped by default, please build it explicitly if needed."
kube::log::status " support for linux/arm will be removed in a subsequent release."
kube::golang::setup_platforms
# The set of client targets that we are building for all platforms