DEV Community

Cover image for Installing a Database Management Application on GKE with Percona Everest
Edith Puclla
Edith Puclla

Posted on • Updated on

Installing a Database Management Application on GKE with Percona Everest

Hi there! Welcome to this step-by-step guide on deploying a Database Management Application using Percona Everest on Google Kubernetes Engine (GKE).

Image description

What is Percona Everest?

Percona Everest is an open-source, cloud-native database platform designed for automated database provisioning and management. In simpler terms, Percona Everest simplifies and automates the entire lifecycle of databases in cloud environments using Kubernetes.

Image description

Setting Up the Environment

Before to start, ensure you have gcloud and kubectl installed. If you haven't done this yet, you can install them with the following commands:

gcloud auth login
gcloud components install kubectl
Enter fullscreen mode Exit fullscreen mode

With these tools ready, we can proceed to create a Kubernetes cluster on GKE.

Creating the Kubernetes Cluster

To create a Kubernetes cluster, use the following command:

gcloud container clusters create percona-everest-cluster --zone europe-west2-a --cluster-version 1.27 --machine-type n1-standard-4 --num-nodes=1
Enter fullscreen mode Exit fullscreen mode

That command will create a cluster with:

  • Name: percona-everest-cluster
  • Zone: europe-west2-a
  • Kubernetes version 1.27
  • Machine type: n1-standard-4
  • Number of Nodes: 01 node

The cluster creation will take a few minutes.

Once the process is complete, you should see a status of "RUNNING" indicating that your cluster is healthy and operational.

Setting Up Cluster Role Binding

Next, let's set up a ClusterRoleBinding to manage permissions for your Google Cloud user. This will give the currently logged-in user all necessary permissions over the cluster.

kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user $(gcloud config get-value core/account)
Enter fullscreen mode Exit fullscreen mode

Now that the cluster is set up, it's time to install Percona Everest.

Installing Percona Everest

First, verify that your Kubernetes cluster is up and running by checking the nodes:

kubectl get nodes
Enter fullscreen mode Exit fullscreen mode

Now, let's download and install the Everest CLI, the command-line tool to interact with and manage Percona Everest.

For macOS users:

curl -sSL -o everestctl https://github.com/percona/everest/releases/latest/download/everestctl-darwin-arm64
chmod +x everestctl
Enter fullscreen mode Exit fullscreen mode

Check how to do it in other Operating Systems in Install Everest CLI

Next, install Percona Everest:

./everestctl install
Enter fullscreen mode Exit fullscreen mode

During installation, you'll be asked to provide a namespace for Everest. If no name is provided, it will default to everest.

Afterward, you will choose which operator to install (MySQL, MongoDB, or PostgreSQL). For this demo, I will install all of them.

Image description

The installation includes several steps, let’s review these steps:

Image description

  1. Install the Operator Lifecycle Manager (OLM), which automates lifecycle management for Kubernetes database operators.
  2. Integrate Percona’s operator catalog into your Kubernetes environment, giving access to Percona's database solutions.
  3. Set up a dedicated space for monitoring tools.
  4. Deploy the VictoriaMetrics operator to manage monitoring and metrics collection for your databases.
  5. Configure and deploy the necessary tools for monitoring the health and performance of your databases.
  6. Creates a namespace specifically for the Percona Everest environment
  7. Deploy the required database operators (Percona XtraDB Cluster, Percona Server for MongoDB, and PostgreSQL) within the “Everest” namespace.
  8. Set up Role-Based Access Control to manage permissions.
  9. Installs the core Everest operator, which automates the provisioning and management of databases within the Kubernetes cluster.
  10. Deploy the API server for Everest, enabling communication between different components and allowing external systems to interact with Everest.

Setting the Admin Password

Once the installation is complete, update the password for the admin user with this command:

everestctl accounts set-password --username admin
Enter fullscreen mode Exit fullscreen mode

Alternatively, you can retrieve the initial admin password using:

everestctl accounts initial-admin-password
Enter fullscreen mode Exit fullscreen mode

Remember, it's best to set your own password, as the generated one isn't stored securely.

Accessing the Percona Everest UI

To access the Everest UI, you can use kubectl port-forwarding:

kubectl port-forward svc/everest 8080:8080 -n everest-system
Enter fullscreen mode Exit fullscreen mode

Now, open your browser and navigate to localhost:8080. The default username is admin, and you can paste the password generated earlier.

Once logged in, you can start creating your databases, create backups and restores, and monitor them.

Image description

Explore More Features

Percona Everest has many advanced features, such as:

  • Multi-cloud deployments
  • Support for multiple open-source databases
  • Horizontal and vertical scaling
  • Disaster recovery capabilities
  • Resource allocation flexibility
  • Database monitoring with Percona Monitoring and Management (PMM)

The official Percona Everest documentation provides more detailed information about these features. If you'd like to see more demos, check out the list of videos available on our YouTube Channel.

That's it! I hope you found this guide helpful.

Thanks for reading, and have a nice day!

Top comments (0)