From ed0e6f72f3ff707eebc562be5a9937a2798be068 Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Wed, 8 Dec 2021 17:41:07 +0800 Subject: [PATCH] [skip ci] Update datanode replicas in scale test (#12988) Signed-off-by: ThreadDao --- tests/python_client/scale/test_index_node_scale.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/python_client/scale/test_index_node_scale.py b/tests/python_client/scale/test_index_node_scale.py index 6fa076f26c..0c1f0337c0 100644 --- a/tests/python_client/scale/test_index_node_scale.py +++ b/tests/python_client/scale/test_index_node_scale.py @@ -29,7 +29,7 @@ class TestIndexNodeScale: 4.create index with one indexNode expected: The cost of one indexNode is about twice that of two indexNodes """ - release_name = "tmp-index" + release_name = "scale-index" image = f'{constants.IMAGE_REPOSITORY}:{constants.IMAGE_TAG}' data_config = { 'metadata.namespace': constants.NAMESPACE, @@ -37,6 +37,7 @@ class TestIndexNodeScale: 'spec.components.image': image, 'spec.components.proxy.serviceType': 'LoadBalancer', 'spec.components.indexNode.replicas': 1, + 'spec.components.dataNode.replicas': 2, 'spec.config.dataCoord.enableCompaction': True, 'spec.config.dataCoord.enableGarbageCollection': True }