Skip to content

Commit

Permalink
remove minio gateway (#77)
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Zeng <[email protected]>
  • Loading branch information
LoveEachDay authored Mar 18, 2024
1 parent c7ccc80 commit 31e08ce
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/milvus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: milvus
appVersion: "2.3.12"
kubeVersion: "^1.10.0-0"
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
version: 4.1.25
version: 4.1.26
keywords:
- milvus
- elastic
Expand Down
22 changes: 21 additions & 1 deletion charts/milvus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,27 @@ In case you want to use a different `secretName` or mount path inside pod, modif
name: milvus-tls
```

## Milvus with External Object Storage

As of https://github.com/minio/minio/releases/tag/RELEASE.2022-10-29T06-21-33Z, the MinIO Gateway and the related filesystem mode code have been removed. It is now recommended to utilize the `externalS3` configuration for integrating with various object storage services. Notably, Milvus now provides support for popular object storage platforms such as AWS S3, GCP GCS, Azure Blob, Aliyun OSS and Tencent COS.

The recommended configuration option for `externalS3.cloudProvider` includes the following choices: `aws`, `gcp`, `azure`, `aliyun`, and `tencent`. Here's an example to use AWS S3 for Milvus object storage:

```
minio:
enabled: false
externalS3:
enabled: true
cloudProvider: aws
host: s3.aws.com
port: 443
useSSL: true
bucketName: <bucket-name>
accessKey: <s3-access-key>
secretKey: <s3-secret-key>
```


## Uninstall the Chart

```bash
Expand Down Expand Up @@ -294,7 +315,6 @@ The following table lists the configurable parameters of the Milvus Service and
| `externalS3.iamEndpoint` | The IAM endpoint of the external S3 | `` |
| `externalS3.region` | The region of the external S3 | `` |
| `externalS3.useVirtualHost` | If true, the external S3 whether use virtual host bucket mode | `` |
| `externalGcs.bucketName` | The Bucket Name of the external GCS. Requires GCS gateway to be enabled in the minIO configuration | `unset` |
| `externalEtcd.enabled` | Enable or disable external Etcd | `false` |
| `externalEtcd.endpoints` | The endpoints of the external etcd | `{}` |
| `externalPulsar.enabled` | Enable or disable external Pulsar | `false` |
Expand Down
6 changes: 0 additions & 6 deletions charts/milvus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,12 +505,6 @@ minio:
requests:
memory: 2Gi

gcsgateway:
enabled: false
replicas: 1
gcsKeyJson: "/etc/credentials/gcs_key.json"
projectId: ""

service:
type: ClusterIP
port: 9000
Expand Down

0 comments on commit 31e08ce

Please sign in to comment.