diff --git a/sdcm/cluster_k8s/__init__.py b/sdcm/cluster_k8s/__init__.py index f86fe25ca3..d32b165a0f 100644 --- a/sdcm/cluster_k8s/__init__.py +++ b/sdcm/cluster_k8s/__init__.py @@ -552,7 +552,7 @@ def get_latest_chart_version(self, local_chart_path: str) -> str: # in each 'minor' family. current_newest_version, current_newest_version_str = None, '' for version_object in all_versions: - if version_object["version"].count('-') not in (0, 3): + if version_object["version"].count('-') == 1: continue if ComparableScyllaOperatorVersion(version_object["version"]) > ( current_newest_version or '0.0.0'):