Skip to content

Commit

Permalink
Metadata: Updating metadata server version from 0.14.0 to v0.21.0
Browse files Browse the repository at this point in the history
Change to bump the metadata version to get the latest updates in MLMD.
  • Loading branch information
dushyanthsc committed Jan 24, 2020
1 parent c268288 commit 7a25327
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .release.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,14 @@ steps:
docker push gcr.io/ml-pipeline/google/pipelines-test/visualizationserver:$(cat /workspace/mm.ver)
- name: 'gcr.io/cloud-builders/docker'
args: ['pull', 'gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0']
args: ['pull', 'gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.0']
id: 'pullMetadataServer'
- name: 'gcr.io/cloud-builders/docker'
args: ['tag', 'gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0', 'gcr.io/ml-pipeline/google/pipelines/metadataserver:$TAG_NAME']
args: ['tag', 'gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.0', 'gcr.io/ml-pipeline/google/pipelines/metadataserver:$TAG_NAME']
id: 'tagMetadataServerForMarketplace'
waitFor: ['pullMetadataServer']
- name: 'gcr.io/cloud-builders/docker'
args: ['tag', 'gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0', 'gcr.io/ml-pipeline/google/pipelines-test/metadataserver:$TAG_NAME']
args: ['tag', 'gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.0', 'gcr.io/ml-pipeline/google/pipelines-test/metadataserver:$TAG_NAME']
id: 'tagMetadataServerForMarketplaceTest'
waitFor: ['pullMetadataServer']
- id: 'tagMetadataServerForMarketplaceMajorMinor'
Expand All @@ -260,8 +260,8 @@ steps:
args:
- -ceux
- |
docker tag gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0 gcr.io/ml-pipeline/google/pipelines/metadataserver:$(cat /workspace/mm.ver)
docker tag gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0 gcr.io/ml-pipeline/google/pipelines-test/metadataserver:$(cat /workspace/mm.ver)
docker tag gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.0 gcr.io/ml-pipeline/google/pipelines/metadataserver:$(cat /workspace/mm.ver)
docker tag gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.0 gcr.io/ml-pipeline/google/pipelines-test/metadataserver:$(cat /workspace/mm.ver)
docker push gcr.io/ml-pipeline/google/pipelines/metadataserver:$(cat /workspace/mm.ver)
docker push gcr.io/ml-pipeline/google/pipelines-test/metadataserver:$(cat /workspace/mm.ver)
Expand Down
2 changes: 1 addition & 1 deletion manifests/kustomize/base/metadata/metadata-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: container
image: gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0
image: gcr.io/tfx-oss-public/ml_metadata_store_server:v0.21.0
env:
- name: DBCONFIG_USER
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion manifests/kustomize/wi-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function bind_gsa_and_ksa {
function verify_workload_identity_binding {
local ksa=${1}
local namespace=${2}
local max_attempts=10
local max_attempts=20
local workload_identity_is_ready=false
for i in $(seq 1 ${max_attempts})
do
Expand Down
2 changes: 1 addition & 1 deletion test/deploy-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ else
NODE_POOL_CONFIG_ARG="--num-nodes=2 --machine-type=n1-standard-8 \
--enable-autoscaling --max-nodes=8 --min-nodes=2"
# Use new kubernetes master to improve workload identity stability.
KUBERNETES_VERSION_ARG="--cluster-version=1.14.8-gke.17"
KUBERNETES_VERSION_ARG="--cluster-version=1.14"
if [ "$ENABLE_WORKLOAD_IDENTITY" = true ]; then
WI_ARG="--identity-namespace=$PROJECT.svc.id.goog"
SCOPE_ARG=
Expand Down
4 changes: 2 additions & 2 deletions test/deploy-pipeline-mkp-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ echo MKP_VERSION:$MKP_VERSION, GCR_FOLDER:$GCR_FOLDER

export ARGO_VERSION=v2.3.0-license-compliance
export CLOUDSQL_PROXY_VERSION=1.14
export MLMD_SERVER_VERSION=0.14.0
export MLMD_SERVER_VERSION=v0.21.0
export MLMD_ENVOY_VERSION=initial
export MINIO_VERSION=RELEASE.2019-08-14T20-37-41Z-license-compliance
export MYSQL_VERSION=5.6
Expand Down Expand Up @@ -101,4 +101,4 @@ kubectl get pods -n ${NAMESPACE}
popd

# Waiting for the KFP resources are ready. TODO: verification of KFP resources
sleep 60
sleep 60

0 comments on commit 7a25327

Please sign in to comment.