From 9bbe19d4a3b6803ef995bfa15396853b453fd859 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 30 Aug 2023 20:54:51 +0000 Subject: [PATCH] Temporarily limit node image upload concurrency One of our providers is struggling with Glance backend tasks after upload, which causes increasingly lengthy delays for image readiness the more images we're uploading. Globally reduce our upload concurrency to the minimum possible of one per builder, for now, in order to alleviate the delays and increase the chances images will come ready in that provider. This can be reverted once the situation has been resolved. Change-Id: I29daa8f6d2d13055baf74215184ce0987fc20be0 --- playbooks/roles/nodepool-builder/defaults/main.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/roles/nodepool-builder/defaults/main.yaml b/playbooks/roles/nodepool-builder/defaults/main.yaml index 9c014a6a3f..0eb74f4cca 100644 --- a/playbooks/roles/nodepool-builder/defaults/main.yaml +++ b/playbooks/roles/nodepool-builder/defaults/main.yaml @@ -1 +1,2 @@ -nodepool_builder_upload_workers: 8 +# TODO: revert to "8" once provider ticket #230830-ord-0001227 is addressed +nodepool_builder_upload_workers: 1