Trove: Enable caching

Trove supports caching using oslo.cache. This enables this feature to
test the related deployment logic.

Depends-on: https://review.opendev.org/907645
Change-Id: I36fa179f19cb9e97fa597045986bcb52d74125b7
This commit is contained in:
Takashi Kajinami 2024-02-04 15:42:31 +09:00
parent fc190c54d7
commit bcd8cc0637
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@ class openstack_integration::trove {
class { 'trove::logging':
debug => true,
}
class { 'trove::cache':
backend => 'dogpile.cache.pymemcache',
enabled => true,
memcache_servers => $::openstack_integration::config::memcache_servers,
}
class { 'trove::db':
database_connection => os_database_connection({
'dialect' => 'mysql+pymysql',