Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/v1/qdrantcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ type QdrantConfigurationCollection struct {
type QdrantConfigurationCollectionStrictMode struct {
// MaxPayloadIndexCount represents the maximal number of payload indexes allowed to be created.
// It can be set for Qdrant version >= 1.16.0
// Default to 100 if omitted and Qdrant version >= 1.16.0
// +optional
// +kubebuilder:validation:Minimum:=1
MaxPayloadIndexCount *uint `json:"max_payload_index_count,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ spec:
description: |-
MaxPayloadIndexCount represents the maximal number of payload indexes allowed to be created.
It can be set for Qdrant version >= 1.16.0
Default to 100 if omitted and Qdrant version >= 1.16.0
minimum: 1
type: integer
type: object
Expand Down
1 change: 1 addition & 0 deletions crds/qdrant.io_qdrantclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ spec:
description: |-
MaxPayloadIndexCount represents the maximal number of payload indexes allowed to be created.
It can be set for Qdrant version >= 1.16.0
Default to 100 if omitted and Qdrant version >= 1.16.0
minimum: 1
type: integer
type: object
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ _Appears in:_

| Field | Description | Default | Validation |
| --- | --- | --- | --- |
| `max_payload_index_count` _integer_ | MaxPayloadIndexCount represents the maximal number of payload indexes allowed to be created.<br />It can be set for Qdrant version >= 1.16.0 | | Minimum: 1 <br /> |
| `max_payload_index_count` _integer_ | MaxPayloadIndexCount represents the maximal number of payload indexes allowed to be created.<br />It can be set for Qdrant version >= 1.16.0<br />Default to 100 if omitted and Qdrant version >= 1.16.0 | | Minimum: 1 <br /> |


#### QdrantConfigurationCollectionVectors
Expand Down
Loading