From 35720448da5a2e09ff129cbf7da7ff376a0afbda Mon Sep 17 00:00:00 2001 From: IronPan Date: Tue, 14 May 2019 11:29:50 -0700 Subject: [PATCH] switch the release script from staging to test (#1328) /assign @gaoning777 --- components/release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/release.sh b/components/release.sh index b794e1b8d4f..acc0f98eed8 100755 --- a/components/release.sh +++ b/components/release.sh @@ -15,10 +15,10 @@ # limitations under the License. # This script automated the process to release the component images. -# To run it, find a good release candidate commit SHA from ml-pipeline-staging project, +# To run it, find a good release candidate commit SHA from ml-pipeline-test project, # and provide a full github COMMIT SHA to the script. E.g. # ./release.sh 2118baf752d3d30a8e43141165e13573b20d85b8 -# The script copies the images from staging to prod, and update the local code. +# The script copies the images from test to prod, and update the local code. # You can then send a PR using your local branch. set -xe @@ -44,7 +44,7 @@ images=( ) COMMIT_SHA=$1 -FROM_GCR_PREFIX='gcr.io/ml-pipeline-staging/' +FROM_GCR_PREFIX='gcr.io/ml-pipeline-test/' TO_GCR_PREFIX='gcr.io/ml-pipeline/' REPO=kubeflow/pipelines @@ -68,7 +68,7 @@ do TARGET_IMAGE_BASE=${TO_GCR_PREFIX}${image} TARGET_IMAGE=${TARGET_IMAGE_BASE}:${COMMIT_SHA} - # Move image from staging to prod GCR + # Move image from test to prod GCR gcloud container images add-tag --quiet \ ${FROM_GCR_PREFIX}${image}:${COMMIT_SHA} ${TARGET_IMAGE}