Enable basic middlewares in storage server pipeline

This ensures a few basic middlewares such as the healthckech middleware
are enabled in (account|container|object)-server pipeline, to test
the functionality to enable these middlewares.

Change-Id: I3561737c3601ede64a40c2040a630ba577fa5f46
This commit is contained in:
Takashi Kajinami 2022-12-08 20:18:52 +09:00
parent 5a8520a28f
commit a8bcebadf2

View File

@ -133,6 +133,9 @@ class openstack_integration::swift {
class { 'swift::storage::all':
storage_local_net_ip => $::openstack_integration::config::host,
mount_check => false,
account_pipeline => ['healthcheck', 'recon', 'account-server'],
container_pipeline => ['healthcheck', 'recon', 'container-server'],
object_pipeline => ['healthcheck', 'recon', 'object-server'],
}
$swift_components = ['account', 'container', 'object']
swift::storage::filter::recon { $swift_components : }