From a8bcebadf2a7b36e09158c7c0a7772baa1be9d17 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 8 Dec 2022 20:18:52 +0900 Subject: [PATCH] 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 --- manifests/swift.pp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manifests/swift.pp b/manifests/swift.pp index 98ad73505..0b180195a 100644 --- a/manifests/swift.pp +++ b/manifests/swift.pp @@ -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 : }