mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 18:31:15 +00:00
Merge pull request #116718 from dims/move-the-arm-deprecation-notice-elsewhere
Move the arm deprecation notice in a different spot
This commit is contained in:
commit
05740daeed
@ -248,8 +248,6 @@ kube::golang::setup_platforms() {
|
|||||||
fi
|
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
|
kube::golang::setup_platforms
|
||||||
|
|
||||||
# The set of client targets that we are building for all platforms
|
# The set of client targets that we are building for all platforms
|
||||||
@ -885,6 +883,9 @@ kube::golang::build_binaries() {
|
|||||||
IFS=" " read -ra platforms <<< "${KUBE_BUILD_PLATFORMS:-}"
|
IFS=" " read -ra platforms <<< "${KUBE_BUILD_PLATFORMS:-}"
|
||||||
if [[ ${#platforms[@]} -eq 0 ]]; then
|
if [[ ${#platforms[@]} -eq 0 ]]; then
|
||||||
platforms=("${host_platform}")
|
platforms=("${host_platform}")
|
||||||
|
else
|
||||||
|
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."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local -a binaries
|
local -a binaries
|
||||||
|
Loading…
Reference in New Issue
Block a user