From fd6c80b840be7b3542e9df7d9d50d9140c78367f Mon Sep 17 00:00:00 2001 From: Mike Miranda Date: Thu, 12 Aug 2021 23:51:54 +0000 Subject: [PATCH] Create cloudbuild file --- cloudbuild.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 cloudbuild.yaml diff --git a/cloudbuild.yaml b/cloudbuild.yaml new file mode 100644 index 00000000..f0a960a7 --- /dev/null +++ b/cloudbuild.yaml @@ -0,0 +1,21 @@ +# See https://cloud.google.com/cloud-build/docs/build-config + +# this must be specified in seconds. If omitted, defaults to 600s (10 mins) +timeout: 7200s +steps: + - name: 'gcr.io/k8s-testimages/gcb-docker-gcloud:latest' + entrypoint: bash + env: + - PROW_GIT_TAG=$_GIT_TAG + - PULL_BASE_REF=$_PULL_BASE_REF + - VERSION=$_PULL_BASE_REF + args: + - -c + - | + echo "Building/Pushing NPD containers" + make push-container +substitutions: + # _GIT_TAG will be filled with a git-based tag for the image, of the form vYYYYMMDD-hash, and + # can be used as a substitution + _GIT_TAG: 'PLACE_HOLDER' + _PULL_BASE_REF: 'master'