From e16c280edc6ab4587ca14a3507a98f01cc628422 Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Thu, 8 Jun 2023 18:09:21 -0400 Subject: [PATCH] feat(firefox) firefox move to stable (#9478) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move firefox to stable ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [X] 🔃 Refactor of current code **🧪 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 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 - [X] ⬆️ 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._ --------- Signed-off-by: Kjeld Schouten Co-authored-by: Kjeld Schouten --- .../{incubator => stable}/firefox/.helmignore | 0 .../firefox/CHANGELOG.md | 0 .../{incubator => stable}/firefox/Chart.yaml | 2 +- .../{incubator => stable}/firefox/README.md | 0 charts/{incubator => stable}/firefox/icon.png | Bin .../firefox/questions.yaml | 26 +++++++++++++----- .../firefox/templates/NOTES.txt | 0 .../firefox/templates/common.yaml | 0 .../{incubator => stable}/firefox/values.yaml | 0 9 files changed, 20 insertions(+), 8 deletions(-) rename charts/{incubator => stable}/firefox/.helmignore (100%) rename charts/{incubator => stable}/firefox/CHANGELOG.md (100%) rename charts/{incubator => stable}/firefox/Chart.yaml (98%) rename charts/{incubator => stable}/firefox/README.md (100%) rename charts/{incubator => stable}/firefox/icon.png (100%) rename charts/{incubator => stable}/firefox/questions.yaml (82%) rename charts/{incubator => stable}/firefox/templates/NOTES.txt (100%) rename charts/{incubator => stable}/firefox/templates/common.yaml (100%) rename charts/{incubator => stable}/firefox/values.yaml (100%) diff --git a/charts/incubator/firefox/.helmignore b/charts/stable/firefox/.helmignore similarity index 100% rename from charts/incubator/firefox/.helmignore rename to charts/stable/firefox/.helmignore diff --git a/charts/incubator/firefox/CHANGELOG.md b/charts/stable/firefox/CHANGELOG.md similarity index 100% rename from charts/incubator/firefox/CHANGELOG.md rename to charts/stable/firefox/CHANGELOG.md diff --git a/charts/incubator/firefox/Chart.yaml b/charts/stable/firefox/Chart.yaml similarity index 98% rename from charts/incubator/firefox/Chart.yaml rename to charts/stable/firefox/Chart.yaml index 21e4c044c0d..b3591d3857a 100644 --- a/charts/incubator/firefox/Chart.yaml +++ b/charts/stable/firefox/Chart.yaml @@ -21,7 +21,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/firefox - https://github.com/linuxserver/docker-firefox type: application -version: 6.0.2 +version: 6.0.3 annotations: truecharts.org/catagories: | - browser diff --git a/charts/incubator/firefox/README.md b/charts/stable/firefox/README.md similarity index 100% rename from charts/incubator/firefox/README.md rename to charts/stable/firefox/README.md diff --git a/charts/incubator/firefox/icon.png b/charts/stable/firefox/icon.png similarity index 100% rename from charts/incubator/firefox/icon.png rename to charts/stable/firefox/icon.png diff --git a/charts/incubator/firefox/questions.yaml b/charts/stable/firefox/questions.yaml similarity index 82% rename from charts/incubator/firefox/questions.yaml rename to charts/stable/firefox/questions.yaml index d48652b4b85..35c33e67ae8 100644 --- a/charts/incubator/firefox/questions.yaml +++ b/charts/stable/firefox/questions.yaml @@ -64,17 +64,29 @@ questions: attrs: # Include{persistenceBasic} # Include{persistenceList} - +# Include{ingressRoot} + - variable: main + label: Main Ingress + schema: + additional_attrs: true + type: dict + attrs: +# Include{ingressDefault} +# Include{ingressTLS} +# Include{ingressTraefik} +# Include{ingressAdvanced} +# Include{ingressList} # Include{securityContextRoot} + - variable: runAsUser - label: "runAsUser" - description: "The UserID of the user running the application" + label: runAsUser + description: The UserID of the user running the application schema: type: int default: 0 - variable: runAsGroup - label: "runAsGroup" - description: "The groupID of the user running the application" + label: runAsGroup + description: The groupID this App of the user running the application schema: type: int default: 0 @@ -82,8 +94,8 @@ questions: # Include{securityContextAdvanced} # Include{securityContextPod} - variable: fsGroup - label: "fsGroup" - description: "The group that should own ALL storage." + label: fsGroup + description: The group that should own ALL storage. schema: type: int default: 568 diff --git a/charts/incubator/firefox/templates/NOTES.txt b/charts/stable/firefox/templates/NOTES.txt similarity index 100% rename from charts/incubator/firefox/templates/NOTES.txt rename to charts/stable/firefox/templates/NOTES.txt diff --git a/charts/incubator/firefox/templates/common.yaml b/charts/stable/firefox/templates/common.yaml similarity index 100% rename from charts/incubator/firefox/templates/common.yaml rename to charts/stable/firefox/templates/common.yaml diff --git a/charts/incubator/firefox/values.yaml b/charts/stable/firefox/values.yaml similarity index 100% rename from charts/incubator/firefox/values.yaml rename to charts/stable/firefox/values.yaml