Skip to content

Commit

Permalink
Merge pull request rook#13561 from travisn/mds-max-count
Browse files Browse the repository at this point in the history
mds: Increase max limit of mds active daemons
  • Loading branch information
travisn authored Jan 11, 2024
2 parents 4203d9b + 98816ad commit 5bdf451
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/charts/rook-ceph/templates/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7104,7 +7104,7 @@ spec:
activeCount:
description: The number of metadata servers that are active.
format: int32
maximum: 10
maximum: 50
minimum: 1
type: integer
activeStandby:
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7099,7 +7099,7 @@ spec:
activeCount:
description: The number of metadata servers that are active.
format: int32
maximum: 10
maximum: 50
minimum: 1
type: integer
activeStandby:
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/ceph.rook.io/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ type FilesystemSpec struct {
type MetadataServerSpec struct {
// The number of metadata servers that are active. The remaining servers in the cluster will be in standby mode.
// +kubebuilder:validation:Minimum=1
// +kubebuilder:validation:Maximum=10
// +kubebuilder:validation:Maximum=50
ActiveCount int32 `json:"activeCount"`

// Whether each active MDS instance will have an active standby with a warm metadata cache for faster failover.
Expand Down

0 comments on commit 5bdf451

Please sign in to comment.