diff --git a/pkg/arch/consts.go b/pkg/arch/consts.go index 14ccc67fc9..8353142619 100644 --- a/pkg/arch/consts.go +++ b/pkg/arch/consts.go @@ -15,8 +15,9 @@ const ( // These architectures are for the Image Registry - AMDImageArch = "amd64" - ARMImageArch = "arm64" + AMDImageArch = "amd64" + ARMImageArch = "arm64" + PPCLEImageArch = "ppc64le" DefaultImageOS = "linux" ) diff --git a/pkg/arch/ppcle.go b/pkg/arch/ppcle.go index 58b01b4dbb..bed88eb497 100644 --- a/pkg/arch/ppcle.go +++ b/pkg/arch/ppcle.go @@ -5,3 +5,4 @@ package arch const Arch = ArchPPCLE const Flavor = FlavorDefault +const ImageArch = PPCLEImageArch