From 646a51ec0365262df254b952dcc6f7915bc7c605 Mon Sep 17 00:00:00 2001 From: Amulyam24 Date: Wed, 23 Aug 2023 17:01:09 +0530 Subject: [PATCH] webhook: add ppc64le platform support This PR adds ppc64le as a supported architecture for webhook image and to build and publish it. Fixes: #1342 Signed-off-by: Amulyam24 --- webhook/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webhook/Makefile b/webhook/Makefile index 744ee7428..8e29e9102 100644 --- a/webhook/Makefile +++ b/webhook/Makefile @@ -19,8 +19,8 @@ endif SHELL = /usr/bin/env bash -o pipefail .SHELLFLAGS = -ec -# Currently supported architectures are amd64/x86_64 and s390x -ARCHES ?= amd64,s390x +# Currently supported architectures are amd64/x86_64, s390x and ppc64le +ARCHES ?= amd64,s390x,ppc64le .PHONY: all all: build