From 46db7d757f04e832cfa010cbc94a1c3c1b326ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Sat, 8 Mar 2025 15:10:24 +0100 Subject: [PATCH] fix(flexo): move chart to stable (#32997) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # **⚙️ 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?** **📃 Notes:** **✔️ 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 - [ ] 📄 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 - [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._ --- charts/{incubator => stable}/flexo/.helmignore | 0 charts/{incubator => stable}/flexo/CHANGELOG.md | 0 charts/{incubator => stable}/flexo/Chart.yaml | 8 ++++---- charts/{incubator => stable}/flexo/README.md | 0 charts/{incubator => stable}/flexo/icon-small.webp | Bin charts/{incubator => stable}/flexo/icon.webp | Bin .../{incubator => stable}/flexo/templates/NOTES.txt | 0 .../flexo/templates/common.yaml | 0 charts/{incubator => stable}/flexo/values.yaml | 0 9 files changed, 4 insertions(+), 4 deletions(-) rename charts/{incubator => stable}/flexo/.helmignore (100%) rename charts/{incubator => stable}/flexo/CHANGELOG.md (100%) rename charts/{incubator => stable}/flexo/Chart.yaml (81%) rename charts/{incubator => stable}/flexo/README.md (100%) rename charts/{incubator => stable}/flexo/icon-small.webp (100%) rename charts/{incubator => stable}/flexo/icon.webp (100%) rename charts/{incubator => stable}/flexo/templates/NOTES.txt (100%) rename charts/{incubator => stable}/flexo/templates/common.yaml (100%) rename charts/{incubator => stable}/flexo/values.yaml (100%) diff --git a/charts/incubator/flexo/.helmignore b/charts/stable/flexo/.helmignore similarity index 100% rename from charts/incubator/flexo/.helmignore rename to charts/stable/flexo/.helmignore diff --git a/charts/incubator/flexo/CHANGELOG.md b/charts/stable/flexo/CHANGELOG.md similarity index 100% rename from charts/incubator/flexo/CHANGELOG.md rename to charts/stable/flexo/CHANGELOG.md diff --git a/charts/incubator/flexo/Chart.yaml b/charts/stable/flexo/Chart.yaml similarity index 81% rename from charts/incubator/flexo/Chart.yaml rename to charts/stable/flexo/Chart.yaml index 9fe26727edb..2e2ac28e8ab 100644 --- a/charts/incubator/flexo/Chart.yaml +++ b/charts/stable/flexo/Chart.yaml @@ -4,7 +4,7 @@ annotations: truecharts.org/category: tools truecharts.org/max_helm_version: "3.15" truecharts.org/min_helm_version: "3.11" - truecharts.org/train: incubator + truecharts.org/train: stable apiVersion: v2 appVersion: 1.6.9 dependencies: @@ -17,7 +17,7 @@ dependencies: import-values: [] deprecated: false description: Arch linux pacman cache proxy server -home: https://truecharts.org/charts/incubator/flexo +home: https://truecharts.org/charts/stable/flexo icon: https://truecharts.org/img/hotlink-ok/chart-icons/flexo.webp keywords: - flexo @@ -30,7 +30,7 @@ maintainers: name: flexo sources: - https://github.com/nroi/flexo - - https://github.com/truecharts/charts/tree/master/charts/incubator/flexo + - https://github.com/truecharts/charts/tree/master/charts/stable/flexo - https://hub.docker.com/r/nroi/flexo type: application -version: 0.0.1 +version: 1.0.0 diff --git a/charts/incubator/flexo/README.md b/charts/stable/flexo/README.md similarity index 100% rename from charts/incubator/flexo/README.md rename to charts/stable/flexo/README.md diff --git a/charts/incubator/flexo/icon-small.webp b/charts/stable/flexo/icon-small.webp similarity index 100% rename from charts/incubator/flexo/icon-small.webp rename to charts/stable/flexo/icon-small.webp diff --git a/charts/incubator/flexo/icon.webp b/charts/stable/flexo/icon.webp similarity index 100% rename from charts/incubator/flexo/icon.webp rename to charts/stable/flexo/icon.webp diff --git a/charts/incubator/flexo/templates/NOTES.txt b/charts/stable/flexo/templates/NOTES.txt similarity index 100% rename from charts/incubator/flexo/templates/NOTES.txt rename to charts/stable/flexo/templates/NOTES.txt diff --git a/charts/incubator/flexo/templates/common.yaml b/charts/stable/flexo/templates/common.yaml similarity index 100% rename from charts/incubator/flexo/templates/common.yaml rename to charts/stable/flexo/templates/common.yaml diff --git a/charts/incubator/flexo/values.yaml b/charts/stable/flexo/values.yaml similarity index 100% rename from charts/incubator/flexo/values.yaml rename to charts/stable/flexo/values.yaml