Embedded SQLite
By default, vCluster uses embedded SQLite with a PersistentVolume resource to store data.
You can turn off PersistentVolume sync for testing, where losing data on restarts is acceptable.
Disable SQLite
controlPlane:
backingStore:
database:
embedded:
enabled: false
Disable SQLite if you want to use a different database. See External database for configuration details.
Config reference
embedded object
Embedded defines that an embedded database (sqlite) should be used as the backend for the virtual cluster
embedded object enabled boolean false
Enabled defines if the database should be used.
enabled boolean false dataSource string
DataSource is the kine dataSource to use for the database. This depends on the database format.
This is optional for the external database. Examples:
- mysql: mysql://username:password@tcp(hostname:3306)/vcluster
- postgres: postgres://username:password@hostname:5432/vcluster
dataSource string identityProvider string
IdentityProvider is the kine identity provider to use when generating temporary authentication tokens for enhanced security.
This is optional for the external database. Examples:
- aws: RDS IAM Authentication
identityProvider string keyFile string
KeyFile is the key file to use for the database. This is optional.
keyFile string certFile string
CertFile is the cert file to use for the database. This is optional.
certFile string caFile string
CaFile is the ca file to use for the database. This is optional.
caFile string extraArgs string[] []
ExtraArgs are additional arguments to pass to Kine.
extraArgs string[] []