Skip to content

Commit 0c46290

Browse files
authored
Implement OverrideReplicaSet Id for #1650 (#1656)
1 parent 6c683e7 commit 0c46290

6 files changed

+45
-1
lines changed

api/v1/mongodbcommunity_types.go

+3
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,9 @@ type AutomationConfigOverride struct {
328328
}
329329

330330
type OverrideReplicaSet struct {
331+
// Id can be used together with additionalMongodConfig.replication.replSetName
332+
// to manage clusters where replSetName differs from the MongoDBCommunity resource name
333+
Id *string `json:"id,omitempty"`
331334
// +kubebuilder:validation:Type=object
332335
// +kubebuilder:pruning:PreserveUnknownFields
333336
Settings MapWrapper `json:"settings,omitempty"`

api/v1/zz_generated.deepcopy.go

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/bases/mongodbcommunity.mongodb.com_mongodbcommunity.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,11 @@ spec:
225225
type: array
226226
replicaSet:
227227
properties:
228+
id:
229+
description: |-
230+
Id can be used together with additionalMongodConfig.replication.replSetName
231+
to manage clusters where replSetName differs from the MongoDBCommunity resource name
232+
type: string
228233
settings:
229234
description: |-
230235
MapWrapper is a wrapper for a map to be used by other structs.

controllers/replica_set_controller.go

+3
Original file line numberDiff line numberDiff line change
@@ -527,8 +527,10 @@ func buildAutomationConfig(mdb mdbv1.MongoDBCommunity, isEnterprise bool, auth a
527527
}
528528

529529
var acOverrideSettings map[string]interface{}
530+
var acReplicaSetId *string
530531
if mdb.Spec.AutomationConfigOverride != nil {
531532
acOverrideSettings = mdb.Spec.AutomationConfigOverride.ReplicaSet.Settings.Object
533+
acReplicaSetId = mdb.Spec.AutomationConfigOverride.ReplicaSet.Id
532534
}
533535

534536
return automationconfig.NewBuilder().
@@ -545,6 +547,7 @@ func buildAutomationConfig(mdb mdbv1.MongoDBCommunity, isEnterprise bool, auth a
545547
SetFCV(mdb.Spec.FeatureCompatibilityVersion).
546548
SetOptions(automationconfig.Options{DownloadBase: "/var/lib/mongodb-mms-automation"}).
547549
SetAuth(auth).
550+
SetReplicaSetId(acReplicaSetId).
548551
SetSettings(acOverrideSettings).
549552
SetMemberOptions(mdb.Spec.MemberConfig).
550553
SetDataDir(mdb.GetMongodConfiguration().GetDBDataDir()).

pkg/automationconfig/automation_config_builder.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ type Builder struct {
5454
port int
5555
memberOptions []MemberOptions
5656
forceReconfigureToVersion *int64
57+
replicaSetId *string
5758
settings map[string]interface{}
5859
}
5960

@@ -194,6 +195,11 @@ func (b *Builder) SetAuth(auth Auth) *Builder {
194195
return b
195196
}
196197

198+
func (b *Builder) SetReplicaSetId(id *string) *Builder {
199+
b.replicaSetId = id
200+
return b
201+
}
202+
197203
func (b *Builder) SetSettings(settings map[string]interface{}) *Builder {
198204
b.settings = settings
199205
return b
@@ -372,12 +378,17 @@ func (b *Builder) Build() (AutomationConfig, error) {
372378
replSetForceConfig = &ReplSetForceConfig{CurrentVersion: *b.forceReconfigureToVersion}
373379
}
374380

381+
replicaSetId := b.name
382+
if b.replicaSetId != nil {
383+
replicaSetId = *b.replicaSetId
384+
}
385+
375386
currentAc := AutomationConfig{
376387
Version: b.previousAC.Version,
377388
Processes: processes,
378389
ReplicaSets: []ReplicaSet{
379390
{
380-
Id: b.name,
391+
Id: replicaSetId,
381392
Members: members,
382393
ProtocolVersion: "1",
383394
NumberArbiters: b.arbiters,

pkg/automationconfig/automation_config_test.go

+17
Original file line numberDiff line numberDiff line change
@@ -530,3 +530,20 @@ func createAutomationConfig(name, mongodbVersion, domain string, opts Options, a
530530
ac.Version = acVersion
531531
return ac
532532
}
533+
534+
func TestReplicaSetId(t *testing.T) {
535+
id := "rs0"
536+
ac, err := NewBuilder().
537+
SetName("my-rs").
538+
SetDomain("my-ns.svc.cluster.local").
539+
SetMongoDBVersion("4.2.0").
540+
SetMembers(3).
541+
AddVersion(defaultMongoDbVersion("4.3.2")).
542+
SetReplicaSetId(&id).
543+
Build()
544+
545+
assert.NoError(t, err)
546+
assert.Len(t, ac.ReplicaSets, 1)
547+
rs := ac.ReplicaSets[0]
548+
assert.Equal(t, rs.Id, id, "The provided id should be used")
549+
}

0 commit comments

Comments
 (0)