Install OpenEverest and expose via Ingress controller¶
This section explains how to install OpenEverest using Helm or everestctl and expose OpenEverest using Ingress.
An Ingress Controller is a Kubernetes component that manages external access to services within a cluster, usually over HTTP and HTTPS. It is responsible for processing Ingress resources, which are rules that define how traffic should be routed to different services within the cluster.
Prerequisites¶
-
A
kubeconfigfile in the~/.kube/configpath. If your file is located elsewhere, use the export command below to set theKUBECONFIGenvironment variable:export KUBECONFIG=~/.kube/config -
An Ingress controller (e.g., Nginx) installed on your Kubernetes cluster
-
(Optional but recommended for production) A TLS certificate stored in a Kubernetes Secret.
Percona Helm charts are in the percona/percona-helm-charts repository on GitHub.
Here are the steps to install OpenEverest and deploy additional database namespaces:
-
Add the Percona Helm repository:
helm repo add percona https://percona.github.io/percona-helm-charts/ helm repo update -
Install OpenEverest with Ingress enabled:
helm install everest percona/everest \ -n everest-system \ --set ingress.enabled=true \ --set ingress.ingressClassName="" \ --set ingress.hosts[0].host=everest.example.com \ --set ingress.hosts[0].paths[0].path=/ \ --set ingress.hosts[0].paths[0].pathType=ImplementationSpecificNote
Replace
everest.example.comwith your own domain.What’s happening under the hood
The command does the following:
-
Deploys the OpenEverest components in the
everest-systemnamespace. Currently, specifying a different namespace for OpenEverest is not supported. -
Deploys a new namespace called
everestfor your databases and the database operators.You can override the name of the database namespace by using the
dbNamespace.namespaceOverrideparameter. If you prefer to deploy just the core components, setdbNamespace.enabled=false
-
-
Verify the Ingress resource:
kubectl get ingress -n everest-systemEnsure the address provided is valid and correctly routes to the
everestservice.Example: Using a Helm values file
ingress: # -- Enable ingress for Everest server enabled: true # -- Ingress class name. This is used to specify which ingress controller should handle this ingress. ingressClassName: "nginx" # -- Additional annotations for the ingress resource. annotations: {} # -- List of hosts and their paths for the ingress resource. hosts: - host: everest.example.com paths: - path: / pathType: ImplementationSpecific # -- TLS configuration for the ingress resource. # -- Each entry in the list specifies a TLS certificate and the hosts it applies to. tls: [] # - secretName: everest-tls # hosts: # - everest.example.comInstall OpenEverest using this
YAMLfile:helm install everest percona/everest \ -n everest-system \ -f everest-values.yaml🔒 Install OpenEverest with TLS enabled
Install OpenEverest with TLS enabled:
helm install everest-core percona/everest \ --namespace everest-system \ --create-namespace --set server.tls.enabled=trueFor comprehensive instructions on enabling TLS for OpenEverest, see the section TLS setup with OpenEverest.
-
Once the installation is complete, retrieve the
adminpassword.kubectl get secret everest-accounts -n everest-system -o jsonpath='{.data.users\.yaml}' | base64 --decode | yq '.admin.passwordHash'-
The default username for logging into the OpenEverest UI is
admin. You can set a different default admin password by using theserver.initialAdminPasswordparameter during installation.Important
The default
adminpassword is stored in plain text. It is highly recommended that the password be updated usingeverestctlto ensure that the passwords are hashed. Instructions for installingeverestctlcan be found in everestctl installation guide.To access detailed information on user management, see the manage users in OpenEverest section.
-
-
To access the OpenEverest UI/API, open your browser and go to
https://everest.example.com.Note
Replace
everest.example.comwith your own domain. -
Deploy additional database namespaces:
Once OpenEverest runs successfully, you can create additional database namespaces using the
everest-db-namespaceHelm chart.If you set
dbNamespaces.enabled=falsein step 2, you can deploy a database namespace with the following command:helm install everest \ percona/everest-db-namespace \ --create-namespace \ --namespace <DB namespace>Note
- All database operators are installed in your database namespace by default. You can override this by specifying one or more of the following options:
[dbNamespace.pxc=false, dbNamespace.pg=false, dbNamespace.psmdb=false]. - Installation without chart hooks (i.e, the use of
--no-hooks) is currently not supported.
- All database operators are installed in your database namespace by default. You can override this by specifying one or more of the following options:
Important
Starting from version 1.4.0, everestctl now uses the Helm chart to install OpenEverest. To configure chart parameters during installation through everestctl, you can:
- Use the
--helm-.setflag to specify individual parameter values. - Provide a values file with the
--helm.valuesflag for bulk configuration.
To install and provision OpenEverest to Kubernetes:
-
Download the latest release of everestctl to provision OpenEverest. For detailed installation instructions, see everestctl installation documentation.
-
Install OpenEverest:
everestctl install \ --helm.set ingress.enabled=true \ --helm.set ingress.ingressClassName="" \ --helm.set ingress.hosts[0].host=everest.example.com \ --helm.set ingress.hosts[0].paths[0].path=/ \ --helm.set ingress.hosts[0].paths[0].pathType=ImplementationSpecificReplace
everest.example.comwith your own domain. -
Enter the specific names for the namespaces you want OpenEverest to manage, separating each name with a comma. These namespaces are restricted and cannot be used for deploying databases.
-
Verify Ingress:
kubectl get ingress -n everest-systemMake sure the address provided is valid and that it correctly routes to the
everestservice.Example: Custom YAML configuration file
ingress: # -- Enable ingress for Everest server enabled: true # -- Ingress class name. This is used to specify which ingress controller should handle this ingress. ingressClassName: "nginx" # -- Additional annotations for the ingress resource. annotations: {} # -- List of hosts and their paths for the ingress resource. hosts: - host: everest.example.com paths: - path: / pathType: ImplementationSpecific # -- TLS configuration for the ingress resource. # -- Each entry in the list specifies a TLS certificate and the hosts to which it applies. tls: [] # - secretName: everest-tls # hosts: # - everest.example.comInstall OpenEverest using this file:
everestctl install --helm.values everest-values.yaml -
Once the installation is complete, retrieve the
adminpassword.everestctl accounts initial-admin-password-
The default username for logging into the OpenEverest UI is
admin. You can set a different default admin password by using theserver.initialAdminPasswordparameter during installation. -
The default
adminpassword is stored in plain text.Important
It is highly recommended that the password be updated using
everestctlto ensure that the passwords are hashed. Instructions for installingeverestctlcan be found at everestctl installation guide.To access detailed information on user management, see the manage users in OpenEverest section.
-
-
To access the OpenEverest UI/API, open your browser and go to
https://everest.example.com.Note
Replace
everest.example.comwith your own domain. -
If you skip adding the namespaces while installing OpenEverest, you can add them later using the following command.
everestctl namespaces add <NAMESPACE>