From cc257f29a2606912170efc62c80730a767708593 Mon Sep 17 00:00:00 2001 From: IronPan Date: Mon, 11 Feb 2019 16:10:00 -0800 Subject: [PATCH 1/4] switch test to us-west1 (#808) * switch test to east1 * Update presubmit-tests-with-pipeline-deployment.sh --- test/presubmit-tests-with-pipeline-deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/presubmit-tests-with-pipeline-deployment.sh b/test/presubmit-tests-with-pipeline-deployment.sh index 1b43175ed61b..85d6206a0b54 100755 --- a/test/presubmit-tests-with-pipeline-deployment.sh +++ b/test/presubmit-tests-with-pipeline-deployment.sh @@ -71,7 +71,7 @@ echo "presubmit test starts" # activating the service account gcloud auth activate-service-account --key-file="${GOOGLE_APPLICATION_CREDENTIALS}" -gcloud config set compute/zone us-central1-a +gcloud config set compute/zone us-west1-a gcloud config set core/project ${PROJECT} #Uploading the source code to GCS: From c565b42e2947d001fd569cdebc154b5b401635fd Mon Sep 17 00:00:00 2001 From: hongye-sun <43763191+hongye-sun@users.noreply.github.com> Date: Mon, 11 Feb 2019 16:39:52 -0800 Subject: [PATCH 2/4] add pyarrow in license csv. (#810) --- components/third_party_licenses.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/components/third_party_licenses.csv b/components/third_party_licenses.csv index 6116760914c6..e8f3004a63d7 100644 --- a/components/third_party_licenses.csv +++ b/components/third_party_licenses.csv @@ -180,3 +180,4 @@ webencodings,https://raw.githubusercontent.com/gsnedders/python-webencodings/mas google-api-core,https://raw.githubusercontent.com/googleapis/google-cloud-python/master/LICENSE,Apache 2.0 google-resumable-media,https://raw.githubusercontent.com/googleapis/google-resumable-media-python/master/LICENSE,Apache 2.0 trainer,https://raw.githubusercontent.com/kubeflow/pipelines/master/LICENSE,Apache 2.0 +pyarrow,https://raw.githubusercontent.com/apache/arrow/master/LICENSE.txt,Apache 2.0 From 194fae8c0fd2b58b0d9b8b51df57ad9b64e0aeac Mon Sep 17 00:00:00 2001 From: IronPan Date: Mon, 11 Feb 2019 17:56:56 -0800 Subject: [PATCH 3/4] add ViewerCrdController to cloud builder release spec --- .release.cloudbuild.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.release.cloudbuild.yaml b/.release.cloudbuild.yaml index 00eb3071df93..8513fb6e464f 100644 --- a/.release.cloudbuild.yaml +++ b/.release.cloudbuild.yaml @@ -50,6 +50,18 @@ steps: id: 'tagScheduledworkflowCommitSHA' waitFor: ['pullScheduledworkflow'] +- name: 'gcr.io/cloud-builders/docker' + args: ['pull', 'gcr.io/$PROJECT_ID/viewer-crd-controller:$COMMIT_SHA'] + id: 'pullViewerCrdController' +- name: 'gcr.io/cloud-builders/docker' + args: ['tag', 'gcr.io/$PROJECT_ID/viewer-crd-controller:$COMMIT_SHA', 'gcr.io/ml-pipeline/viewer-crd-controller:$TAG_NAME'] + id: 'tagViewerCrdControllerVersionNumber' + waitFor: ['pullViewerCrdController'] +- name: 'gcr.io/cloud-builders/docker' + args: ['tag', 'gcr.io/$PROJECT_ID/viewer-crd-controller:$COMMIT_SHA', 'gcr.io/ml-pipeline/viewer-crd-controller:$COMMIT_SHA'] + id: 'tagViewerCrdControllerCommitSHA' + waitFor: ['pullViewerCrdController'] + - name: 'gcr.io/cloud-builders/docker' args: ['pull', 'gcr.io/$PROJECT_ID/persistenceagent:$COMMIT_SHA'] id: 'pullPersistenceagent' @@ -99,5 +111,7 @@ images: - 'gcr.io/ml-pipeline/scheduledworkflow:$COMMIT_SHA' - 'gcr.io/ml-pipeline/persistenceagent:$TAG_NAME' - 'gcr.io/ml-pipeline/persistenceagent:$COMMIT_SHA' +- 'gcr.io/ml-pipeline/viewer-crd-controller:$TAG_NAME' +- 'gcr.io/ml-pipeline/viewer-crd-controller:$COMMIT_SHA' timeout: '1200s' From 198945de6cd9f232976f84abf22b49022e3cc947 Mon Sep 17 00:00:00 2001 From: IronPan Date: Mon, 11 Feb 2019 18:31:05 -0800 Subject: [PATCH 4/4] add ViewerCrdController to cloud builder release spec (#811)