github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/mysql/README.md (about) 1 # MySQL Operator for Kubernetes 2 3 ## Introduction 4 5 The MySQL Operator for Kubernetes is an operator for managing MySQL InnoDB Cluster setups inside a Kubernetes Cluster. 6 It manages the full lifecycle with set up and maintenance that includes automating upgrades and backup. 7 8 MySQL Operator for Kubernetes is brought to you by the MySQL team at Oracle. 9 10 ## Issues and Pull Requests 11 12 As with all MySQL projects, issues (including bugs and feature requests) are tracked here: 13 14 * https://bugs.mysql.com/ 15 16 Pull requests submitted via github are also tracked at bugs.mysql.com; see [CONTRIBUTING](CONTRIBUTING.md) for related information. 17 18 ## License 19 20 Copyright (c) 2020, 2023, Oracle and/or its affiliates. 21 22 License information can be found in the [LICENSE](https://github.com/mysql/mysql-operator/blob/trunk/LICENSE) file. 23 This distribution may include materials developed by third parties. For license 24 and attribution notices for these materials, please refer to the `LICENSE` file. 25 26 ## Pre-requisites 27 * Kubernetes 1.21+ 28 * Helm v3 29 30 ## MySQL InnoDB Cluster Installation with Helm 31 32 Create MySQL InnoDB Cluster installations using defaults or with customization. 33 Here's an example using all defaults for a cluster named `mycluster`: 34 35 ```sh 36 $> helm install mycluster mysql-operator/mysql-innodbcluster 37 ``` 38 39 Or customize, this example sets options from the command line: 40 41 ```sh 42 $> helm install mycluster mysql-operator/mysql-innodbcluster \ 43 --namespace mynamespace \ 44 --create-namespace \ 45 --set credentials.root.user='root' \ 46 --set credentials.root.password='supersecret' \ 47 --set credentials.root.host='%' \ 48 --set serverInstances=3 \ 49 --set routerInstances=1 50 ``` 51 52 ## More Information 53 54 Refer to the official documentation at: 55 56 * https://dev.mysql.com/doc/mysql-operator/en/ 57 58 For additional downloads and the source code, visit: 59 60 * https://dev.mysql.com/downloads 61 * https://github.com/mysql/mysql-operator 62 63 Contributing to MySQL Operator for Kubernetes, see: 64 65 * See [CONTRIBUTING](CONTRIBUTING.md)