diff --git a/configs/milvus.yaml b/configs/milvus.yaml index 7fc1b899888da..7d01ef7a66842 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -68,8 +68,8 @@ minio: port: 9000 # Port of MinIO/S3 accessKeyID: minioadmin # accessKeyID of MinIO/S3 secretAccessKey: minioadmin # MinIO/S3 encryption string + useSSL: false # Access to MinIO/S3 with SSL ssl: - enabled: false # Access to MinIO/S3 with SSL tlsCACert: /path/to/public.crt # path to your CACert file, ignore when it is empty bucketName: a-bucket # Bucket name in MinIO/S3 rootPath: files # The root path where the message is stored in MinIO/S3 diff --git a/pkg/util/paramtable/service_param.go b/pkg/util/paramtable/service_param.go index b1516c683d8ed..01edd511cebf3 100644 --- a/pkg/util/paramtable/service_param.go +++ b/pkg/util/paramtable/service_param.go @@ -1095,9 +1095,8 @@ func (p *MinioConfig) Init(base *BaseTable) { p.SecretAccessKey.Init(base.mgr) p.UseSSL = ParamItem{ - Key: "minio.ssl.enabled", - FallbackKeys: []string{"minio.useSSL"}, - Version: "2.3.12", + Key: "minio.useSSL", + Version: "2.0.0", DefaultValue: "false", PanicIfEmpty: true, Doc: "Access to MinIO/S3 with SSL",