fix(clustertool): ensure kubeVersion does not include non-tested future versions

This commit is contained in:
Kjeld Schouten
2025-05-15 17:22:41 +02:00
parent b32bcdc7c9
commit 2b9d013e33
@@ -16,7 +16,7 @@ import (
const (
minHelmVersion = "3.14"
maxHelmVersion = "3.17"
kubeVersion = ">=1.24.0-0"
kubeVersion = ">=1.24.0-0 <1.33.0-0"
apiVersion = "v2"
chartType = "application"
maintainerName = "TrueCharts"