From 363b4dbd44e2844f3fcc22c9c4fd3346a2ff96a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Sat, 22 Feb 2025 14:26:07 +0100 Subject: [PATCH] fix(charts): Broken images (#32433) 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 - [ ] 👀 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/amule/Chart.yaml | 2 +- charts/stable/amule/values.yaml | 2 +- charts/stable/dokuwiki/Chart.yaml | 2 +- charts/stable/dokuwiki/values.yaml | 2 +- charts/stable/kodi-headless/Chart.yaml | 2 +- charts/stable/kodi-headless/values.yaml | 2 +- charts/stable/minecraft-bedrock/Chart.yaml | 2 +- charts/stable/minecraft-bedrock/values.yaml | 4 ++-- charts/stable/minecraft-proxy/Chart.yaml | 2 +- charts/stable/minecraft-proxy/values.yaml | 6 +++--- charts/stable/minecraft-router/Chart.yaml | 2 +- charts/stable/minecraft-router/values.yaml | 2 +- charts/stable/phpmyadmin/Chart.yaml | 2 +- charts/stable/phpmyadmin/values.yaml | 4 ++-- charts/stable/rcon-webadmin/Chart.yaml | 2 +- charts/stable/rcon-webadmin/values.yaml | 7 ++----- charts/stable/rstudio/Chart.yaml | 2 +- charts/stable/rstudio/values.yaml | 4 ++-- charts/stable/storj-node/Chart.yaml | 2 +- charts/stable/storj-node/values.yaml | 4 ++-- 20 files changed, 27 insertions(+), 30 deletions(-) diff --git a/charts/stable/amule/Chart.yaml b/charts/stable/amule/Chart.yaml index c8ce7cf2f69..31976c31787 100644 --- a/charts/stable/amule/Chart.yaml +++ b/charts/stable/amule/Chart.yaml @@ -35,4 +35,4 @@ sources: - https://github.com/ngosang/docker-amule - https://github.com/truecharts/charts/tree/master/charts/stable/amule type: application -version: 10.3.1 +version: 10.3.2 diff --git a/charts/stable/amule/values.yaml b/charts/stable/amule/values.yaml index b0e654c45a5..21be8196db2 100644 --- a/charts/stable/amule/values.yaml +++ b/charts/stable/amule/values.yaml @@ -1,7 +1,7 @@ image: pullPolicy: IfNotPresent repository: ghcr.io/ngosang/amule - tag: 2.3.3-18test@sha256:3ef93d32a37bf73b22330b310112b4db42b78514930e217a3040980c4f36ee80 + tag: 2.3.3-19@sha256:172bc19dbe72ab35149781aaf268f204bb0663716b2619917a3d15e65b0900bd securityContext: container: readOnlyRootFilesystem: false diff --git a/charts/stable/dokuwiki/Chart.yaml b/charts/stable/dokuwiki/Chart.yaml index b50a4d5583d..db872e6fd93 100644 --- a/charts/stable/dokuwiki/Chart.yaml +++ b/charts/stable/dokuwiki/Chart.yaml @@ -31,4 +31,4 @@ sources: - https://gallery.ecr.aws/bitnami/dokuwiki - https://github.com/truecharts/charts/tree/master/charts/stable/dokuwiki type: application -version: 13.5.1 +version: 13.5.2 diff --git a/charts/stable/dokuwiki/values.yaml b/charts/stable/dokuwiki/values.yaml index b536484b28e..5ae77f074e2 100644 --- a/charts/stable/dokuwiki/values.yaml +++ b/charts/stable/dokuwiki/values.yaml @@ -1,5 +1,5 @@ image: - repository: public.ecr.aws/bitnami/dokuwiki + repository: docker.io/bitnami/dokuwiki pullPolicy: IfNotPresent tag: 20240206.1.0@sha256:07c6e4629c248d8383938ee42a6cdfc2f39aef41f75fea19889f3bd853eb3caf securityContext: diff --git a/charts/stable/kodi-headless/Chart.yaml b/charts/stable/kodi-headless/Chart.yaml index a9766f64859..74955d74874 100644 --- a/charts/stable/kodi-headless/Chart.yaml +++ b/charts/stable/kodi-headless/Chart.yaml @@ -31,4 +31,4 @@ sources: - https://fleet.linuxserver.io/image?name=linuxserver/kodi-headless - https://github.com/truecharts/charts/tree/master/charts/stable/kodi-headless type: application -version: 11.5.1 +version: 11.5.2 diff --git a/charts/stable/kodi-headless/values.yaml b/charts/stable/kodi-headless/values.yaml index ec1a6363d6a..cc952d83548 100644 --- a/charts/stable/kodi-headless/values.yaml +++ b/charts/stable/kodi-headless/values.yaml @@ -1,5 +1,5 @@ image: - repository: lscr.io/linuxserver/kodi-headless + repository: docker.io/linuxserver/kodi-headless pullPolicy: IfNotPresent tag: 190@sha256:b3180a9a7cd7066b80d14bade1ccba5457ca7a4dc242c0ba7e93459ae1ebcf28 service: diff --git a/charts/stable/minecraft-bedrock/Chart.yaml b/charts/stable/minecraft-bedrock/Chart.yaml index 091b2effe03..91affefdbd2 100644 --- a/charts/stable/minecraft-bedrock/Chart.yaml +++ b/charts/stable/minecraft-bedrock/Chart.yaml @@ -32,4 +32,4 @@ sources: - https://github.com/itzg/docker-minecraft-server - https://github.com/truecharts/charts/tree/master/charts/stable/minecraft-bedrock type: application -version: 10.5.1 +version: 10.5.2 diff --git a/charts/stable/minecraft-bedrock/values.yaml b/charts/stable/minecraft-bedrock/values.yaml index 481b740d69e..f720a1308c5 100644 --- a/charts/stable/minecraft-bedrock/values.yaml +++ b/charts/stable/minecraft-bedrock/values.yaml @@ -1,6 +1,6 @@ image: - repository: ghcr.io/itzg/minecraft-bedrock-server - tag: latest@sha256:e2227631afbfa4db1ad32e142cde25bfb11770b933e7c0b2d342cb8e8408dcda + repository: docker.io/itzg/minecraft-bedrock-server + tag: latest@sha256:fdbdb03d45593d9d5f26d524b0f59af605020e9f5da0c97a9062cdfa7360596f pullPolicy: Always service: main: diff --git a/charts/stable/minecraft-proxy/Chart.yaml b/charts/stable/minecraft-proxy/Chart.yaml index 8936785e2eb..046dfbd29c4 100644 --- a/charts/stable/minecraft-proxy/Chart.yaml +++ b/charts/stable/minecraft-proxy/Chart.yaml @@ -35,4 +35,4 @@ sources: - https://github.com/itzg/docker-mc-proxy - https://github.com/truecharts/charts/tree/master/charts/stable/minecraft-proxy type: application -version: 1.3.1 +version: 1.3.2 diff --git a/charts/stable/minecraft-proxy/values.yaml b/charts/stable/minecraft-proxy/values.yaml index 64ade95d6b3..900285f8b70 100644 --- a/charts/stable/minecraft-proxy/values.yaml +++ b/charts/stable/minecraft-proxy/values.yaml @@ -1,14 +1,14 @@ image: repository: ghcr.io/itzg/mc-proxy - tag: java21-2024.6.0@sha256:26dbf2405bc75d9cc21e8c52ee767c9c72b50e2f409cbd8e39221fa410e26150 + tag: java21-2025.1.0@sha256:f47b506dcd5f841f24e7352b26cc50a335f2c6bff6bea44093c5684d3a22f05b pullPolicy: Always j11Image: repository: ghcr.io/itzg/mc-proxy - tag: java11-2024.6.0@sha256:185b4ef86234965aa95902e89f398015044fbb3b1084606b7f2eb772d87bee25 + tag: java11-2025.1.0@sha256:67fece141aa6f8c8d7b8c04e9cb04d53964de1f14667452fb454f674f141d42c pullPolicy: Always j8Image: repository: ghcr.io/itzg/mc-proxy - tag: java8-2022.4.1@sha256:e72d8dae94476695b8d7b7d0d4093d57ce4dc4d7dc54fd08e8d386ad75c62a05 + tag: java8-2025.1.0@sha256:b4f65bb8e38744298877bcc3010b069143436f0db2736edbe630dbdf9004dd7f pullPolicy: Always service: main: diff --git a/charts/stable/minecraft-router/Chart.yaml b/charts/stable/minecraft-router/Chart.yaml index 57895bfe8a0..3b6589b2427 100644 --- a/charts/stable/minecraft-router/Chart.yaml +++ b/charts/stable/minecraft-router/Chart.yaml @@ -34,4 +34,4 @@ sources: - https://github.com/itzg/mc-router - https://github.com/truecharts/charts/tree/master/charts/stable/minecraft-router type: application -version: 1.5.1 +version: 1.5.2 diff --git a/charts/stable/minecraft-router/values.yaml b/charts/stable/minecraft-router/values.yaml index 4216ec9d713..251216f0df8 100644 --- a/charts/stable/minecraft-router/values.yaml +++ b/charts/stable/minecraft-router/values.yaml @@ -1,5 +1,5 @@ image: - repository: ghcr.io/itzg/mc-router + repository: docker.io/itzg/mc-router pullPolicy: IfNotPresent tag: 1.25.1@sha256:cc46cf5122c87305640720831758bf711d18ae2debc2e4afbc59c8e6622e2908 service: diff --git a/charts/stable/phpmyadmin/Chart.yaml b/charts/stable/phpmyadmin/Chart.yaml index eebc7da7b18..dab48fb5cc5 100644 --- a/charts/stable/phpmyadmin/Chart.yaml +++ b/charts/stable/phpmyadmin/Chart.yaml @@ -33,4 +33,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/phpmyadmin - https://quay.io/phpmyadmin/phpmyadmin type: application -version: 7.5.2 +version: 7.5.3 diff --git a/charts/stable/phpmyadmin/values.yaml b/charts/stable/phpmyadmin/values.yaml index 9db010428cd..f8db230aeac 100644 --- a/charts/stable/phpmyadmin/values.yaml +++ b/charts/stable/phpmyadmin/values.yaml @@ -1,7 +1,7 @@ image: pullPolicy: IfNotPresent - repository: quay.io/phpmyadmin/phpmyadmin - tag: 5.2.2@sha256:95e01f723b5e55fabf16d0473f1df2354c4c6352b35902b51d6a6245e074aee4 + repository: docker.io/phpmyadmin + tag: 5.2.2@sha256:b8e9de0186fe7e12e3a9565432c9faf6e8f0ec0f78f07bc3625910fd130afb99 portal: open: enabled: true diff --git a/charts/stable/rcon-webadmin/Chart.yaml b/charts/stable/rcon-webadmin/Chart.yaml index aeb69c66efa..78365024b5c 100644 --- a/charts/stable/rcon-webadmin/Chart.yaml +++ b/charts/stable/rcon-webadmin/Chart.yaml @@ -34,4 +34,4 @@ sources: - https://github.com/rcon-web-admin/rcon-web-admin - https://github.com/truecharts/charts/tree/master/charts/stable/rcon-webadmin type: application -version: 10.5.1 +version: 10.5.2 diff --git a/charts/stable/rcon-webadmin/values.yaml b/charts/stable/rcon-webadmin/values.yaml index 4892bc31a64..01bf33f0030 100644 --- a/charts/stable/rcon-webadmin/values.yaml +++ b/charts/stable/rcon-webadmin/values.yaml @@ -1,7 +1,7 @@ image: pullPolicy: IfNotPresent - repository: ghcr.io/itzg/rcon - tag: 0.14.1-1@sha256:4bec01981dc95e14f54c243ced5db23591c67e5a63d474a3f4f8acda72ce5a28 + repository: docker.io/itzg/rcon + tag: latest@sha256:c9521f333bf9eaedf2db0acd750e67be88eaaa9c5e9026385bd875dc18a49110 rcon: rwa_admin: true rwa_env: false @@ -30,9 +30,6 @@ service: port: 4327 protocol: tcp targetPort: 4327 -ingress: - websocketaccess: - autoLink: true persistence: db: enabled: true diff --git a/charts/stable/rstudio/Chart.yaml b/charts/stable/rstudio/Chart.yaml index 60896f4ec0b..38b76f68b48 100644 --- a/charts/stable/rstudio/Chart.yaml +++ b/charts/stable/rstudio/Chart.yaml @@ -33,4 +33,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/rstudio - https://quay.io/rocker/rstudio type: application -version: 8.5.1 +version: 8.5.2 diff --git a/charts/stable/rstudio/values.yaml b/charts/stable/rstudio/values.yaml index 55acd70616a..6903f1698d2 100644 --- a/charts/stable/rstudio/values.yaml +++ b/charts/stable/rstudio/values.yaml @@ -1,7 +1,7 @@ image: pullPolicy: IfNotPresent - repository: quay.io/rocker/rstudio - tag: 4.4.2@sha256:050e232046d8a8681d84444498a48afadfa7900fa783be5ec3ed9f4eb9f3ceb0 + repository: ghcr.io/rocker-org/rstudio + tag: 4.4.2@sha256:58fe5df4df01791d312d0c6b27043526579551ceba64232387320b916837085a persistence: config: enabled: true diff --git a/charts/stable/storj-node/Chart.yaml b/charts/stable/storj-node/Chart.yaml index a5168a53766..9233a8b2eda 100644 --- a/charts/stable/storj-node/Chart.yaml +++ b/charts/stable/storj-node/Chart.yaml @@ -34,4 +34,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/storj-node - https://quay.io/storjlabs/storagenode type: application -version: 11.5.1 +version: 11.5.2 diff --git a/charts/stable/storj-node/values.yaml b/charts/stable/storj-node/values.yaml index 1dc71776787..6ed788ab568 100644 --- a/charts/stable/storj-node/values.yaml +++ b/charts/stable/storj-node/values.yaml @@ -1,6 +1,6 @@ image: - repository: quay.io/storjlabs/storagenode - tag: 6f87ea801-v1.71.2-go1.18.8@sha256:ca755aa0de7f30f5451826a564ea4d633d236724e2626c3939fcdba367d362e5 + repository: docker.io/storjlabs/storagenode + tag: latest@sha256:21ca0ac819d1d66240830d28097eeb693923e51383aa3bb07bf823f9fad1f6e9 pullPolicy: IfNotPresent service: main: