From 782a74c862ba0838632903a7e678c2736e1f19aa Mon Sep 17 00:00:00 2001 From: kqmaverick <121722567+kqmaverick@users.noreply.github.com> Date: Fri, 16 May 2025 18:18:53 -0500 Subject: [PATCH] docs(support-policy): add supported kubernetes versions (#35396) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Update supported kubernetes and helm versions. ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [X] 📜 Documentation Changes **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [X] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Signed-off-by: Kjeld Schouten Co-authored-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Kjeld Schouten --- clustertool/pkg/charts/chartFile/chart_file.go | 6 +++++- website/src/content/docs/general/support-policy.md | 14 ++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/clustertool/pkg/charts/chartFile/chart_file.go b/clustertool/pkg/charts/chartFile/chart_file.go index 65f363f6072..ed1e69db809 100644 --- a/clustertool/pkg/charts/chartFile/chart_file.go +++ b/clustertool/pkg/charts/chartFile/chart_file.go @@ -16,7 +16,9 @@ import ( const ( minHelmVersion = "3.14" maxHelmVersion = "3.17" - kubeVersion = ">=1.24.0-0 <1.33.0-0" + minKubeVersion = "1.24.0" + maxKubeVersion = "1.32.0" + kubeVersion = ">=1.24.0-0" apiVersion = "v2" chartType = "application" maintainerName = "TrueCharts" @@ -134,6 +136,8 @@ func (h *HelmChart) setDefaultValues() { h.setAnnotation("truecharts.org/category", defaultCategory, false) h.setAnnotation("truecharts.org/min_helm_version", minHelmVersion, true) h.setAnnotation("truecharts.org/max_helm_version", maxHelmVersion, true) + h.setAnnotation("truecharts.org/min_kubernetes_version", minKubeVersion, true) + h.setAnnotation("truecharts.org/max_kubernetes_version", maxKubeVersion, true) h.setAnnotation("artifacthub.io/links", supportUrl, true) // Set default values for other fields as needed diff --git a/website/src/content/docs/general/support-policy.md b/website/src/content/docs/general/support-policy.md index ac6e7bb0d52..4dfcd29326c 100644 --- a/website/src/content/docs/general/support-policy.md +++ b/website/src/content/docs/general/support-policy.md @@ -43,6 +43,7 @@ We also offer free support via a support-ticketing system on Discord, according - We do not offer support for any component of kubernets that is not made by TrueCharts. - This includes charts by other parties or manually created kubernetes manifests and deployments. +- We do not offer support for any version of kubernetes not listed below. ## Helm Chart Support Policy @@ -51,6 +52,7 @@ We also offer free support via a support-ticketing system on Discord, according - We do not support external secret management outside of values.yaml - We offer support for all our charts trains, except `incubator`, `dev`, and `test`. - We cannot guarantee special characters will work flawlessly in any field. +- We do not offer support for any version of helm not listed below. :::note @@ -85,8 +87,16 @@ For all issues not covered by support you can make a thread in an appropriate [D | Helm version | Branch | Supported with updates | Accepting Support tickets | Accepting Bug Reports | Notes | | --------------- | -------- | ---------------------- | ------------------------- | --------------------- | ----- | -| 3.11 and prior | `master` | ✅ | ❌ | ❌ | | -| 3.12 - 3.14 | `master` | ✅ | ✅ | ✅ | | +| 3.13 and prior | `master` | ❌ | ❌ | ❌ | | +| 3.14 - 3.17 | `master` | ✅ | ✅ | ✅ | | + +## Supported Kubernetes Versions + +| Kube version | Branch | Supported with updates | Accepting Support tickets | Accepting Bug Reports | Notes | +| --------------- | -------- | ---------------------- | ------------------------- | --------------------- | ----- | +| 1.23 and prior | `master` | ❌ | ❌ | ❌ | | +| 1.24 - 1.32 | `master` | ✅ | ✅ | ✅ | | +| 1.33.0 | `master` | ✅ | ❌ | ✅ | | :::caution[China]