From 12b8a5adcd59a880ecfaf66f1c4c0b46c48fd9f2 Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Wed, 30 Aug 2023 16:26:18 -0400 Subject: [PATCH] fix(jackett) fix question group section (#12031) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Just basic housekeeping to fix the group description. ⚒️ 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._ --- charts/stable/jackett/Chart.yaml | 2 +- charts/stable/jackett/questions.yaml | 2 +- charts/stable/jackett/values.yaml | 25 +++++++++++++++---------- 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/charts/stable/jackett/Chart.yaml b/charts/stable/jackett/Chart.yaml index b63a6cd81d3..9829d7c643a 100644 --- a/charts/stable/jackett/Chart.yaml +++ b/charts/stable/jackett/Chart.yaml @@ -22,7 +22,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/jackett - https://github.com/Jackett/Jackett type: application -version: 15.0.0 +version: 15.0.1 annotations: truecharts.org/catagories: | - media diff --git a/charts/stable/jackett/questions.yaml b/charts/stable/jackett/questions.yaml index 11e080254d1..d771acbc551 100644 --- a/charts/stable/jackett/questions.yaml +++ b/charts/stable/jackett/questions.yaml @@ -69,7 +69,7 @@ questions: default: 568 - variable: runAsGroup label: "runAsGroup" - description: "The groupID this App of the user running the application" + description: "The groupID of the user running the application" schema: type: int default: 568 diff --git a/charts/stable/jackett/values.yaml b/charts/stable/jackett/values.yaml index 1efe378da98..be03089f3da 100644 --- a/charts/stable/jackett/values.yaml +++ b/charts/stable/jackett/values.yaml @@ -2,6 +2,11 @@ image: repository: tccr.io/truecharts/jackett pullPolicy: IfNotPresent tag: v0.20.2297@sha256:4de1541011cb56935ba5a8e28a58f6cbcf62a903393dc94581eda0b6e2aa117c + +securityContext: + container: + readOnlyRootFilesystem: false + service: main: ports: @@ -9,16 +14,7 @@ service: protocol: http targetPort: 9117 port: 9117 -persistence: - config: - enabled: true - mountPath: "/config" -portal: - open: - enabled: true -securityContext: - container: - readOnlyRootFilesystem: false + workload: main: podSpec: @@ -31,3 +27,12 @@ workload: path: "/UI/Login" startup: path: "/UI/Login" + +persistence: + config: + enabled: true + mountPath: "/config" + +portal: + open: + enabled: true