docs(support-policy): add supported kubernetes versions (#35396)

**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 <info@kjeldschouten.nl>
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 <info@kjeldschouten.nl>
This commit is contained in:
kqmaverick
2025-05-16 18:18:53 -05:00
committed by GitHub
parent 41925e82fb
commit 782a74c862
2 changed files with 17 additions and 3 deletions
@@ -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
@@ -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]