-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: shaoyue.chen <[email protected]>
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This is a sample to use dynamic configurations for milvus | ||
# note milvus version has to be v2.3.0 or later | ||
apiVersion: milvus.io/v1beta1 | ||
kind: Milvus | ||
metadata: | ||
name: my-release | ||
labels: | ||
app: milvus | ||
spec: | ||
dependencies: {} | ||
components: | ||
# make operator only update configMap when change spec.config field | ||
updateConfigMapOnly: true | ||
config: | ||
# for allowed dynamic fields | ||
# check https://milvus.io/docs/dynamic_config.md for latest version | ||
# check https://milvus.io/docs/v2.3.x/dynamic_config.md for v2.3 | ||
# eg: change the max size of disk segment to 4096 | ||
dataCoord: | ||
segment: | ||
diskSegmentMaxSize: 4096 # default is 2048 |