You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ndb operator can be now built either in release mode or in debug mode.
The debug mode is meant for development and enables verbose logging and
more panics in the mgmapi module. The mode can be controlled by setting
the WITH_DEBUG environment variable before calling make.
Change-Id: I2450dd6fca7717a7b4b1490ba2c2111f8fad5e9e
Copy file name to clipboardExpand all lines: README.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,8 @@
1
1
# ndb-operator
2
2
3
-
This repository implements a simple controller for watching Ndb resources as
4
-
defined with a CustomResourceDefinition (CRD).
3
+
The MySQL NDB Operator is a Kubernetes operator for managing a MySQL Cluster setup inside a Kubernetes Cluster.
5
4
6
-
This is in preview state - mostly prototyping for testing concepts.
5
+
This is in preview state - DO NOT USE FOR PRODUCTION.
7
6
8
7
## License
9
8
@@ -51,6 +50,8 @@ To build the ndb-operator run,
51
50
make build
52
51
```
53
52
53
+
By default the operator is built in release mode. It is also possible to build the operator in debug mode by setting WITH_DEBUG environment variable to 1/ON. The debug mode can be more useful during development.
54
+
54
55
Once the operator is built, a docker image can be built by running,
0 commit comments