mirror of
https://github.com/prometheus-operator/prometheus-operator.git
synced 2025-04-21 03:38:43 +00:00
Merge pull request #4351 from linux-on-ibm-z/add_s390x_support_to_docker_images
scripts: Add s390x support to docker images
This commit is contained in:
commit
9221f58e65
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue