release-tools: update
Commit summary:43e50d6f
prow.sh: enable building arm64 image3df86b7d
cloud build: k8s-staging-sig-storagedb0c2a7d
cloud build: initialize support for running commands in Dockerfile
This commit is contained in:
@@ -12,6 +12,8 @@
|
|||||||
#
|
#
|
||||||
# See https://github.com/kubernetes/test-infra/blob/master/config/jobs/image-pushing/README.md
|
# See https://github.com/kubernetes/test-infra/blob/master/config/jobs/image-pushing/README.md
|
||||||
# for more details on image pushing process in Kubernetes.
|
# for more details on image pushing process in Kubernetes.
|
||||||
|
#
|
||||||
|
# To promote release images, see https://github.com/kubernetes/k8s.io/tree/master/k8s.gcr.io/images/k8s-staging-sig-storage.
|
||||||
|
|
||||||
# This must be specified in seconds. If omitted, defaults to 600s (10 mins).
|
# This must be specified in seconds. If omitted, defaults to 600s (10 mins).
|
||||||
timeout: 1200s
|
timeout: 1200s
|
||||||
@@ -38,7 +40,7 @@ substitutions:
|
|||||||
# a branch like 'master' or 'release-0.2', or a tag like 'v0.2'.
|
# a branch like 'master' or 'release-0.2', or a tag like 'v0.2'.
|
||||||
_PULL_BASE_REF: 'master'
|
_PULL_BASE_REF: 'master'
|
||||||
# The default gcr.io staging project for Kubernetes-CSI
|
# The default gcr.io staging project for Kubernetes-CSI
|
||||||
# (=> https://console.cloud.google.com/gcr/images/k8s-staging-csi/GLOBAL).
|
# (=> https://console.cloud.google.com/gcr/images/k8s-staging-sig-storage/GLOBAL).
|
||||||
# Might be overridden in the Prow build job for a repo which wants
|
# Might be overridden in the Prow build job for a repo which wants
|
||||||
# images elsewhere.
|
# images elsewhere.
|
||||||
_STAGING_PROJECT: 'k8s-staging-csi'
|
_STAGING_PROJECT: 'k8s-staging-sig-storage'
|
||||||
|
@@ -85,7 +85,7 @@ get_versioned_variable () {
|
|||||||
echo "$value"
|
echo "$value"
|
||||||
}
|
}
|
||||||
|
|
||||||
configvar CSI_PROW_BUILD_PLATFORMS "linux amd64; windows amd64 .exe; linux ppc64le -ppc64le; linux s390x -s390x" "Go target platforms (= GOOS + GOARCH) and file suffix of the resulting binaries"
|
configvar CSI_PROW_BUILD_PLATFORMS "linux amd64; windows amd64 .exe; linux ppc64le -ppc64le; linux s390x -s390x; linux arm64 -arm64" "Go target platforms (= GOOS + GOARCH) and file suffix of the resulting binaries"
|
||||||
|
|
||||||
# If we have a vendor directory, then use it. We must be careful to only
|
# If we have a vendor directory, then use it. We must be careful to only
|
||||||
# use this for "make" invocations inside the project's repo itself because
|
# use this for "make" invocations inside the project's repo itself because
|
||||||
@@ -1198,6 +1198,12 @@ gcr_cloud_build () {
|
|||||||
# Required for "docker buildx build --push".
|
# Required for "docker buildx build --push".
|
||||||
gcloud auth configure-docker
|
gcloud auth configure-docker
|
||||||
|
|
||||||
|
if find . -name Dockerfile | grep -v ^./vendor | xargs --no-run-if-empty cat | grep -q ^RUN; then
|
||||||
|
# Needed for "RUN" steps on non-linux/amd64 platforms.
|
||||||
|
# See https://github.com/multiarch/qemu-user-static#getting-started
|
||||||
|
(set -x; docker run --rm --privileged multiarch/qemu-user-static --reset -p yes)
|
||||||
|
fi
|
||||||
|
|
||||||
# Extract tag-n-hash value from GIT_TAG (form vYYYYMMDD-tag-n-hash) for REV value.
|
# Extract tag-n-hash value from GIT_TAG (form vYYYYMMDD-tag-n-hash) for REV value.
|
||||||
REV=v$(echo "$GIT_TAG" | cut -f3- -d 'v')
|
REV=v$(echo "$GIT_TAG" | cut -f3- -d 'v')
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user