From bf0cda4cb2c8cc8bede1a70d43467ce44c9544f8 Mon Sep 17 00:00:00 2001 From: waflint <94139453+waflint@users.noreply.github.com> Date: Sat, 22 Jul 2023 04:52:26 -0400 Subject: [PATCH] fix(komga) update internal ports for 1.x (#10703) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** updates internal port from `8080` to `25600` per [breaking changes note](https://komga.org/blog/prepare-v1/#breaking-changes) on Komga's 1.x announcement submitting as a fix for blocked PR [10330](https://github.com/truecharts/charts/pull/10330) based on recommendation from the truecharts discord ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [x] ⚠️ 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:** - [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 - [x] ⚠️ 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._ --------- Signed-off-by: TrueCharts-Bot Signed-off-by: waflint <94139453+waflint@users.noreply.github.com> Co-authored-by: TrueCharts-Admin Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> --- charts/stable/komga/Chart.yaml | 4 ++-- charts/stable/komga/values.yaml | 24 ++++++++++++++++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/charts/stable/komga/Chart.yaml b/charts/stable/komga/Chart.yaml index d4f4b46cb19..4bcdc8e6391 100644 --- a/charts/stable/komga/Chart.yaml +++ b/charts/stable/komga/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: "0.165.0" +appVersion: "1.2.1" dependencies: - name: common repository: https://library-charts.truecharts.org @@ -22,7 +22,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/komga - https://komga.org/ - https://github.com/gotson/komga -version: 9.0.24 +version: 9.0.25 annotations: truecharts.org/catagories: | - media diff --git a/charts/stable/komga/values.yaml b/charts/stable/komga/values.yaml index 848a5dfc85b..d3975a338e8 100644 --- a/charts/stable/komga/values.yaml +++ b/charts/stable/komga/values.yaml @@ -1,13 +1,32 @@ image: repository: tccr.io/truecharts/komga - tag: 0.165.0@sha256:e92ff881c6d6c4948abc0218bc23a16e63ebd819cd65eafef9c8e8d958bba22a + tag: v1.2.1@sha256:6d68464cca11eb7dd3ddbe5c6189f2b001cf87dbaeeb89bf2cdf7a41dd551b94 pullPolicy: IfNotPresent + +workload: + main: + podSpec: + containers: + main: + env: + SERVER_PORT: "{{ .Values.service.main.ports.main.port }}" + probes: + liveness: + port: "{{ .Values.service.main.ports.main.port }}" + path: /actuator/health + readiness: + port: "{{ .Values.service.main.ports.main.port }}" + path: /actuator/health + startup: + type: tcp + port: "{{ .Values.service.main.ports.main.port }}" + service: main: ports: main: port: 10085 - targetPort: 8080 + persistence: config: enabled: true @@ -15,6 +34,7 @@ persistence: data: enabled: true mountPath: "/data" + portal: open: enabled: true