Skip to content

Commit cf68196

Browse files
authored
fix: initializing\provisioning flapping (#101)
1 parent 7be2cc4 commit cf68196

File tree

9 files changed

+221
-169
lines changed

9 files changed

+221
-169
lines changed

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.4.18
18+
version: 0.4.19
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.4.18"
24+
appVersion: "0.4.19"

e2e/tests/data/storage-block-4-2-config.yaml

-49
Original file line numberDiff line numberDiff line change
@@ -4,55 +4,6 @@ host_configs:
44
- path: SectorMap:1:1
55
type: SSD
66
host_config_id: 1
7-
hosts:
8-
- host: storage-0
9-
host_config_id: 1
10-
walle_location:
11-
body: 1
12-
data_center: 'zone-a'
13-
rack: '1'
14-
- host: storage-1
15-
host_config_id: 1
16-
walle_location:
17-
body: 2
18-
data_center: 'zone-a'
19-
rack: '2'
20-
- host: storage-2
21-
host_config_id: 1
22-
walle_location:
23-
body: 3
24-
data_center: 'zone-a'
25-
rack: '3'
26-
- host: storage-3
27-
host_config_id: 1
28-
walle_location:
29-
body: 4
30-
data_center: 'zone-a'
31-
rack: '4'
32-
- host: storage-4
33-
host_config_id: 1
34-
walle_location:
35-
body: 5
36-
data_center: 'zone-a'
37-
rack: '5'
38-
- host: storage-5
39-
host_config_id: 1
40-
walle_location:
41-
body: 6
42-
data_center: 'zone-a'
43-
rack: '6'
44-
- host: storage-6
45-
host_config_id: 1
46-
walle_location:
47-
body: 7
48-
data_center: 'zone-a'
49-
rack: '7'
50-
- host: storage-7
51-
host_config_id: 1
52-
walle_location:
53-
body: 8
54-
data_center: 'zone-a'
55-
rack: '8'
567
domains_config:
578
domain:
589
# There can be only one root domain in a cluster. Domain name prefixes all scheme objects names, e.g. full name of a table table1 in database db1

e2e/tests/root_suite_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package tests
22

33
import (
4+
"os"
45
"path/filepath"
56
"testing"
67

@@ -26,7 +27,7 @@ func TestStorage(t *testing.T) {
2627
}
2728

2829
var _ = BeforeSuite(func() {
29-
logf.SetLogger(zap.New(zap.WriteTo(GinkgoWriter), zap.UseDevMode(true)))
30+
logf.SetLogger(zap.New(zap.WriteTo(os.Stdout), zap.UseDevMode(true)))
3031

3132
By("using existing test environment...")
3233
useExistingCluster := true

0 commit comments

Comments
 (0)