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,