Skip to content

Commit df8dfb0

Browse files
authored
add image arch for ppcle (#2771)
1 parent 91d92e3 commit df8dfb0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pkg/arch/consts.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ const (
1515

1616
// These architectures are for the Image Registry
1717

18-
AMDImageArch = "amd64"
19-
ARMImageArch = "arm64"
18+
AMDImageArch = "amd64"
19+
ARMImageArch = "arm64"
20+
PPCLEImageArch = "ppc64le"
2021

2122
DefaultImageOS = "linux"
2223
)

pkg/arch/ppcle.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ package arch
55

66
const Arch = ArchPPCLE
77
const Flavor = FlavorDefault
8+
const ImageArch = PPCLEImageArch

0 commit comments

Comments
 (0)