From df8dfb0b94c7ab13cc640954d58a72cbf2e32ac3 Mon Sep 17 00:00:00 2001 From: Lukas Hinterreiter <90035514+luhi-DT@users.noreply.github.com> Date: Mon, 19 Feb 2024 13:09:16 +0100 Subject: [PATCH] add image arch for ppcle (#2771) --- pkg/arch/consts.go | 5 +++-- pkg/arch/ppcle.go | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) 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