mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-07 13:54:19 +00:00
Automatic merge from submit-queue (batch tested with PRs 50602, 51561, 51703, 51748, 49142) Use arm32v7|arm64v8 images instead of the deprecated armhf|aarch64 image organizations **What this PR does / why we need it**: **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #50601 **Special notes for your reviewer**: /assign @ixdy @jbeda @zmerlynn **Release note**: ```release-note Use arm32v7|arm64v8 images instead of the deprecated armhf|aarch64 image organizations ```
hyperkube
hyperkube is an all-in-one binary for the Kubernetes server components
hyperkube is built for multiple architectures and the image is pushed automatically on every release.
How to release by hand
# First, build the binaries
$ build/run.sh make cross
# Build for linux/amd64 (default)
# export REGISTRY=$HOST/$ORG to switch from gcr.io/google_containers
$ make push VERSION={target_version} ARCH=amd64
# ---> gcr.io/google_containers/hyperkube-amd64:VERSION
# ---> gcr.io/google_containers/hyperkube:VERSION (image with backwards-compatible naming)
$ make push VERSION={target_version} ARCH=arm
# ---> gcr.io/google_containers/hyperkube-arm:VERSION
$ make push VERSION={target_version} ARCH=arm64
# ---> gcr.io/google_containers/hyperkube-arm64:VERSION
$ make push VERSION={target_version} ARCH=ppc64le
# ---> gcr.io/google_containers/hyperkube-ppc64le:VERSION
$ make push VERSION={target_version} ARCH=s390x
# ---> gcr.io/google_containers/hyperkube-s390x:VERSION
If you don't want to push the images, run make or make build instead