From 27a124581690d1adc6080faa2b080bb1f360ac27 Mon Sep 17 00:00:00 2001 From: Itzhak Kave Date: Thu, 8 Feb 2024 14:45:27 +0200 Subject: [PATCH] Ignore 'check if MCG root secret is public' if we use MS (#9288) Signed-off-by: Itzhak Kave Co-authored-by: Itzhak Kave --- ocs_ci/ocs/resources/storage_cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocs_ci/ocs/resources/storage_cluster.py b/ocs_ci/ocs/resources/storage_cluster.py index 1affd74bb4e..d9c76978346 100644 --- a/ocs_ci/ocs/resources/storage_cluster.py +++ b/ocs_ci/ocs/resources/storage_cluster.py @@ -765,7 +765,7 @@ def ocs_install_verification( validate_serviceexport() # check that noobaa root secrets are not public - if not client_cluster: + if not (client_cluster or managed_service): assert ( check_if_mcg_root_secret_public() is False ), "Seems like MCG root secrets are public, please check"