From 609e3fe31f650551aed65d9feff0432fe5d58972 Mon Sep 17 00:00:00 2001 From: Jamie <32368259+jamie-stinson@users.noreply.github.com> Date: Wed, 21 Feb 2024 21:27:14 +0000 Subject: [PATCH] feat(smartctl-exporter): Move to stable (#18484) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move smartctl-exporter to Stable train. ⚒️ 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 **🧪 How Has This Been Tested?** Testing completed on both TrueNAS-SCALE-23.10.1 & native helm. S.M.A.R.T metrics successfully collected and exported into prometheus. **📃 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 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 **➕ 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._ --- .../smartctl-exporter/.helmignore | 0 .../smartctl-exporter/Chart.yaml | 8 ++++---- .../smartctl-exporter/README.md | 0 .../smartctl-exporter/icon.png | Bin .../smartctl-exporter/questions.yaml | 0 .../smartctl-exporter/templates/NOTES.txt | 0 .../smartctl-exporter/templates/common.yaml | 0 .../smartctl-exporter/values.yaml | 0 8 files changed, 4 insertions(+), 4 deletions(-) rename charts/{incubator => stable}/smartctl-exporter/.helmignore (100%) rename charts/{incubator => stable}/smartctl-exporter/Chart.yaml (82%) rename charts/{incubator => stable}/smartctl-exporter/README.md (100%) rename charts/{incubator => stable}/smartctl-exporter/icon.png (100%) rename charts/{incubator => stable}/smartctl-exporter/questions.yaml (100%) rename charts/{incubator => stable}/smartctl-exporter/templates/NOTES.txt (100%) rename charts/{incubator => stable}/smartctl-exporter/templates/common.yaml (100%) rename charts/{incubator => stable}/smartctl-exporter/values.yaml (100%) diff --git a/charts/incubator/smartctl-exporter/.helmignore b/charts/stable/smartctl-exporter/.helmignore similarity index 100% rename from charts/incubator/smartctl-exporter/.helmignore rename to charts/stable/smartctl-exporter/.helmignore diff --git a/charts/incubator/smartctl-exporter/Chart.yaml b/charts/stable/smartctl-exporter/Chart.yaml similarity index 82% rename from charts/incubator/smartctl-exporter/Chart.yaml rename to charts/stable/smartctl-exporter/Chart.yaml index f0e50d087c5..49007542914 100644 --- a/charts/incubator/smartctl-exporter/Chart.yaml +++ b/charts/stable/smartctl-exporter/Chart.yaml @@ -5,7 +5,7 @@ annotations: truecharts.org/category: metrics truecharts.org/max_helm_version: "3.13" truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + truecharts.org/train: stable apiVersion: v2 appVersion: 0.11.0 dependencies: @@ -18,7 +18,7 @@ dependencies: import-values: [] deprecated: false description: Prometheus exporter for SMART using smartctl binary to gather metrics. -home: https://truecharts.org/charts/incubator/smartctl-exporter +home: https://truecharts.org/charts/stable/smartctl-exporter icon: https://truecharts.org/img/hotlink-ok/chart-icons/smartctl-exporter.png keywords: - prometheus @@ -31,8 +31,8 @@ maintainers: url: https://truecharts.org name: smartctl-exporter sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/smartctl-exporter + - https://github.com/truecharts/charts/tree/master/charts/stable/smartctl-exporter - https://github.com/prometheus-community/smartctl_exporter - https://hub.docker.com/r/prometheuscommunity/smartctl-exporter type: application -version: 0.0.1 +version: 1.0.0 diff --git a/charts/incubator/smartctl-exporter/README.md b/charts/stable/smartctl-exporter/README.md similarity index 100% rename from charts/incubator/smartctl-exporter/README.md rename to charts/stable/smartctl-exporter/README.md diff --git a/charts/incubator/smartctl-exporter/icon.png b/charts/stable/smartctl-exporter/icon.png similarity index 100% rename from charts/incubator/smartctl-exporter/icon.png rename to charts/stable/smartctl-exporter/icon.png diff --git a/charts/incubator/smartctl-exporter/questions.yaml b/charts/stable/smartctl-exporter/questions.yaml similarity index 100% rename from charts/incubator/smartctl-exporter/questions.yaml rename to charts/stable/smartctl-exporter/questions.yaml diff --git a/charts/incubator/smartctl-exporter/templates/NOTES.txt b/charts/stable/smartctl-exporter/templates/NOTES.txt similarity index 100% rename from charts/incubator/smartctl-exporter/templates/NOTES.txt rename to charts/stable/smartctl-exporter/templates/NOTES.txt diff --git a/charts/incubator/smartctl-exporter/templates/common.yaml b/charts/stable/smartctl-exporter/templates/common.yaml similarity index 100% rename from charts/incubator/smartctl-exporter/templates/common.yaml rename to charts/stable/smartctl-exporter/templates/common.yaml diff --git a/charts/incubator/smartctl-exporter/values.yaml b/charts/stable/smartctl-exporter/values.yaml similarity index 100% rename from charts/incubator/smartctl-exporter/values.yaml rename to charts/stable/smartctl-exporter/values.yaml