File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ func NewGate() MutableGate {
9494
9595 if err := gate .Add (map [Feature ]featuregate.FeatureSpec {
9696 AppendCustomQueries : {Default : false , PreRelease : featuregate .Alpha },
97- AutoCreateUserSchema : {Default : false , PreRelease : featuregate .Alpha },
97+ AutoCreateUserSchema : {Default : true , PreRelease : featuregate .Beta },
9898 AutoGrowVolumes : {Default : false , PreRelease : featuregate .Alpha },
9999 BridgeIdentifiers : {Default : false , PreRelease : featuregate .Alpha },
100100 InstanceSidecars : {Default : false , PreRelease : featuregate .Alpha },
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ func TestDefaults(t *testing.T) {
1616 gate := NewGate ()
1717
1818 assert .Assert (t , false == gate .Enabled (AppendCustomQueries ))
19- assert .Assert (t , false == gate .Enabled (AutoCreateUserSchema ))
19+ assert .Assert (t , true == gate .Enabled (AutoCreateUserSchema ))
2020 assert .Assert (t , false == gate .Enabled (AutoGrowVolumes ))
2121 assert .Assert (t , false == gate .Enabled (BridgeIdentifiers ))
2222 assert .Assert (t , false == gate .Enabled (InstanceSidecars ))
You can’t perform that action at this time.
0 commit comments