Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Pawłowski <[email protected]>
  • Loading branch information
pawloch00 committed Jan 14, 2025
1 parent 4c861a3 commit ad39218
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/xpk/core/kueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@ def install_kueue_on_cluster(args) -> int:

err_code, kueue_version_installed = get_kueue_version(args)
if err_code == 0:
if Version(kueue_version_installed) <= Version('v0.8.1') and Version(
if Version(kueue_version_installed) < Version('v0.9.0') and Version(
KUEUE_VERSION
) >= Version('v0.9.1'):
xpk_print('Upgrading kueue on cluster from version < 0.9.1.')
) >= Version('v0.9.0'):
xpk_print('Upgrading kueue on cluster from version < 0.9.0.')
upgrade_code = delete_multikueueclusters_definitions(args)
if upgrade_code != 0:
return upgrade_code
Expand Down

0 comments on commit ad39218

Please sign in to comment.