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
2 changes: 1 addition & 1 deletion api/v1/qdrantcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type QdrantClusterSpec struct {
Version string `json:"version"`
// Size specifies the desired number of Qdrant nodes in the cluster
// +kubebuilder:validation:Minimum=1
// +kubebuilder:validation:Maximum=30
// +kubebuilder:validation:Maximum=100
Size int `json:"size"`
// ServicePerNode specifies whether the cluster should start a dedicated service for each node.
// +kubebuilder:default=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ spec:
size:
description: Size specifies the desired number of Qdrant nodes in
the cluster
maximum: 30
maximum: 100
minimum: 1
type: integer
startupDelaySeconds:
Expand Down
2 changes: 1 addition & 1 deletion crds/qdrant.io_qdrantclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ spec:
size:
description: Size specifies the desired number of Qdrant nodes in
the cluster
maximum: 30
maximum: 100
minimum: 1
type: integer
startupDelaySeconds:
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ _Appears in:_
| --- | --- | --- | --- |
| `id` _string_ | Id specifies the unique identifier of the cluster | | |
| `version` _string_ | Version specifies the version of Qdrant to deploy | | |
| `size` _integer_ | Size specifies the desired number of Qdrant nodes in the cluster | | Maximum: 30 <br />Minimum: 1 <br /> |
| `size` _integer_ | Size specifies the desired number of Qdrant nodes in the cluster | | Maximum: 100 <br />Minimum: 1 <br /> |
| `servicePerNode` _boolean_ | ServicePerNode specifies whether the cluster should start a dedicated service for each node. | true | |
| `clusterManager` _boolean_ | ClusterManager specifies whether to use the cluster manager for this cluster.<br />The Python-operator will deploy a dedicated cluster manager instance.<br />The Go-operator will use a shared instance.<br />If not set, the default will be taken from the operator config. | | |
| `suspend` _boolean_ | Suspend specifies whether to suspend the cluster.<br />If enabled, the cluster will be suspended and all related resources will be removed except the PVCs. | false | |
Expand Down
Loading