[skip ci] Add comment of utils on benchamrk (#8575)

Signed-off-by: wangting0128 <ting.wang@zilliz.com>
pull/8594/head
wt 2021-09-26 14:56:06 +08:00 committed by GitHub
parent de3fd15aee
commit 0bb3a63e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -126,6 +126,12 @@ def get_deploy_mode(deploy_params):
def get_server_tag(deploy_params):
"""
Get service deployment configuration
e.g.:
server:
server_tag: "8c16m"
"""
server_tag = ""
if deploy_params and "server" in deploy_params:
server = deploy_params["server"]