From 2ae31abf828bca570a34af1d9ff636674b235e14 Mon Sep 17 00:00:00 2001 From: fbalak Date: Thu, 13 Jun 2024 12:05:05 +0200 Subject: [PATCH] fix for hypershift deployment Signed-off-by: fbalak --- ocs_ci/deployment/hosted_cluster.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ocs_ci/deployment/hosted_cluster.py b/ocs_ci/deployment/hosted_cluster.py index 9fcae0958160..5fa3a76de9ac 100644 --- a/ocs_ci/deployment/hosted_cluster.py +++ b/ocs_ci/deployment/hosted_cluster.py @@ -311,6 +311,7 @@ def deploy_multiple_odf_clients(self): class HypershiftHostedOCP(HyperShiftBase, MetalLBInstaller, CNVInstaller, Deployment): def __init__(self, name): + Deployment.__init__(self) HyperShiftBase.__init__(self) MetalLBInstaller.__init__(self) CNVInstaller.__init__(self)