From 6d2f1de908ade86fd3e2d3e7b9895f45b48f5586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Sun, 6 Jul 2025 17:03:50 +0200 Subject: [PATCH] fix(charts): see image errors (#37060) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 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:** - [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 changes to the documentation - [ ] 🧪 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 - [x] 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._ --- charts/stable/ethercalc/Chart.yaml | 5 ++--- charts/stable/logitech-media-server/Chart.yaml | 4 ++-- charts/stable/meshroom/Chart.yaml | 2 +- charts/stable/meshroom/values.yaml | 2 +- charts/stable/pwm/Chart.yaml | 2 +- charts/stable/pwm/values.yaml | 4 ++-- charts/stable/youtransfer/Chart.yaml | 5 ++--- 7 files changed, 11 insertions(+), 13 deletions(-) diff --git a/charts/stable/ethercalc/Chart.yaml b/charts/stable/ethercalc/Chart.yaml index 84608bf24e3..d180e72c390 100644 --- a/charts/stable/ethercalc/Chart.yaml +++ b/charts/stable/ethercalc/Chart.yaml @@ -18,7 +18,7 @@ dependencies: alias: "" tags: [] import-values: [] -deprecated: false +deprecated: true description: EtherCalc is a web spreadsheet. home: https://truecharts.org/charts/stable/ethercalc icon: https://truecharts.org/img/hotlink-ok/chart-icons/ethercalc.webp @@ -38,5 +38,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/ethercalc - https://hub.docker.com/r/audreyt/ethercalc type: application -version: 8.0.3 - +version: 8.0.4 diff --git a/charts/stable/logitech-media-server/Chart.yaml b/charts/stable/logitech-media-server/Chart.yaml index 87ca99b4fed..d552f3032a0 100644 --- a/charts/stable/logitech-media-server/Chart.yaml +++ b/charts/stable/logitech-media-server/Chart.yaml @@ -18,7 +18,7 @@ dependencies: alias: "" tags: [] import-values: [] -deprecated: false +deprecated: true description: Logitech Media Server is a platform for home/office audio streaming. home: https://truecharts.org/charts/stable/logitech-media-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/logitech-media-server.webp @@ -38,5 +38,5 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/logitech-media-server - https://hub.docker.com/r/lmscommunity/logitechmediaserver type: application -version: 14.0.3 +version: 14.0.4 diff --git a/charts/stable/meshroom/Chart.yaml b/charts/stable/meshroom/Chart.yaml index 7450e25b9c0..2dd4bb1f782 100644 --- a/charts/stable/meshroom/Chart.yaml +++ b/charts/stable/meshroom/Chart.yaml @@ -35,5 +35,5 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/meshroom - https://hub.docker.com/r/alicevision/meshroom type: application -version: 12.0.3 +version: 12.0.4 diff --git a/charts/stable/meshroom/values.yaml b/charts/stable/meshroom/values.yaml index ae6b35cc3cd..e0565037efa 100644 --- a/charts/stable/meshroom/values.yaml +++ b/charts/stable/meshroom/values.yaml @@ -1,6 +1,6 @@ image: repository: docker.io/alicevision/meshroom - tag: version-2021.1.0-av2.4.0-centos7-cuda10.2 + tag: 2023.3.0-av3.2.0-centos7-cuda11.3.1@sha256:aa6750aacd95e1a0c03d4219bed49265ee46d28de565801e7a35ac46d67dbe35 pullPolicy: IfNotPresent service: main: diff --git a/charts/stable/pwm/Chart.yaml b/charts/stable/pwm/Chart.yaml index 4f8f609976d..a69debe1791 100644 --- a/charts/stable/pwm/Chart.yaml +++ b/charts/stable/pwm/Chart.yaml @@ -36,5 +36,5 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/pwm - https://quay.io/fjudith/pwm type: application -version: 8.0.3 +version: 8.0.4 diff --git a/charts/stable/pwm/values.yaml b/charts/stable/pwm/values.yaml index 6bd8c0a87c1..5ee80f16aa9 100644 --- a/charts/stable/pwm/values.yaml +++ b/charts/stable/pwm/values.yaml @@ -1,7 +1,7 @@ image: pullPolicy: IfNotPresent - repository: quay.io/fjudith/pwm - tag: latest@sha256:5842a0b60eb81b657417538fbb5c8b82d47e81f5c7c9f9149341dbf0918a5e6f + repository: docker.io/fjudith/pwm + tag: alpine@sha256:e56613b8867e80e8b525bfdf7404af344e1a4cf629b04e4e107428de9dfd569a persistence: appdata: enabled: true diff --git a/charts/stable/youtransfer/Chart.yaml b/charts/stable/youtransfer/Chart.yaml index abbc5d21636..47f1ea96cdf 100644 --- a/charts/stable/youtransfer/Chart.yaml +++ b/charts/stable/youtransfer/Chart.yaml @@ -18,7 +18,7 @@ dependencies: alias: "" tags: [] import-values: [] -deprecated: false +deprecated: true description: YouTransfer is a simple but elegant self-hosted file transfer sharing solution. home: https://truecharts.org/charts/stable/youtransfer icon: https://truecharts.org/img/hotlink-ok/chart-icons/youtransfer.webp @@ -37,5 +37,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/youtransfer - https://hub.docker.com/r/remie/youtransfer type: application -version: 10.0.3 - +version: 10.0.4