You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
New to KubeDB? Please start here.
Before You Begin
- You should be familiar with the following
KubeDB
concepts:
What is Schema Manager
Schema Manager
is a Kubernetes operator developed by AppsCode that implements multi-tenancy inside KubeDB provisioned database servers like MySQL, MariaDB, PosgreSQL and MongoDB etc. With Schema Manager
one can create database into specific database server. An user will also be created with KubeVault and assigned to that database. Using the newly created user credential one can access the database and run operations into it. One may pass the database server reference, configuration, user access policy through a single yaml and Schema Manager
will do all the task above mentioned. Schema Manager
also allows initializing the database and restore snapshot while bootstrap.
How MongoDB Schema Manager Process Works
The following diagram shows how MongoDB Schema Manager process worked. Open the image in a new tab to see the enlarged version.
The process consists of the following steps:
At first the user will deploy a
MongoDBDatabase
object.Once a
MongoDBDatabase
object is deployed to the cluster, theSchema Manager
operator first verifies if it has the required permission to be able to interact with the referred database-server by checkingDouble-OptIn
. After theDouble-OptIn
verificationSchema Manager
operator checks in theMongoDB
server if the target database is already present or not. If the database already present there, then theMongoDBDatabase
object will be immediately denied.Once everything is ok in the
MongoDB
server side, then the target database will be created and an entry for that will be entered in thekubedb_system
database.Then
Schema Manager
operator creates aMongoDB Role
.Vault
operator always watches for a DatabaseRole
.Once
Vault
operator finds a DatabaseRole
, it creates aSecret
for thatRole
.After this process, the
Vault
operator creates aUser
in theMongoDB
server. The user gets all the privileges on our target database and its credentials are served with theSecret
. The user credentials secret reference is patched with theMongoDBDatabase
object yaml in the.status.authSecret.name
field.If there is any
init script
associated with theMongoDBDatabase
object, it will be executed in this step with theSchema Manager
operator.The user can also provide a
snapshot
reference for initialization. In that caseSchema Manager
operator fetches necessaryappbinding
,secrets
,repository
.Stash
operator watches for aRestoresession
.Once
Stash
operator finds aRestoresession
, it Restores the targeted database with theSnapshot
.
In the next doc, we are going to show a step by step guide of using MongoDB Schema Manager with KubeDB.