diff --git a/integration/images/volume-copy-up/Makefile b/integration/images/volume-copy-up/Makefile index f302a0720..cba817488 100644 --- a/integration/images/volume-copy-up/Makefile +++ b/integration/images/volume-copy-up/Makefile @@ -41,7 +41,7 @@ OSVERSION ?= 1809 OUTPUT_TYPE ?= docker ALL_OS = linux -ALL_ARCH.linux = amd64 arm64 +ALL_ARCH.linux = amd64 arm64 ppc64le ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch)) ifneq ($(REMOTE_DOCKER_URL),) @@ -53,6 +53,7 @@ endif BASE.linux.amd64 := busybox BASE.linux.arm64 := arm64v8/busybox +BASE.linux.ppc64le := busybox BASE.linux := ${BASE.linux.${ARCH}} BASE := ${BASE.${OS}} diff --git a/integration/images/volume-ownership/Makefile b/integration/images/volume-ownership/Makefile index 189194ebc..175e11cf6 100644 --- a/integration/images/volume-ownership/Makefile +++ b/integration/images/volume-ownership/Makefile @@ -41,7 +41,7 @@ OSVERSION ?= 1809 OUTPUT_TYPE ?= docker ALL_OS = linux -ALL_ARCH.linux = amd64 arm64 +ALL_ARCH.linux = amd64 arm64 ppc64le ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch)) ifneq ($(REMOTE_DOCKER_URL),) @@ -53,6 +53,7 @@ endif BASE.linux.amd64 := busybox BASE.linux.arm64 := arm64v8/busybox +BASE.linux.ppc64le := busybox BASE.linux := ${BASE.linux.${ARCH}} BASE := ${BASE.${OS}}