github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/mysql-operator/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 Operator for Kubernetes Installation with Helm
    31  
    32  Install the Helm repository:
    33  
    34  ```sh
    35  $> helm repo add mysql-operator https://mysql.github.io/mysql-operator/
    36  $> helm repo update
    37  ```
    38  
    39  Then deploy the operator:
    40  
    41  ```sh
    42  $> helm install mysql-operator mysql-operator/mysql-operator --namespace mysql-operator --create-namespace
    43  ```
    44  
    45  This deploys the latest MySQL Operator for Kubernetes from DockerHub using all defaults; although the deployment
    46  can be customized through a variety of options to override built-in defaults. See the documentation for details.
    47  
    48  ## More Information
    49  
    50  Refer to the official documentation at:
    51  
    52    * https://dev.mysql.com/doc/mysql-operator/en/
    53  
    54  For additional downloads and the source code, visit:
    55  
    56    * https://dev.mysql.com/downloads
    57    * https://github.com/mysql/mysql-operator
    58  
    59  Contributing to MySQL Operator for Kubernetes, see:
    60  
    61    * See [CONTRIBUTING](CONTRIBUTING.md)