From 29d8cfc3c97445be350bd3e943c64f14c0bdbf44 Mon Sep 17 00:00:00 2001 From: Addison McDermid Date: Thu, 19 Dec 2024 08:27:30 +1100 Subject: [PATCH] Fix app-template Chart links (#29827) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # -Fix App-template Chart.yaml url links **⚙️ 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 **🧪 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 - [x ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 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):` or `chore(chart-name):` **➕ 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._ --- .../src/content/docs/development/chart-yaml-structure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/content/docs/development/chart-yaml-structure.md b/website/src/content/docs/development/chart-yaml-structure.md index 3fa3c2f97686..a7da5b305208 100644 --- a/website/src/content/docs/development/chart-yaml-structure.md +++ b/website/src/content/docs/development/chart-yaml-structure.md @@ -3,7 +3,7 @@ title: Chart.yaml layout --- At TrueCharts we try to keep some files standardized, this enables us to make changes to these charts in bulk with less risk of mistakes. Chart.yaml is one of these files. -In this documentation we will explain the standardized layout options. For an example layout, please see our standard Chart.yaml [template](https://github.com/truecharts/charts/blob/master/templates/chart/Chart.yaml) +In this documentation we will explain the standardized layout options. For an example layout, please see our standard Chart.yaml [template](https://github.com/truecharts/public/blob/master/charts/premium/app-template/Chart.yaml) ## Layout Explained @@ -45,7 +45,7 @@ annotations: In the above description there are a lot of values that are not actually used. Some of those, like `deprecated`, we just set to false. While others, like `annotations` get commented out. -Please refer to our standard Chart.yaml [template](https://github.com/truecharts/charts/blob/master/templates/chart/Chart.yaml) to see which unused values needs which treatment. +Please refer to our standard Chart.yaml [template](https://github.com/truecharts/public/blob/master/charts/premium/app-template/Chart.yaml) to see which unused values needs which treatment. ### Dependencies @@ -56,4 +56,4 @@ All other dependencies are expected to be listed in alphabetical order. ### Maintainers The only maintainer should always be TrueCharts, as the TrueCharts core team is expected to step in if the other maintainers fail to maintain their work. -An example of how to list TrueCharts as a maintainer is available in our standard Chart.yaml [template](https://github.com/truecharts/charts/blob/master/templates/chart/Chart.yaml). +An example of how to list TrueCharts as a maintainer is available in our standard Chart.yaml [template](https://github.com/truecharts/public/blob/master/charts/premium/app-template/Chart.yaml).