diff --git a/charts/library/common/Chart.yaml b/charts/library/common/Chart.yaml index 149f1b38308..68b10f9564c 100644 --- a/charts/library/common/Chart.yaml +++ b/charts/library/common/Chart.yaml @@ -5,8 +5,8 @@ annotations: - name: support url: https://discord.com/invite/tVsPTHWTtr truecharts.org/category: unsorted - truecharts.org/max_helm_version: "3.15" - truecharts.org/min_helm_version: "3.11" + truecharts.org/max_helm_version: "3.16" + truecharts.org/min_helm_version: "3.14" truecharts.org/train: library apiVersion: v2 appVersion: 1.10.3 @@ -19,7 +19,7 @@ keywords: - truecharts - library-chart - common -kubeVersion: '>=1.24.0-0' +kubeVersion: ">=1.24.0-0" maintainers: - name: TrueCharts email: info@truecharts.org diff --git a/charts/library/common/templates/lib/chart/_check_capabitilies.tpl b/charts/library/common/templates/lib/chart/_check_capabitilies.tpl index fb395b07845..679f1b887d4 100644 --- a/charts/library/common/templates/lib/chart/_check_capabitilies.tpl +++ b/charts/library/common/templates/lib/chart/_check_capabitilies.tpl @@ -1,6 +1,6 @@ {{- define "tc.v1.common.check.capabilities" -}} {{- $helmVersion := semver .Capabilities.HelmVersion.Version -}} - {{- $helmMinVer := semver "3.9.4" -}} + {{- $helmMinVer := semver "3.14.0" -}} {{- if .Chart.Annotations -}} {{- $min := index .Chart.Annotations "truecharts.org/min_helm_version" -}} diff --git a/clustertool/pkg/charts/chartFile/chart_file.go b/clustertool/pkg/charts/chartFile/chart_file.go index c0642a5da4e..7999f1e3ec6 100644 --- a/clustertool/pkg/charts/chartFile/chart_file.go +++ b/clustertool/pkg/charts/chartFile/chart_file.go @@ -14,8 +14,8 @@ import ( ) const ( - minHelmVersion = "3.11" - maxHelmVersion = "3.15" + minHelmVersion = "3.14" + maxHelmVersion = "3.16" kubeVersion = ">=1.24.0-0" apiVersion = "v2" chartType = "application"