Commit Graph

2605 Commits

Author SHA1 Message Date
Kjeld Schouten db6e5cee98 Update main.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-27 15:46:26 +01:00
Kjeld Schouten 3e77f20bbe Update and rename astro.json5 to npm.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-27 12:05:28 +01:00
Kjeld Schouten 89b42e4899 Update helm-values.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-27 12:02:57 +01:00
Kjeld Schouten f8d9a0a026 Update helm-values.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-27 12:02:17 +01:00
Kjeld Schouten 9102806bad Update helm-values.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-27 12:00:50 +01:00
Kjeld Schouten 81c60b4725 Update flux.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-27 12:00:31 +01:00
Kjeld Schouten 46f8acfefc Update main.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-26 19:21:41 +01:00
Kjeld Schouten dd3b37d73f Update helm.json5
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-26 19:20:31 +01:00
Alfred Göppel 96f8e12e01 Update helm.json5
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-11-26 19:08:39 +01:00
Alfred Göppel 90ade1301b Update flux.json5
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-11-26 19:08:26 +01:00
Kjeld Schouten 532da4ddd5 fix(ci): do pin digests on helm stuff 2025-11-26 10:41:03 +01:00
Kjeld Schouten cdf235826f Update lint-conf.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-25 16:22:47 +01:00
TrueCharts Bot a8c4be57fb chore(github-action): update actions/setup-python digest to 83679a8 (#42045)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/setup-python](https://redirect.github.com/actions/setup-python)
| action | digest | `e797f83` -> `83679a8` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-11-25 05:12:04 +01:00
astro-stan e4ef820b30 feat(grafana): Add dashboard auto-downloader (#41665)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->

Currently, this chart allows provisioning of 3 predefined dashboards.

This is not ideal because:

- It is not flexible (only 3 statically defined in the chart dashboards
are supported)
- It bloats the chart unnecessarily
- Dashboards can get out of date quickly

To fix these shortcomings, I have added a curl init container that
executes a script which is generated during chart rendering based on the
values defined in the new map in the chart values
(`.Values.extraDashboards`). The map allows defining dashboards to be
provisioned both directly from `grafana.com` and via any URL that
returns a valid JSON Grafana dashboard file.

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

- Rendered the chart manually with the values defined under
`.Values.extraDashboards`.
- Checked that the dashboards are present in Grafana after it starts

**📃 Notes:**

- The Grafana image technically already has `curl` as a command;
however, I chose to use a separate image just for the init container
because `curl` might be removed without notice from the Grafana image in
the future, and I do not want to depend on it being present.
- I have left the old way of deploying dashboards to prevent making this
a breaking change. After this is merged, I will open a new PR for
removing them (that will be marked breaking), and it can be merged when
appropriate.

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [x] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [x] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [x] ⬆️ 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: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Boemeltrein <info@boemeltrein.nl>
Co-authored-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-23 14:44:59 +01:00
TrueCharts Bot 60de1ea2da chore(github-action): update actions/checkout action v5 → v6 (#41948)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | major | `93cb6ef` -> `1af3b93` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

### [`v6`](https://redirect.github.com/actions/checkout/compare/v5...v6)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v5...v6)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL21ham9yIl19-->
2025-11-21 11:43:24 +01:00
TrueCharts Bot 14ecd1f63a chore(github-action): update actions/setup-go digest to 4dc6199 (#41927)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-go](https://redirect.github.com/actions/setup-go) |
action | digest | `4469467` -> `4dc6199` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-11-20 08:05:01 +01:00
TrueCharts Bot a4d4fd240c chore(github-action): update actions/checkout digest to 93cb6ef (#41816)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | digest | `08c6903` -> `93cb6ef` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMC4zIiwidXBkYXRlZEluVmVyIjoiNDIuMTAuMyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-11-17 23:25:28 +01:00
Kjeld Schouten b16c063295 not any subdirectory website renovate 2025-11-14 01:33:40 +01:00
Kjeld Schouten d54c1b273e hmm 2025-11-14 01:27:28 +01:00
Kjeld Schouten 29d6f77ab1 website renovate tweak 2025-11-14 01:21:56 +01:00
Kjeld Schouten 58f82e6e0d default to renvoate add-labels 2025-11-14 00:54:45 +01:00
Kjeld Schouten 1f53732d0d some renovate tweaking 2025-11-14 00:48:24 +01:00
Kjeld Schouten f2ec5003ed move from renovate prefix to semantic settings
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-11-14 00:42:53 +01:00
Kjeld Schouten 49956157ae another 2025-11-14 00:28:40 +01:00
Kjeld Schouten f9dabbe5ba more pindigest 2025-11-14 00:21:22 +01:00
Kjeld Schouten 3e018ac2e4 isdfdsfds 2025-11-13 23:54:03 +01:00
Kjeld Schouten 30c51300f7 fix(ci): temporarily move lint back to github hosted runners 2025-11-05 20:14:54 +01:00
TrueCharts Bot 645b826605 chore(github-action): update helm/chart-testing-action action v2.7.0 → v2.8.0 (#41452)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[helm/chart-testing-action](https://redirect.github.com/helm/chart-testing-action)
| action | minor | `0d28d31` -> `6ec842c` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>helm/chart-testing-action (helm/chart-testing-action)</summary>

###
[`v2.8.0`](https://redirect.github.com/helm/chart-testing-action/releases/tag/v2.8.0)

[Compare
Source](https://redirect.github.com/helm/chart-testing-action/compare/v2.7.0...v2.8.0)

##### What's Changed

- Bump the actions group across 1 directory with 4 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;171](https://redirect.github.com/helm/chart-testing-action/pull/171)
- Fix the broken link for GitHub Help Documentation by
[@&#8203;subramani95](https://redirect.github.com/subramani95) in
[#&#8203;174](https://redirect.github.com/helm/chart-testing-action/pull/174)
- bump ct and yamale version by
[@&#8203;cpanato](https://redirect.github.com/cpanato) in
[#&#8203;178](https://redirect.github.com/helm/chart-testing-action/pull/178)
- Bump actions/checkout from 4.2.2 to 5.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;181](https://redirect.github.com/helm/chart-testing-action/pull/181)
- Bump actions/setup-python from 5.4.0 to 6.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;179](https://redirect.github.com/helm/chart-testing-action/pull/179)
- Bump the actions group across 1 directory with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;183](https://redirect.github.com/helm/chart-testing-action/pull/183)
- Use uv instead of python venv by
[@&#8203;nikolaik](https://redirect.github.com/nikolaik) in
[#&#8203;172](https://redirect.github.com/helm/chart-testing-action/pull/172)
- Bump sigstore/cosign-installer from 3.8.1 to 4.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;184](https://redirect.github.com/helm/chart-testing-action/pull/184)

##### New Contributors

- [@&#8203;subramani95](https://redirect.github.com/subramani95) made
their first contribution in
[#&#8203;174](https://redirect.github.com/helm/chart-testing-action/pull/174)
- [@&#8203;nikolaik](https://redirect.github.com/nikolaik) made their
first contribution in
[#&#8203;172](https://redirect.github.com/helm/chart-testing-action/pull/172)

**Full Changelog**:
<https://github.com/helm/chart-testing-action/compare/v2...v2.8.0>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvbWlub3IiXX0=-->
2025-11-05 16:41:58 +01:00
Kjeld Schouten 21ffdfc60a no need anymore for daily clustertool things 2025-11-04 14:49:06 +01:00
Kjeld Schouten a15a85b110 only run install tests for helm on github-hosted runners 2025-11-04 14:41:56 +01:00
Kjeld Schouten caa8235c9c move docs to truetech 2025-10-15 21:26:28 +02:00
Kjeld Schouten 285f235bd2 Create common docs from charts repo 2025-10-15 15:10:07 +02:00
Kjeld Schouten b8af7831e3 fix some docs generation issues 2025-10-13 17:45:56 +02:00
Alfred Göppel be93ca5e10 Fix duplicate entry in ct-lint.yaml (#40637)
Removed duplicate entry for 'charts/stable' in the lint configuration.

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ 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
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ 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
- [ ] 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: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-10-11 21:40:40 +02:00
Alfred Göppel da571d06f8 Remove duplicate 'charts/stable' entries (#40636)
Removed duplicate entries for 'charts/stable' in the configuration.

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ 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
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ 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
- [ ] 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: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-10-11 21:37:52 +02:00
TrueCharts Bot 64486c956d chore(github-action): update actions/checkout action v3 → v5 (#40635)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | major | -> `08c6903` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

### [`v5`](https://redirect.github.com/actions/checkout/compare/v4...v5)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4...v5)

###
[`v4`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v422)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v3...v4)

- `url-helper.ts` now leverages well-known environment variables by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[#&#8203;1941](https://redirect.github.com/actions/checkout/pull/1941)
- Expand unit test coverage for `isGhes` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[#&#8203;1946](https://redirect.github.com/actions/checkout/pull/1946)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvbWFqb3IiXX0=-->
2025-10-11 21:24:29 +02:00
Boemeltrein c937415fe7 fix(workflow): remove clustertool tests (#40574)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
pr Validation is vailing because of removed tests

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ 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>
2025-10-10 19:44:55 +00:00
Kjeld Schouten 8d891e677d truecharts/charts for chart docs 2025-10-10 10:59:14 +02:00
Kjeld Schouten 70f87d44a9 more tc to tf 2025-10-10 10:55:00 +02:00
Kjeld Schouten 30fbfba1cb cut down on trains and copy to truecharts instead of charts 2025-10-10 10:47:21 +02:00
Kjeld Schouten b22e0cd82c move things to archive and some cleanup 2025-10-09 17:33:20 +02:00
Kjeld Schouten 12568a6a3a stash 2025-10-09 16:31:13 +02:00
Kjeld Schouten 3df3dc7ea8 ensure description-list stays saved 2025-10-09 16:28:52 +02:00
Kjeld Schouten 65589212c3 remove old chart docs 2025-10-09 16:25:49 +02:00
Kjeld Schouten 3e7b8a3fef some minor deploy fixes 2025-10-09 16:22:48 +02:00
Kjeld Schouten b2a25317cd rebase fix 2025-10-09 16:04:37 +02:00
Kjeld Schouten d5f6706aa6 try move website to website repo 2025-10-09 16:01:32 +02:00
Kjeld Schouten 17f82c79b1 feat(containers)!: Remove support for building containers from this repo 2025-10-06 18:29:51 +02:00
TrueCharts Bot 8dc2189a79 chore(github-action): update actions/stale digest to 5f858e3 (#40349)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/stale](https://redirect.github.com/actions/stale) | action |
digest | `3a9db7e` -> `5f858e3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19-->
2025-10-04 01:24:49 +02:00
Soumyadeep Dey 084d78d979 fix(docs) (#40311)
fixed an typo

**Description**

fixed some typos founded in readme

⚒️ Fixes  # <!--(issue)-->

**⚙️ 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
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 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
- [ ] 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.

- [x] 🖼️ 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: Soumyadeep Dey <95275364+SoumyaEXE@users.noreply.github.com>
2025-10-02 17:13:53 +02:00