From 11679fa4fdfa5c17fa616871e1c435e6b549531f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 10 Aug 2023 03:05:19 +0900 Subject: [PATCH] Heat: Reduce worker of heat-engine We don't run heavy stack operations in our CI job so we can reduce number of workers to 2 (currently we have 4 workers launched in CI VMs). Change-Id: Iba1381a90705feb06cfd034d54f84155b9741e74 --- manifests/heat.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/heat.pp b/manifests/heat.pp index e47767a0f..1f392c487 100644 --- a/manifests/heat.pp +++ b/manifests/heat.pp @@ -120,6 +120,7 @@ class openstack_integration::heat ( workers => 2, } class { 'heat::engine': + num_engine_workers => 2, auth_encryption_key => '1234567890AZERTYUIOPMLKJHGFDSQ12', heat_metadata_server_url => "${::openstack_integration::config::base_url}:8000", heat_waitcondition_server_url => "${::openstack_integration::config::base_url}:8000/v1/waitcondition",