From beeffc7938d5ac27d078e017f89ab25df7d40817 Mon Sep 17 00:00:00 2001 From: Jamie <32368259+jamie-stinson@users.noreply.github.com> Date: Wed, 21 Feb 2024 21:27:31 +0000 Subject: [PATCH] feat(nvidia-gpu-exporter): Move to stable (#18485) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move nvidia-gpu-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. GPU metrics successfully collected and exported into prometheus using Nvidia Quadro M2000 card. **📃 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._ --- .../nvidia-gpu-exporter/.helmignore | 0 .../nvidia-gpu-exporter/CHANGELOG.md | 0 .../nvidia-gpu-exporter/Chart.yaml | 8 ++++---- .../nvidia-gpu-exporter/README.md | 0 .../nvidia-gpu-exporter/icon.png | Bin .../nvidia-gpu-exporter/questions.yaml | 0 .../nvidia-gpu-exporter/templates/NOTES.txt | 0 .../nvidia-gpu-exporter/templates/common.yaml | 0 .../nvidia-gpu-exporter/values.yaml | 0 9 files changed, 4 insertions(+), 4 deletions(-) rename charts/{incubator => stable}/nvidia-gpu-exporter/.helmignore (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/CHANGELOG.md (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/Chart.yaml (82%) rename charts/{incubator => stable}/nvidia-gpu-exporter/README.md (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/icon.png (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/questions.yaml (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/templates/NOTES.txt (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/templates/common.yaml (100%) rename charts/{incubator => stable}/nvidia-gpu-exporter/values.yaml (100%) diff --git a/charts/incubator/nvidia-gpu-exporter/.helmignore b/charts/stable/nvidia-gpu-exporter/.helmignore similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/.helmignore rename to charts/stable/nvidia-gpu-exporter/.helmignore diff --git a/charts/incubator/nvidia-gpu-exporter/CHANGELOG.md b/charts/stable/nvidia-gpu-exporter/CHANGELOG.md similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/CHANGELOG.md rename to charts/stable/nvidia-gpu-exporter/CHANGELOG.md diff --git a/charts/incubator/nvidia-gpu-exporter/Chart.yaml b/charts/stable/nvidia-gpu-exporter/Chart.yaml similarity index 82% rename from charts/incubator/nvidia-gpu-exporter/Chart.yaml rename to charts/stable/nvidia-gpu-exporter/Chart.yaml index d9dba63b2cc..c58b5b50a1a 100644 --- a/charts/incubator/nvidia-gpu-exporter/Chart.yaml +++ b/charts/stable/nvidia-gpu-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: 1.2.0 dependencies: @@ -18,7 +18,7 @@ dependencies: import-values: [] deprecated: false description: Prometheus exporter for Nvidia GPU's using nvidia-smi binary to gather metrics. -home: https://truecharts.org/charts/incubator/nvidia-gpu-exporter +home: https://truecharts.org/charts/stable/nvidia-gpu-exporter icon: https://truecharts.org/img/hotlink-ok/chart-icons/nvidia-gpu-exporter.png keywords: - prometheus @@ -31,8 +31,8 @@ maintainers: url: https://truecharts.org name: nvidia-gpu-exporter sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/nvidia-gpu-exporter + - https://github.com/truecharts/charts/tree/master/charts/stable/nvidia-gpu-exporter - https://github.com/utkuozdemir/nvidia_gpu_exporter - https://hub.docker.com/r/utkuozdemir/nvidia_gpu_exporter type: application -version: 0.0.1 +version: 1.0.0 diff --git a/charts/incubator/nvidia-gpu-exporter/README.md b/charts/stable/nvidia-gpu-exporter/README.md similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/README.md rename to charts/stable/nvidia-gpu-exporter/README.md diff --git a/charts/incubator/nvidia-gpu-exporter/icon.png b/charts/stable/nvidia-gpu-exporter/icon.png similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/icon.png rename to charts/stable/nvidia-gpu-exporter/icon.png diff --git a/charts/incubator/nvidia-gpu-exporter/questions.yaml b/charts/stable/nvidia-gpu-exporter/questions.yaml similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/questions.yaml rename to charts/stable/nvidia-gpu-exporter/questions.yaml diff --git a/charts/incubator/nvidia-gpu-exporter/templates/NOTES.txt b/charts/stable/nvidia-gpu-exporter/templates/NOTES.txt similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/templates/NOTES.txt rename to charts/stable/nvidia-gpu-exporter/templates/NOTES.txt diff --git a/charts/incubator/nvidia-gpu-exporter/templates/common.yaml b/charts/stable/nvidia-gpu-exporter/templates/common.yaml similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/templates/common.yaml rename to charts/stable/nvidia-gpu-exporter/templates/common.yaml diff --git a/charts/incubator/nvidia-gpu-exporter/values.yaml b/charts/stable/nvidia-gpu-exporter/values.yaml similarity index 100% rename from charts/incubator/nvidia-gpu-exporter/values.yaml rename to charts/stable/nvidia-gpu-exporter/values.yaml