From 33e0a99ce0c7402d92caa12de62ffd8ff195d22e Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Wed, 3 Jan 2024 23:17:48 +0200 Subject: [PATCH] fix(rss-bridge): disable varrun vol (#16856) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes #15351 ⚒️ Fixes #15843 **⚙️ 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._ --- charts/stable/plextraktsync/Chart.yaml | 2 +- charts/stable/plextraktsync/ci/cron-values.yaml | 4 ++++ charts/stable/plextraktsync/templates/_cronjob.tpl | 13 ++++++------- charts/stable/rss-bridge/Chart.yaml | 2 +- charts/stable/rss-bridge/values.yaml | 2 ++ 5 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 charts/stable/plextraktsync/ci/cron-values.yaml diff --git a/charts/stable/plextraktsync/Chart.yaml b/charts/stable/plextraktsync/Chart.yaml index 95448996b16..49be4040afa 100644 --- a/charts/stable/plextraktsync/Chart.yaml +++ b/charts/stable/plextraktsync/Chart.yaml @@ -1,7 +1,7 @@ kubeVersion: '>=1.24.0-0' apiVersion: v2 name: plextraktsync -version: 6.1.8 +version: 6.1.9 appVersion: 0.27.15 description: Two-way-sync between trakt.tv and Plex Media Server. home: https://truecharts.org/charts/incubator/plextraktsync diff --git a/charts/stable/plextraktsync/ci/cron-values.yaml b/charts/stable/plextraktsync/ci/cron-values.yaml new file mode 100644 index 00000000000..90594145c97 --- /dev/null +++ b/charts/stable/plextraktsync/ci/cron-values.yaml @@ -0,0 +1,4 @@ +plextraktsync: + cron_enabled: true + task: "" + schedule: "*/1 * * * *" diff --git a/charts/stable/plextraktsync/templates/_cronjob.tpl b/charts/stable/plextraktsync/templates/_cronjob.tpl index 2ad8eb383da..93f9870ea26 100644 --- a/charts/stable/plextraktsync/templates/_cronjob.tpl +++ b/charts/stable/plextraktsync/templates/_cronjob.tpl @@ -10,13 +10,12 @@ podSpec: enabled: true primary: true imageSelector: "image" - command: - - plextraktsync - {{- if .Values.plextraktsync.task }} - - {{ .Values.plextraktsync.task }} - {{- else }} - - sync --sync=all - {{- end }} + args: + {{- if .Values.plextraktsync.task }} + - {{ .Values.plextraktsync.task }} + {{- else }} + - sync --sync=all + {{- end }} probes: liveness: enabled: false diff --git a/charts/stable/rss-bridge/Chart.yaml b/charts/stable/rss-bridge/Chart.yaml index 3cd0df62f83..dc3cd990232 100644 --- a/charts/stable/rss-bridge/Chart.yaml +++ b/charts/stable/rss-bridge/Chart.yaml @@ -1,7 +1,7 @@ kubeVersion: ">=1.24.0-0" apiVersion: v2 name: rss-bridge -version: 8.1.5 +version: 8.1.6 appVersion: "2023" description: RSS-Bridge is a PHP project capable of generating RSS and Atom feeds for websites that don't have one. home: https://truecharts.org/charts/stable/rss-bridge diff --git a/charts/stable/rss-bridge/values.yaml b/charts/stable/rss-bridge/values.yaml index cc928913471..f95f1bcb08e 100644 --- a/charts/stable/rss-bridge/values.yaml +++ b/charts/stable/rss-bridge/values.yaml @@ -11,6 +11,8 @@ persistence: config: enabled: true mountPath: "/config" + varrun: + enabled: false portal: open: enabled: true