Merge pull request #75856 from yuwenma/base-etcd

Bebase etcd image to k8s.gcr.io/debian-base
This commit is contained in:
Kubernetes Prow Robot
2019-04-01 15:48:47 -07:00
committed by GitHub

View File

@@ -57,19 +57,19 @@ GOARM=7
TEMP_DIR:=$(shell mktemp -d)
ifeq ($(ARCH),amd64)
BASEIMAGE?=busybox
BASEIMAGE?=k8s.gcr.io/debian-base:v1.0.0
endif
ifeq ($(ARCH),arm)
BASEIMAGE?=arm32v7/busybox
BASEIMAGE?=k8s.gcr.io/debian-base-arm:v1.0.0
endif
ifeq ($(ARCH),arm64)
BASEIMAGE?=arm64v8/busybox
BASEIMAGE?=k8s.gcr.io/debian-base-arm64:v1.0.0
endif
ifeq ($(ARCH),ppc64le)
BASEIMAGE?=ppc64le/busybox
BASEIMAGE?=k8s.gcr.io/debian-base-ppc64le:v1.0.0
endif
ifeq ($(ARCH),s390x)
BASEIMAGE?=s390x/busybox
BASEIMAGE?=k8s.gcr.io/debian-base-s390x:v1.0.0
endif
build: