Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Enable health probe for minio by default (#362)
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Zeng <[email protected]>

Signed-off-by: Edward Zeng <[email protected]>
  • Loading branch information
LoveEachDay authored Aug 26, 2022
1 parent 04712f9 commit 110c215
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 5 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.1.1"
kubeVersion: "^1.10.0-0"
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
version: 3.1.7
version: 3.1.8
keywords:
- milvus
- elastic
Expand Down
Binary file removed charts/milvus/charts/minio-8.0.11.tgz
Binary file not shown.
Binary file added charts/milvus/charts/minio-8.0.14.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions charts/milvus/requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies:
version: 6.3.3
- name: minio
repository: https://milvus-io.github.io/milvus-helm
version: 8.0.11
version: 8.0.14
- name: pulsar
repository: https://pulsar.apache.org/charts
version: 2.7.8
Expand All @@ -14,5 +14,5 @@ dependencies:
- name: mysql
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
version: 8.5.3
digest: sha256:724eda0aab72cf7e7dd421af1d70d5eb8e25822703c31b303c7f75c15631e296
generated: "2022-07-25T19:04:23.469903+08:00"
digest: sha256:eafbb9ed1cb291e628853816bc1293638e6568c53f4f4ff362c4d73522cbab72
generated: "2022-08-26T18:24:42.661343+08:00"
2 changes: 1 addition & 1 deletion charts/milvus/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
tags:
- etcd
- name: minio
version: 8.0.11
version: 8.0.14
repository: https://milvus-io.github.io/milvus-helm
condition: minio.enabled
tags:
Expand Down
24 changes: 24 additions & 0 deletions charts/milvus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,30 @@ minio:
accessMode: ReadWriteOnce
size: 500Gi

livenessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5

readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 5

startupProbe:
enabled: true
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 60

## Configuration values for the etcd dependency
## ref: https://artifacthub.io/packages/helm/bitnami/etcd
##
Expand Down

0 comments on commit 110c215

Please sign in to comment.