Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tune failures tier1 #10544

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3283,7 +3283,12 @@ def finalizer():
logging_channel = "stable" if ocp_version >= version.VERSION_4_7 else ocp_version

# Creates namespace openshift-operators-redhat
ocp_logging_obj.create_namespace(yaml_file=constants.EO_NAMESPACE_YAML)
try:
ocp_logging_obj.create_namespace(yaml_file=constants.EO_NAMESPACE_YAML)
except CommandFailed as e:
if "AlreadyExists" in str(e):
# on Rosa HCP the ns created from the deployment
log.info("Namespace openshift-operators-redhat already exists")

# Creates an operator-group for elasticsearch
assert ocp_logging_obj.create_elasticsearch_operator_group(
Expand Down
Loading