Skip to content

Commit

Permalink
Fix the use of hardcoded namespace to use of custom namespace (#9871)
Browse files Browse the repository at this point in the history
Remove the Hardcoading of cluster namespace "openshift-storage"
to use custom storage namespace depend og platform Fix#9870
Signed-off-by: suchita-g <sgatfane@redhat.com>
  • Loading branch information
suchita-g authored May 30, 2024
1 parent 22ffc07 commit 9ee402f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocs_ci/ocs/ui/validation_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,8 +558,8 @@ def validate_storage_cluster_ui(self):
"""
if self.ocp_version_semantic >= version.VERSION_4_9:
self.navigate_installed_operators_page()
logger.info("Search and select openshift-storage namespace")
self.select_namespace(project_name="openshift-storage")
logger.info("Search and select storage cluster namespace")
self.select_namespace(project_name=config.ENV_DATA["cluster_namespace"])
logger.info(
"Click on Storage System under Provided APIs on Installed Operators Page"
)
Expand Down

0 comments on commit 9ee402f

Please sign in to comment.