Skip to content

Commit 357207e

Browse files
authored
Merge pull request kubernetes-sigs#2359 from fidencio/topic/images-build-for-s390x-and-ppc64le
images: Publish s390x and ppc64le images
2 parents ecb71d4 + 1d0e0f8 commit 357207e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ BUILD_FLAGS = -tags osusergo,netgo \
6969
-ldflags "-s -w -extldflags=-static -X sigs.k8s.io/node-feature-discovery/pkg/version.version=$(VERSION) -X sigs.k8s.io/node-feature-discovery/pkg/utils/hostpath.pathPrefix=$(HOSTMOUNT_PREFIX)"
7070

7171
# multi-arch build with buildx
72-
IMAGE_ALL_PLATFORMS ?= linux/amd64,linux/arm64,linux/arm/v7
72+
IMAGE_ALL_PLATFORMS ?= linux/amd64,linux/arm64,linux/arm/v7,linux/s390x,linux/ppc64le
7373

7474
# enable buildx
7575
ensure-buildx:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash -e
22

33
# cross build
4-
IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64 make image-all
4+
IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64,linux/s390x,linux/ppc64le make image-all

scripts/test-infra/push-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
gcloud auth configure-docker
1414

1515
# Build and push images
16-
IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64 make push-all $MAKE_VARS
16+
IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64,linux/s390x,linux/ppc64le make push-all $MAKE_VARS
1717

1818
go install helm.sh/helm/v3/cmd/[email protected]
1919
go install oras.land/oras/cmd/[email protected]

0 commit comments

Comments
 (0)