From c465ea801027d45f6b684f32fb23cd61e481efa5 Mon Sep 17 00:00:00 2001 From: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> Date: Sun, 6 Aug 2023 05:17:11 -0400 Subject: [PATCH] feat(static-web-server): Add Static Web Server (#11224) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** A maintained Static Web Server app which seems to be a replacement for ours ⚒️ 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._ --- .../incubator/static-web-server/.helmignore | 30 ++++++ charts/incubator/static-web-server/Chart.yaml | 31 ++++++ charts/incubator/static-web-server/README.md | 27 +++++ charts/incubator/static-web-server/icon.png | Bin 0 -> 4689 bytes .../static-web-server/questions.yaml | 92 ++++++++++++++++++ .../static-web-server/templates/NOTES.txt | 1 + .../static-web-server/templates/common.yaml | 1 + .../incubator/static-web-server/values.yaml | 36 +++++++ 8 files changed, 218 insertions(+) create mode 100644 charts/incubator/static-web-server/.helmignore create mode 100644 charts/incubator/static-web-server/Chart.yaml create mode 100644 charts/incubator/static-web-server/README.md create mode 100644 charts/incubator/static-web-server/icon.png create mode 100644 charts/incubator/static-web-server/questions.yaml create mode 100644 charts/incubator/static-web-server/templates/NOTES.txt create mode 100644 charts/incubator/static-web-server/templates/common.yaml create mode 100644 charts/incubator/static-web-server/values.yaml diff --git a/charts/incubator/static-web-server/.helmignore b/charts/incubator/static-web-server/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/static-web-server/.helmignore @@ -0,0 +1,30 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png diff --git a/charts/incubator/static-web-server/Chart.yaml b/charts/incubator/static-web-server/Chart.yaml new file mode 100644 index 00000000000..b73171a0d1d --- /dev/null +++ b/charts/incubator/static-web-server/Chart.yaml @@ -0,0 +1,31 @@ +apiVersion: v2 +appVersion: "2.20.2" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + 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 +icon: https://truecharts.org/img/hotlink-ok/chart-icons/static-web-server.png +keywords: + - web-server + - apache + - rust +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: static-web-server +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/static-web-server + - https://github.com/static-web-server/static-web-server + - https://static-web-server.net +type: application +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - web-server + - networking + truecharts.org/SCALE-support: "true" diff --git a/charts/incubator/static-web-server/README.md b/charts/incubator/static-web-server/README.md new file mode 100644 index 00000000000..e0a9b8fa8d7 --- /dev/null +++ b/charts/incubator/static-web-server/README.md @@ -0,0 +1,27 @@ +# README + +## General Info + +TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE. +However only installations using the TrueNAS SCALE Apps system are supported. + +For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + + +## Support + +- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro). +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can! + +*All Rights Reserved - The TrueCharts Project* diff --git a/charts/incubator/static-web-server/icon.png b/charts/incubator/static-web-server/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce4e66a511f84a4ab4c90bd0ac033a8b62fa9a14 GIT binary patch literal 4689 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