Skip to content

Commit 77721a9

Browse files
authored
[CRC-1299] Increase max cluster size (#169)
1 parent bc6be26 commit 77721a9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

api/v1/qdrantcluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ type QdrantClusterSpec struct {
6464
Version string `json:"version"`
6565
// Size specifies the desired number of Qdrant nodes in the cluster
6666
// +kubebuilder:validation:Minimum=1
67-
// +kubebuilder:validation:Maximum=30
67+
// +kubebuilder:validation:Maximum=100
6868
Size int `json:"size"`
6969
// ServicePerNode specifies whether the cluster should start a dedicated service for each node.
7070
// +kubebuilder:default=true

charts/qdrant-kubernetes-api/templates/region-crds/qdrant.io_qdrantclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ spec:
675675
size:
676676
description: Size specifies the desired number of Qdrant nodes in
677677
the cluster
678-
maximum: 30
678+
maximum: 100
679679
minimum: 1
680680
type: integer
681681
startupDelaySeconds:

crds/qdrant.io_qdrantclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ spec:
674674
size:
675675
description: Size specifies the desired number of Qdrant nodes in
676676
the cluster
677-
maximum: 30
677+
maximum: 100
678678
minimum: 1
679679
type: integer
680680
startupDelaySeconds:

docs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ _Appears in:_
780780
| --- | --- | --- | --- |
781781
| `id` _string_ | Id specifies the unique identifier of the cluster | | |
782782
| `version` _string_ | Version specifies the version of Qdrant to deploy | | |
783-
| `size` _integer_ | Size specifies the desired number of Qdrant nodes in the cluster | | Maximum: 30 <br />Minimum: 1 <br /> |
783+
| `size` _integer_ | Size specifies the desired number of Qdrant nodes in the cluster | | Maximum: 100 <br />Minimum: 1 <br /> |
784784
| `servicePerNode` _boolean_ | ServicePerNode specifies whether the cluster should start a dedicated service for each node. | true | |
785785
| `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. | | |
786786
| `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 | |

0 commit comments

Comments
 (0)