Skip to content
Merged
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
2 changes: 1 addition & 1 deletion utilities/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def get_hyperconverged_resource(client, hco_ns_name):
namespace=hco_ns_name,
name=hco_name,
)
hco.api_version = hco.ApiVersion.V1BETA1
hco.api_version = f"{hco.ApiGroup.HCO_KUBEVIRT_IO}/{hco.ApiVersion.V1BETA1}"
Comment thread
hmeir marked this conversation as resolved.
Comment thread
hmeir marked this conversation as resolved.
if hco.exists:
return hco
raise ResourceNotFoundError(f"Hyperconverged: {hco_name} not found in {hco_ns_name}")
Expand Down
Loading