From b6965de9ed270b3e6776ecf06ff0ba0cf757cde3 Mon Sep 17 00:00:00 2001 From: Teoman ONAY Date: Wed, 15 May 2024 16:04:04 +0200 Subject: [PATCH] Fix cephadm-adopt test scenario Fixes cephadm-adopt test scenario by configuring rbd application on test and test2 pools. Otherwise cephadm-adopt failed at task "Check pools have an application enabled" Signed-off-by: Teoman ONAY --- tests/functional/all_daemons/container/group_vars/clients | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/functional/all_daemons/container/group_vars/clients b/tests/functional/all_daemons/container/group_vars/clients index ec0bb3e099..33add855f4 100644 --- a/tests/functional/all_daemons/container/group_vars/clients +++ b/tests/functional/all_daemons/container/group_vars/clients @@ -5,9 +5,11 @@ test: name: "test" rule_name: "HDD" size: 1 + application: "rbd" test2: name: "test2" size: 1 + application: "rbd" pools: - "{{ test }}" - "{{ test2 }}"