diff --git a/ocs_ci/deployment/acm.py b/ocs_ci/deployment/acm.py index 96aa8d491cb..bdde2ba7de1 100644 --- a/ocs_ci/deployment/acm.py +++ b/ocs_ci/deployment/acm.py @@ -86,8 +86,11 @@ def __init__(self): self.dr_only_list = [] def deploy(self): - # Download subctl binary in any case. - self.download_binary() + # Download subctl binary in any case except downstream unreleased. + if not ( + self.source == "downstream" and self.submariner_release_type == "unreleased" + ): + self.download_binary() if self.source == "upstream": self.deploy_upstream() elif self.source == "downstream": @@ -173,7 +176,7 @@ def get_submariner_csv_version(self): """ csv_version_cmd = ( "oc get submariners.submariner.io -n submariner-operator " - "submariner -o jsonpath='{{.status.gateways[0].version}}'" + "submariner -o jsonpath='{.status.gateways[0].version}'" ) return run_cmd(csv_version_cmd) diff --git a/ocs_ci/ocs/constants.py b/ocs_ci/ocs/constants.py index 92ef9f9ef93..cfe6ac6917b 100644 --- a/ocs_ci/ocs/constants.py +++ b/ocs_ci/ocs/constants.py @@ -2703,7 +2703,7 @@ SUBMARINER_DOWNSTREAM_UNRELEASED_BUILD_URL = ( "https://datagrepper.engineering.redhat.com/raw?topic=/topic/" "VirtualTopic.eng.ci.redhat-container-image.pipeline.complete" - "&rows_per_page=25&delta=1296000&contains=submariner-operator-bundle-container-v" + "&rows_per_page=25&delta=12960000&contains=submariner-operator-bundle-container-v" ) SUBMARINER_BREW = "brew.registry.redhat.io/rh-osbs" SUBMARINER_BREW_REPO = "/".join([SUBMARINER_BREW, "iib"])