Skip to content

Commit f6ad74a

Browse files
authored
api: Disable TOKUDB by default. (#556)
fix(api): Disable TOKUDB by default fix: #555
1 parent 718344f commit f6ad74a

6 files changed

+6
-6
lines changed

api/v1alpha1/mysqlcluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type MysqlClusterSpec struct {
4343

4444
// MysqlOpts is the options of MySQL container.
4545
// +optional
46-
// +kubebuilder:default:={rootPassword: "", rootHost: "localhost", user: "radondb_usr", password: "RadonDB@123", database: "radondb", initTokuDB: true, resources: {limits: {cpu: "500m", memory: "1Gi"}, requests: {cpu: "100m", memory: "256Mi"}}}
46+
// +kubebuilder:default:={rootPassword: "", rootHost: "localhost", user: "radondb_usr", password: "RadonDB@123", database: "radondb", initTokuDB: false, resources: {limits: {cpu: "500m", memory: "1Gi"}, requests: {cpu: "100m", memory: "256Mi"}}}
4747
MysqlOpts MysqlOpts `json:"mysqlOpts,omitempty"`
4848

4949
// XenonOpts is the options of xenon container.

charts/mysql-operator/crds/mysql.radondb.com_mysqlclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ spec:
134134
mysqlOpts:
135135
default:
136136
database: radondb
137-
initTokuDB: true
137+
initTokuDB: false
138138
password: RadonDB@123
139139
resources:
140140
limits:

config/crd/bases/mysql.radondb.com_mysqlclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ spec:
134134
mysqlOpts:
135135
default:
136136
database: radondb
137-
initTokuDB: true
137+
initTokuDB: false
138138
password: RadonDB@123
139139
resources:
140140
limits:

config/samples/mysql_v1alpha1_mysqlcluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
user: radondb_usr
2424
password: RadonDB@123
2525
database: radondb
26-
initTokuDB: true
26+
initTokuDB: false
2727

2828
# A simple map between string and string.
2929
# Such as:

config/samples/mysql_v1alpha1_mysqlcluster_backup_schedule_demo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
user: radondb_usr
2020
password: RadonDB@123
2121
database: radondb
22-
initTokuDB: true
22+
initTokuDB: false
2323

2424
# A simple map between string and string.
2525
# Such as:

config/samples/mysql_v1alpha1_mysqlcluster_podAntiAffinity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
user: radondb_usr
2020
password: RadonDB@123
2121
database: radondb
22-
initTokuDB: true
22+
initTokuDB: false
2323

2424
# A simple map between string and string.
2525
# Such as:

0 commit comments

Comments
 (0)