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 ```
etcd
This is a small etcd image used in Kubernetes setups where etcd is deployed as a docker image.
For amd64, official etcd and etcdctl binaries are downloaded from Github to maintain official support.
For other architectures, etcd is cross-compiled from source. Arch-specific busybox images serve as base images.
How to release
# Build for linux/amd64 (default)
$ make push ARCH=amd64
# ---> gcr.io/google_containers/etcd-amd64:TAG
# ---> gcr.io/google_containers/etcd:TAG
$ make push ARCH=arm
# ---> gcr.io/google_containers/etcd-arm:TAG
$ make push ARCH=arm64
# ---> gcr.io/google_containers/etcd-arm64:TAG
$ make push ARCH=ppc64le
# ---> gcr.io/google_containers/etcd-ppc64le:TAG
$ make push ARCH=s390x
# ---> gcr.io/google_containers/etcd-s390x:TAG
If you don't want to push the images, run make or make build instead