From d11023856cede540711c9fbf813eaabdc04f4ef5 Mon Sep 17 00:00:00 2001 From: Petr Balogh Date: Thu, 10 Oct 2024 12:18:20 +0200 Subject: [PATCH] Remove W/A for wait_timeout_for_healthy_osd_in_minutes Signed-off-by: Petr Balogh --- ocs_ci/deployment/deployment.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ocs_ci/deployment/deployment.py b/ocs_ci/deployment/deployment.py index 0253b0d65f1..2463fc7fec8 100644 --- a/ocs_ci/deployment/deployment.py +++ b/ocs_ci/deployment/deployment.py @@ -2012,19 +2012,6 @@ def deploy_ocs(self): ) self.odf_deployments_check() - wait_timeout_for_healthy_osd_in_minutes = config.ENV_DATA.get( - "wait_timeout_for_healthy_osd_in_minutes" - ) - # This is a W/A because of the issue mentioned in - # https://github.com/red-hat-storage/ocs-ci/issues/9901 - if wait_timeout_for_healthy_osd_in_minutes: - run_cmd( - f"oc patch storagecluster ocs-storagecluster -n {self.namespace} --type merge -p '" - '{"spec": {"managedResources": {"cephCluster": ' - f'{{"waitTimeoutForHealthyOSDInMinutes": {wait_timeout_for_healthy_osd_in_minutes}' - "}}}}'" - ) - # Change monitoring backend to OCS if config.ENV_DATA.get("monitoring_enabled") and config.ENV_DATA.get( "persistent-monitoring"