From 406d2e5b1d3001e9af8ae0cae33d0dff93889873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Sat, 18 Apr 2026 11:33:01 +0200 Subject: [PATCH] Remove deleted image chart (#47027) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ 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 - [ ] 📜 Documentation Changes **🧪 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 changes to the documentation - [ ] 🧪 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 - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ 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: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> --- charts/stable/tt-rss/Chart.yaml | 2 +- charts/stable/tt-rss/values.yaml | 26 ++++++++++---------------- 2 files changed, 11 insertions(+), 17 deletions(-) diff --git a/charts/stable/tt-rss/Chart.yaml b/charts/stable/tt-rss/Chart.yaml index 9b5f63a40d3..0201d52a99e 100644 --- a/charts/stable/tt-rss/Chart.yaml +++ b/charts/stable/tt-rss/Chart.yaml @@ -37,4 +37,4 @@ sources: - https://hub.docker.com/r/cthulhoo/ttrss-fpm-pgsql-static - https://hub.docker.com/r/cthulhoo/ttrss-web-nginx type: application -version: 21.0.0 +version: 21.0.1 diff --git a/charts/stable/tt-rss/values.yaml b/charts/stable/tt-rss/values.yaml index cee7bb28171..edc96240800 100644 --- a/charts/stable/tt-rss/values.yaml +++ b/charts/stable/tt-rss/values.yaml @@ -50,12 +50,6 @@ persistence: nginx: mountPath: /etc/nginx/templates/nginx.conf.template subPath: nginx.conf.template - plugins: - enabled: true - mountPath: /var/www/html/tt-rss/plugins.local - themes: - enabled: true - mountPath: /var/www/html/tt-rss/themes.local cnpg: main: enabled: true @@ -127,7 +121,7 @@ workload: APP_WEB_ROOT: /var/www/html/tt-rss APP_BASE: "" updater: - enabled: false + enabled: true type: Deployment podSpec: containers: @@ -140,21 +134,21 @@ workload: liveness: type: exec command: - - /usr/bin/test - - -f - - "/var/www/html/tt-rss/lock/update_daemon.lock" + - /bin/sh + - -c + - test -f /var/www/html/tt-rss/lock/update_daemon.lock readiness: type: exec command: - - /usr/bin/test - - -f - - "/var/www/html/tt-rss/lock/update_daemon.lock" + - /bin/sh + - -c + - test -f /var/www/html/tt-rss/lock/update_daemon.lock startup: type: exec command: - - /usr/bin/test - - -f - - "/var/www/html/tt-rss/lock/update_daemon.lock" + - /bin/sh + - -c + - test -f /var/www/html/tt-rss/lock/update_daemon.lock env: TTRSS_SELF_URL_PATH: "" TTRSS_DB_NAME: "{{ .Values.cnpg.main.database }}"