Skip to content

Commit

Permalink
helm: Accept rc versions for compatibility checks
Browse files Browse the repository at this point in the history
  • Loading branch information
gileri committed Jun 10, 2024
1 parent fb80d97 commit 2896054
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/module_utils/helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ def get_helm_binary(self):
def get_helm_version(self):
command = self.get_helm_binary() + " version"
rc, out, err = self.run_command(command)
m = re.match(r'version.BuildInfo{Version:"v([0-9\.]*)",', out)
m = re.match(r'version.BuildInfo{Version:"v([^"]*)",', out)
if m:
return m.group(1)
m = re.match(r'Client: &version.Version{SemVer:"v([0-9\.]*)", ', out)
m = re.match(r'Client: &version.Version{SemVer:"v([^"]*)", ', out)
if m:
return m.group(1)
return None
Expand Down
4 changes: 4 additions & 0 deletions tests/unit/module_utils/test_helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,10 @@ def test_module_get_values(_ansible_helm_module, no_values, get_all):
'version.BuildInfo{Version:"v3.10.3", GitCommit:7870ab3ed4135f136eec, GoVersion:"go1.18.9"}',
"3.10.3",
),
(
'version.BuildInfo{Version:"v3.15.0-rc.1", GitCommit:"d7afa3b6b432c09a02cd07342e908ba5bed34940", GitTreeState:"clean", GoVersion:"go1.22.4"}',
"3.15.0-rc.1",
),
('Client: &version.Version{SemVer:"v3.12.3", ', "3.12.3"),
('Client: &version.Version{SemVer:"v3.12.3"', None),
],
Expand Down

0 comments on commit 2896054

Please sign in to comment.