1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Change default storage engine to rocksdb

This commit is contained in:
Ewout Prangsma 2018-03-01 10:44:35 +01:00
parent 2a2881da1b
commit cbb710ae3a
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -82,7 +82,7 @@ func (s *DeploymentSpec) SetDefaults(deploymentName string) {
s.Environment = EnvironmentDevelopment
}
if s.StorageEngine == "" {
s.StorageEngine = StorageEngineMMFiles
s.StorageEngine = StorageEngineRocksDB
}
if s.Image == "" && s.IsDevelopment() {
s.Image = defaultImage