From ea93a6153bf855a0707a9a8e51748d1189c4cb84 Mon Sep 17 00:00:00 2001 From: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> Date: Sat, 12 Aug 2023 04:22:53 -0400 Subject: [PATCH] feat(static-web-server): Move to stable (#11391) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Tested and good, do we want to deprecate `static`, since that one isn't maintained upstream? ⚒️ Fixes # **⚙️ 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 - [ ] 📄 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 opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ 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._ --- .../static-web-server/.helmignore | 0 .../static-web-server/Chart.yaml | 6 +++--- .../static-web-server/README.md | 0 .../static-web-server/icon.png | Bin .../static-web-server/questions.yaml | 0 .../static-web-server/templates/NOTES.txt | 0 .../static-web-server/templates/common.yaml | 0 .../static-web-server/values.yaml | 0 8 files changed, 3 insertions(+), 3 deletions(-) rename charts/{incubator => stable}/static-web-server/.helmignore (100%) rename charts/{incubator => stable}/static-web-server/Chart.yaml (82%) rename charts/{incubator => stable}/static-web-server/README.md (100%) rename charts/{incubator => stable}/static-web-server/icon.png (100%) rename charts/{incubator => stable}/static-web-server/questions.yaml (100%) rename charts/{incubator => stable}/static-web-server/templates/NOTES.txt (100%) rename charts/{incubator => stable}/static-web-server/templates/common.yaml (100%) rename charts/{incubator => stable}/static-web-server/values.yaml (100%) diff --git a/charts/incubator/static-web-server/.helmignore b/charts/stable/static-web-server/.helmignore similarity index 100% rename from charts/incubator/static-web-server/.helmignore rename to charts/stable/static-web-server/.helmignore diff --git a/charts/incubator/static-web-server/Chart.yaml b/charts/stable/static-web-server/Chart.yaml similarity index 82% rename from charts/incubator/static-web-server/Chart.yaml rename to charts/stable/static-web-server/Chart.yaml index 4d9c5585c02..2f1b9d6f0fd 100644 --- a/charts/incubator/static-web-server/Chart.yaml +++ b/charts/stable/static-web-server/Chart.yaml @@ -6,7 +6,7 @@ dependencies: version: 14.0.1 deprecated: false description: A cross-platform, high-performance and asynchronous web server for static files-serving. -home: https://truecharts.org/charts/incubator/static-web-server +home: https://truecharts.org/charts/stable/static-web-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/static-web-server.png keywords: - web-server @@ -19,11 +19,11 @@ maintainers: url: https://truecharts.org name: static-web-server sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/static-web-server + - https://github.com/truecharts/charts/tree/master/charts/stable/static-web-server - https://github.com/static-web-server/static-web-server - https://static-web-server.net type: application -version: 0.0.2 +version: 1.0.0 annotations: truecharts.org/catagories: | - web-server diff --git a/charts/incubator/static-web-server/README.md b/charts/stable/static-web-server/README.md similarity index 100% rename from charts/incubator/static-web-server/README.md rename to charts/stable/static-web-server/README.md diff --git a/charts/incubator/static-web-server/icon.png b/charts/stable/static-web-server/icon.png similarity index 100% rename from charts/incubator/static-web-server/icon.png rename to charts/stable/static-web-server/icon.png diff --git a/charts/incubator/static-web-server/questions.yaml b/charts/stable/static-web-server/questions.yaml similarity index 100% rename from charts/incubator/static-web-server/questions.yaml rename to charts/stable/static-web-server/questions.yaml diff --git a/charts/incubator/static-web-server/templates/NOTES.txt b/charts/stable/static-web-server/templates/NOTES.txt similarity index 100% rename from charts/incubator/static-web-server/templates/NOTES.txt rename to charts/stable/static-web-server/templates/NOTES.txt diff --git a/charts/incubator/static-web-server/templates/common.yaml b/charts/stable/static-web-server/templates/common.yaml similarity index 100% rename from charts/incubator/static-web-server/templates/common.yaml rename to charts/stable/static-web-server/templates/common.yaml diff --git a/charts/incubator/static-web-server/values.yaml b/charts/stable/static-web-server/values.yaml similarity index 100% rename from charts/incubator/static-web-server/values.yaml rename to charts/stable/static-web-server/values.yaml