From 72b4e1f7189bfef109100bd4d38c84b8614410c7 Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Tue, 21 Dec 2021 16:07:02 +0800 Subject: [PATCH] [skip e2e] Update milvus image harbor (#13874) Signed-off-by: ThreadDao --- tests/python_client/chaos/constants.py | 2 +- tests/python_client/scale/test_query_node_scale.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/python_client/chaos/constants.py b/tests/python_client/chaos/constants.py index d0fc26fdda..f99022d3cf 100644 --- a/tests/python_client/chaos/constants.py +++ b/tests/python_client/chaos/constants.py @@ -3,7 +3,7 @@ MONGO_SERVER = 'mongodb://mongodb.test:27017/' SCHEDULER_DB = "scheduler" JOB_COLLECTION = "jobs" -REGISTRY_URL = "registry.zilliz.com/milvus/milvus" +REGISTRY_URL = "registry.milvus.io/milvus/milvus" IDC_NAS_URL = "//172.16.70.249/test" SERVER_HOST_DEFAULT = "127.0.0.1" diff --git a/tests/python_client/scale/test_query_node_scale.py b/tests/python_client/scale/test_query_node_scale.py index 22981b8955..a842b412ca 100644 --- a/tests/python_client/scale/test_query_node_scale.py +++ b/tests/python_client/scale/test_query_node_scale.py @@ -36,10 +36,11 @@ class TestQueryNodeScale: expected: Verify milvus remains healthy and search successfully during scale """ release_name = "scale-query" + image = f'{constants.IMAGE_REPOSITORY}:{constants.IMAGE_TAG}' query_config = { 'metadata.namespace': constants.NAMESPACE, 'metadata.name': release_name, - 'spec.components.image': 'harbor.zilliz.cc/milvus/milvus:master-20211202-ed546d0', + 'spec.components.image': image, 'spec.components.proxy.serviceType': 'LoadBalancer', 'spec.components.queryNode.replicas': 1, 'spec.config.dataCoord.enableCompaction': True,