Skip to content

Commit 5b2caca

Browse files
committed
YDBOPS-9722 fillMissingSections for ConfigMap on operator upgrade (ydb-platform#210)
1 parent b3343c8 commit 5b2caca

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

api/v1alpha1/configuration.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func tryFillMissingSections(
8989
}
9090
}
9191

92-
func buildConfiguration(cr *Storage, crDB *Database) (string, error) {
92+
func BuildConfiguration(cr *Storage, crDB *Database) (string, error) {
9393
config := make(map[string]interface{})
9494

9595
// If any kind of configuration exists on Database object, then

api/v1alpha1/database_webhook.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func (r *DatabaseDefaulter) Default(ctx context.Context, obj runtime.Object) err
142142
}
143143

144144
if database.Spec.Configuration != "" || (database.Spec.Encryption != nil && database.Spec.Encryption.Enabled) {
145-
configuration, err := buildConfiguration(storage, database)
145+
configuration, err := BuildConfiguration(storage, database)
146146
if err != nil {
147147
return err
148148
}

api/v1alpha1/storage_webhook.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func (r *StorageDefaulter) Default(ctx context.Context, obj runtime.Object) erro
166166
storage.Spec.Domain = DefaultDatabaseDomain
167167
}
168168

169-
configuration, err := buildConfiguration(storage, nil)
169+
configuration, err := BuildConfiguration(storage, nil)
170170
if err != nil {
171171
return err
172172
}

deploy/ydb-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.5.12
18+
version: 0.5.13
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.5.12"
24+
appVersion: "0.5.13"

internal/controllers/remotestoragenodeset/controller_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ var _ = Describe("RemoteStorageNodeSet controller tests", func() {
192192
Cluster: testRemoteCluster,
193193
},
194194
StorageNodeSpec: v1alpha1.StorageNodeSpec{
195-
Nodes: 8,
195+
Nodes: 2,
196196
},
197197
})
198198
storageSample.Spec.NodeSets = append(storageSample.Spec.NodeSets, v1alpha1.StorageNodeSetSpecInline{
@@ -201,7 +201,7 @@ var _ = Describe("RemoteStorageNodeSet controller tests", func() {
201201
Cluster: testRemoteCluster,
202202
},
203203
StorageNodeSpec: v1alpha1.StorageNodeSpec{
204-
Nodes: 4,
204+
Nodes: 2,
205205
},
206206
})
207207

@@ -568,7 +568,7 @@ var _ = Describe("RemoteStorageNodeSet controller tests", func() {
568568
{
569569
Name: testNodeSetName + "-local",
570570
StorageNodeSpec: v1alpha1.StorageNodeSpec{
571-
Nodes: 4,
571+
Nodes: 6,
572572
},
573573
},
574574
{
@@ -577,7 +577,7 @@ var _ = Describe("RemoteStorageNodeSet controller tests", func() {
577577
Cluster: testRemoteCluster,
578578
},
579579
StorageNodeSpec: v1alpha1.StorageNodeSpec{
580-
Nodes: 8,
580+
Nodes: 2,
581581
},
582582
},
583583
}

internal/resources/database.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,17 @@ func (b *DatabaseBuilder) GetResourceBuilders(restConfig *rest.Config) []Resourc
5757
var optionalBuilders []ResourceBuilder
5858

5959
if b.Spec.Configuration != "" {
60+
// YDBOPS-9722 backward compatibility
61+
cfg, _ := api.BuildConfiguration(b.Storage, b.Unwrap())
62+
6063
optionalBuilders = append(
6164
optionalBuilders,
6265
&ConfigMapBuilder{
6366
Object: b,
6467

6568
Name: b.GetName(),
6669
Data: map[string]string{
67-
api.ConfigFileName: b.Spec.Configuration,
70+
api.ConfigFileName: cfg,
6871
},
6972
Labels: databaseLabels,
7073
},

internal/resources/storage.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,17 @@ func (b *StorageClusterBuilder) GetResourceBuilders(restConfig *rest.Config) []R
4646
statusServiceLabels.Merge(map[string]string{labels.ServiceComponent: labels.StatusComponent})
4747

4848
var optionalBuilders []ResourceBuilder
49+
50+
// YDBOPS-9722 backward compatibility
51+
cfg, _ := api.BuildConfiguration(b.Unwrap(), nil)
52+
4953
optionalBuilders = append(
5054
optionalBuilders,
5155
&ConfigMapBuilder{
5256
Object: b,
5357
Name: b.Storage.GetName(),
5458
Data: map[string]string{
55-
api.ConfigFileName: b.Spec.Configuration,
59+
api.ConfigFileName: cfg,
5660
},
5761
Labels: storageLabels,
5862
},

0 commit comments

Comments
 (0)