From f89b7f79ce6cbbbb9ddb54438908e5115d8dca68 Mon Sep 17 00:00:00 2001 From: Daniel Horak Date: Tue, 4 Jun 2024 14:44:45 +0200 Subject: [PATCH] move the configuration to deploy_ocs - in the new place, it will cover both UI and CLI deployments Signed-off-by: Daniel Horak --- ocs_ci/deployment/deployment.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ocs_ci/deployment/deployment.py b/ocs_ci/deployment/deployment.py index fc792f6cb73b..29825cc7ffe1 100644 --- a/ocs_ci/deployment/deployment.py +++ b/ocs_ci/deployment/deployment.py @@ -1617,9 +1617,6 @@ def deploy_ocs_via_operator(self, image=None): f"{constants.NODE_SELECTOR_ANNOTATION}" ) - # Access buckets with DNS subdomain style (Virtual host style) for RGW - self.configure_virtual_host_style_acess_for_rgw() - def configure_virtual_host_style_acess_for_rgw(self): """ Enable access buckets with DNS subdomain style (Virtual host style) for RGW @@ -2022,6 +2019,9 @@ def deploy_ocs(self): ) ) + # Access buckets with DNS subdomain style (Virtual host style) for RGW + self.configure_virtual_host_style_acess_for_rgw() + # Change monitoring backend to OCS if config.ENV_DATA.get("monitoring_enabled") and config.ENV_DATA.get( "persistent-monitoring"