OpenEverest installation and workflow¶
This page provides an overview of how OpenEverest is installed, the components involved, and the workflow, from provider installation to database provisioning, backups, and restores.
Developer Preview
This is a developer preview release. Features are incomplete and subject to change. OpenEverest is installed with Helm; the everestctl installation method is not available for this release.
Installation workflow¶
OpenEverest is installed in two stages: the core platform, followed by one or more providers.
-
The
openeverest(core) chart is installed in theeverest-systemnamespace as theeverest-corerelease. This deploys all the core components required for OpenEverest to function.Component category Namespace Components Everest components everest-systemeverest-server,everest-controllerMonitoring stack everest-monitoringvm-operator,kube-state-metricseverest-serverserves the OpenEverest UI and API.everest-controlleris the OpenEverest operator that reconciles OpenEverest custom resources.
-
One or more provider charts are installed into
everest-system. Each provider is a self-contained Helm release that bundles a database operator and registers aProviderresource describing the database engines and versions it supports.helm install provider-percona-server-mongodb \ oci://ghcr.io/openeverest/charts/provider-percona-server-mongodb \ --namespace everest-systemDiscover additional providers and plugins in the in-product Plugin Hub or in the Extension Hub docs.
Note
OpenEverest no longer uses the Operator Lifecycle Manager (OLM). Providers are installed and upgraded directly through Helm, so helm install / helm upgrade is the apply step — there is no install-plan approval job.
Server and controller workflow¶
Database creation workflow¶
Here is the database creation workflow in OpenEverest:
- The OpenEverest user is authenticated and logged in, and a
JWT Tokenis provided. - The user creates a database via the OpenEverest UI or API.
- The OpenEverest API is invoked to create a new database. The OpenEverest server then creates an
Instancecustom resource on the Kubernetes cluster. - In the
everest-controllerreconciliation loop, once theInstanceobject is recognized, the responsible provider creates the database operator’s own custom resource (for example,PerconaServerMongoDBfor MongoDB). -
The database operator takes over the task of creating the database and the necessary objects to manage it.
Note
Similar workflows apply to backups, restores, monitoring, and deletions, although the object types may vary.
Provider workflow¶
Here is how a provider surfaces its supported database engines:
- You install a provider chart, either alongside the core chart or as a separate step.
- The provider deploys its database operator into
everest-systemand registers aProviderresource. -
The
everest-controllerreconciles theProviderresource and reads the engine versions the provider declares as supported.Note
Supported engine versions are bundled with the provider release itself — OpenEverest does not query an external version service. Upgrading the provider is how you change the set of available engine versions.
-
The resolved engine versions become available to users when they create or edit an
Instance.