From 12ac99c83a8a01fdbb324b5ce461de24873be79d Mon Sep 17 00:00:00 2001 From: Diego Riosalido Date: Mon, 15 Sep 2025 09:20:41 +0200 Subject: [PATCH 1/2] fix: Support Kubernetes versions with vendor suffixes in Helm chart Fixes #931 by changing kubeVersion constraint from '>=1.21.0' to '>=1.21.0-0'. This allows Helm to properly handle vendor-specific version suffixes like '1.31.10-eks-931bdca' from AWS EKS and other Kubernetes distributions. The '-0' suffix tells Helm's semantic versioning parser to accept any version >= 1.21.0 including those with pre-release/build metadata suffixes. Signed-off-by: Diego Riosalido --- charts/mcp-stack/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/mcp-stack/Chart.yaml b/charts/mcp-stack/Chart.yaml index 065b408d6..cdb63ba79 100644 --- a/charts/mcp-stack/Chart.yaml +++ b/charts/mcp-stack/Chart.yaml @@ -22,7 +22,7 @@ type: application # * appVersion - upstream application version; shown in UIs but not # used for upgrade logic. # -------------------------------------------------------------------- -version: 0.6.1 +version: 0.6.2 appVersion: "0.7.0" # Icon shown by registries / dashboards (must be an http(s) URL). @@ -46,4 +46,4 @@ maintainers: url: https://github.com/IBM # Require Kubernetes ≥1.21 for networking v1 and recent securityContext fields -kubeVersion: ">=1.21.0" +kubeVersion: ">=1.21.0-0" From f156f9f3a1488f71087a50d6ed2518a134ac322c Mon Sep 17 00:00:00 2001 From: Mihai Criveti Date: Mon, 15 Sep 2025 09:30:19 +0100 Subject: [PATCH 2/2] chore: Bump chart version to 0.7.0 --- charts/mcp-stack/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/mcp-stack/Chart.yaml b/charts/mcp-stack/Chart.yaml index cdb63ba79..e668b8926 100644 --- a/charts/mcp-stack/Chart.yaml +++ b/charts/mcp-stack/Chart.yaml @@ -22,7 +22,7 @@ type: application # * appVersion - upstream application version; shown in UIs but not # used for upgrade logic. # -------------------------------------------------------------------- -version: 0.6.2 +version: 0.7.0 appVersion: "0.7.0" # Icon shown by registries / dashboards (must be an http(s) URL).