helm / community

Helm community content
https://helm.sh
417 stars 175 forks source link

Helm chart version check is not working as expected #361

Open AreebSarvat opened 4 days ago

AreebSarvat commented 4 days ago

In my helm chart I have following K8s version check - kubeVersion: '>=1.24.0 <1.31.0'

I deploying on EKS and getting below error - Error: INSTALLATION FAILED: chart requires kubeVersion: >=1.24.0 <1.31.0 which is incompatible with Kubernetes v1.30.3-eks-a18cd3a

My EKS version - Client Version: v1.29.2 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.30.3-eks-a18cd3a

Helm version - version.BuildInfo{Version:"v3.15.2", GitCommit:"1a500d5625419a524fdae4b33de351cc4f58ec35", GitTreeState:"clean", GoVersion:"go1.22.4"}

Please suggest, what is missing here?