1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-21 03:38:43 +00:00

Merge pull request from linux-on-ibm-z/add_s390x_support_to_docker_images

scripts: Add s390x support to docker images
This commit is contained in:
Simon Pasquier 2021-10-29 15:45:53 +02:00 committed by GitHub
commit 9221f58e65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ set -e
# only exit with zero if all commands of the pipeline exit successfully
set -o pipefail
CPU_ARCHS="amd64 arm64 arm ppc64le"
CPU_ARCHS="amd64 arm64 arm ppc64le s390x"
REGISTRIES="${REGISTRIES:-"quay.io ghcr.io"}"
# IMAGE_OPERATOR and IMAGER_RELOADER need to be exported to be used by `make`
@ -77,7 +77,8 @@ for r in ${OPERATORS} ${RELOADERS}; do
"${r}:${TAG}-amd64" \
"${r}:${TAG}-arm64" \
"${r}:${TAG}-arm" \
"${r}:${TAG}-ppc64le"
"${r}:${TAG}-ppc64le" \
"${r}:${TAG}-s390x"
# Annotate to set which image is build for which CPU architecture
for arch in $CPU_ARCHS; do