From 708d04343b162840ce1fa84cf03a1bfaa422860b Mon Sep 17 00:00:00 2001 From: TheDodger Date: Mon, 28 Jul 2025 18:21:30 +0200 Subject: [PATCH] fix(nebula-sync): Move to stable (#37865) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Works as expected. ⚒️ Fixes # **⚙️ 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?** **📃 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 - [ ] ⬆️ 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._ --- .github/ct-install.yaml | 4 ++-- .../{incubator => stable}/nebula-sync/.helmignore | 0 .../{incubator => stable}/nebula-sync/CHANGELOG.md | 0 charts/{incubator => stable}/nebula-sync/Chart.yaml | 6 +++--- charts/{incubator => stable}/nebula-sync/README.md | 0 .../nebula-sync/icon-small.webp | Bin charts/{incubator => stable}/nebula-sync/icon.webp | Bin .../nebula-sync/templates/NOTES.txt | 0 .../nebula-sync/templates/common.yaml | 0 .../{incubator => stable}/nebula-sync/values.yaml | 0 10 files changed, 5 insertions(+), 5 deletions(-) rename charts/{incubator => stable}/nebula-sync/.helmignore (100%) rename charts/{incubator => stable}/nebula-sync/CHANGELOG.md (100%) rename charts/{incubator => stable}/nebula-sync/Chart.yaml (83%) rename charts/{incubator => stable}/nebula-sync/README.md (100%) rename charts/{incubator => stable}/nebula-sync/icon-small.webp (100%) rename charts/{incubator => stable}/nebula-sync/icon.webp (100%) rename charts/{incubator => stable}/nebula-sync/templates/NOTES.txt (100%) rename charts/{incubator => stable}/nebula-sync/templates/common.yaml (100%) rename charts/{incubator => stable}/nebula-sync/values.yaml (100%) diff --git a/.github/ct-install.yaml b/.github/ct-install.yaml index 675f2396187..56d26ae5580 100644 --- a/.github/ct-install.yaml +++ b/.github/ct-install.yaml @@ -11,7 +11,6 @@ chart-dirs: - charts/system excluded-charts: - charts/dependency/subchart - - charts/incubator/nebula-sync - charts/library/common - charts/stable/adguardhome-sync - charts/stable/alertmanager-bot @@ -48,6 +47,7 @@ excluded-charts: - charts/stable/midarr - charts/stable/mindustry - charts/stable/multus + - charts/stable/nebula-sync - charts/stable/neverwinternights-ee - charts/stable/nitter - charts/stable/openttd @@ -60,8 +60,8 @@ excluded-charts: - charts/stable/reg - charts/stable/romm - charts/stable/sd-webui - - charts/stable/ser2sock - charts/stable/sdtd + - charts/stable/ser2sock - charts/stable/splunk - charts/stable/starmade - charts/stable/storj-node diff --git a/charts/incubator/nebula-sync/.helmignore b/charts/stable/nebula-sync/.helmignore similarity index 100% rename from charts/incubator/nebula-sync/.helmignore rename to charts/stable/nebula-sync/.helmignore diff --git a/charts/incubator/nebula-sync/CHANGELOG.md b/charts/stable/nebula-sync/CHANGELOG.md similarity index 100% rename from charts/incubator/nebula-sync/CHANGELOG.md rename to charts/stable/nebula-sync/CHANGELOG.md diff --git a/charts/incubator/nebula-sync/Chart.yaml b/charts/stable/nebula-sync/Chart.yaml similarity index 83% rename from charts/incubator/nebula-sync/Chart.yaml rename to charts/stable/nebula-sync/Chart.yaml index c9f84ef7b7f..2d8c4d672ee 100644 --- a/charts/incubator/nebula-sync/Chart.yaml +++ b/charts/stable/nebula-sync/Chart.yaml @@ -5,7 +5,7 @@ annotations: truecharts.org/category: networking truecharts.org/max_helm_version: "3.17" truecharts.org/min_helm_version: "3.14" - truecharts.org/train: incubator + truecharts.org/train: stable apiVersion: v2 appVersion: v0.11.0 dependencies: @@ -18,7 +18,7 @@ dependencies: import-values: [] deprecated: false description: Synchronize Pi-hole v6.x configuration to replicas. -home: https://truecharts.org/charts/incubator/nebula-sync +home: https://truecharts.org/charts/stable/nebula-sync icon: https://truecharts.org/img/hotlink-ok/chart-icons/nebula-sync.webp keywords: - pihole @@ -32,7 +32,7 @@ maintainers: name: nebula-sync sources: - https://ghcr.io/lovelaze/nebula-sync - - https://github.com/truecharts/charts/tree/master/charts/incubator/nebula-sync + - https://github.com/truecharts/charts/tree/master/charts/stable/nebula-sync type: application version: 0.1.0 diff --git a/charts/incubator/nebula-sync/README.md b/charts/stable/nebula-sync/README.md similarity index 100% rename from charts/incubator/nebula-sync/README.md rename to charts/stable/nebula-sync/README.md diff --git a/charts/incubator/nebula-sync/icon-small.webp b/charts/stable/nebula-sync/icon-small.webp similarity index 100% rename from charts/incubator/nebula-sync/icon-small.webp rename to charts/stable/nebula-sync/icon-small.webp diff --git a/charts/incubator/nebula-sync/icon.webp b/charts/stable/nebula-sync/icon.webp similarity index 100% rename from charts/incubator/nebula-sync/icon.webp rename to charts/stable/nebula-sync/icon.webp diff --git a/charts/incubator/nebula-sync/templates/NOTES.txt b/charts/stable/nebula-sync/templates/NOTES.txt similarity index 100% rename from charts/incubator/nebula-sync/templates/NOTES.txt rename to charts/stable/nebula-sync/templates/NOTES.txt diff --git a/charts/incubator/nebula-sync/templates/common.yaml b/charts/stable/nebula-sync/templates/common.yaml similarity index 100% rename from charts/incubator/nebula-sync/templates/common.yaml rename to charts/stable/nebula-sync/templates/common.yaml diff --git a/charts/incubator/nebula-sync/values.yaml b/charts/stable/nebula-sync/values.yaml similarity index 100% rename from charts/incubator/nebula-sync/values.yaml rename to charts/stable/nebula-sync/values.yaml