From 3c76cc3c5172591cdfd88b3d0f29298aba6fde9c Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Tue, 21 Mar 2023 16:41:17 -0400 Subject: [PATCH] qa/tasks: use medium compression To speed up compression. Signed-off-by: Patrick Donnelly --- qa/tasks/ceph.py | 1 + qa/tasks/ceph_deploy.py | 1 + qa/tasks/cephadm.py | 1 + qa/tasks/rook.py | 1 + 4 files changed, 4 insertions(+) diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py index 10dcc2aee04e5..eafc8dc529679 100644 --- a/qa/tasks/ceph.py +++ b/qa/tasks/ceph.py @@ -278,6 +278,7 @@ def ceph_log(ctx, config): '--no-run-if-empty', '--', 'gzip', + '-5', '--', ], wait=False, diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 83918a03f5fb5..1a6ea806c5b2d 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -540,6 +540,7 @@ def build_ceph_cluster(ctx, config): '--no-run-if-empty', '--', 'gzip', + '-5', '--', ], wait=False, diff --git a/qa/tasks/cephadm.py b/qa/tasks/cephadm.py index 0e91226017047..5b83a6ded1930 100644 --- a/qa/tasks/cephadm.py +++ b/qa/tasks/cephadm.py @@ -363,6 +363,7 @@ def ceph_log(ctx, config): '--no-run-if-empty', '--', 'gzip', + '-5', '--', ], wait=False, diff --git a/qa/tasks/rook.py b/qa/tasks/rook.py index 12d01ce8930af..7db0cb5e6022e 100644 --- a/qa/tasks/rook.py +++ b/qa/tasks/rook.py @@ -279,6 +279,7 @@ def ceph_log(ctx, config): '--no-run-if-empty', '--', 'gzip', + '-5', '--', ], wait=False, -- 2.39.5