Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RedHatQE/openshift-cluster-management-python-wrapper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 64ff682153ba08495272505814892bf80a2a1091
Choose a base ref
..
head repository: RedHatQE/openshift-cluster-management-python-wrapper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 058219182b2fd82b15c112252e28b71a8b49ff16
Choose a head ref
Showing with 1 addition and 13 deletions.
  1. +1 −13 ocm_python_wrapper/cluster.py
14 changes: 1 addition & 13 deletions ocm_python_wrapper/cluster.py
Original file line number Diff line number Diff line change
@@ -402,7 +402,7 @@ def install_addon(
ipdb.set_trace()
res = wait_for_rosa_installation(
command=f"install addon {self.addon_name} --cluster {self.name} {params_command}"
f" --billing-model standard"
# f" --billing-model standard"
)
else:
if parameters:
@@ -590,18 +590,6 @@ def wait_for_rosa_installation(command, wait_timeout=TIMEOUT_30MIN):
if rosa_sampler:
return True
ipdb.set_trace()
# try:
# for (
# _addon_installation_instance
# ) in self.addon_installation_instance_sampler(
# func=rosa_cli.execute(
# command=command
# ), wait_timeout=wait_timeout
# ):
# print(_addon_installation_instance)
# ipdb.set_trace()
# if _addon_installation_instance:
# return True
# except TimeoutExpiredError:
# LOGGER.error(
# f"Timeout waiting for {self.addon_name} state to execute {command}"