From 91ac1b40a22713010c8c729aaac2a4d1edb120a0 Mon Sep 17 00:00:00 2001 From: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> Date: Sun, 1 Feb 2026 20:27:44 +0100 Subject: [PATCH] BREAKING CHANGE(kopia): port and persistence (#44427) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** In the new trueforge container ENV are set as follow: https://github.com/trueforge-org/containerforge/blob/main/apps/kopia/Dockerfile this is now implemented in this chart ⚒️ Fixes # https://github.com/trueforge-org/containerforge/issues/942 **⚙️ 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 - [ ] 📜 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 - [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/kopia/Chart.yaml | 2 +- charts/stable/kopia/ci/test-values.yaml | 10 ---------- charts/stable/kopia/values.yaml | 12 ++++++------ 3 files changed, 7 insertions(+), 17 deletions(-) delete mode 100644 charts/stable/kopia/ci/test-values.yaml diff --git a/charts/stable/kopia/Chart.yaml b/charts/stable/kopia/Chart.yaml index b78bbaf8c7a..f3a12f36cb0 100644 --- a/charts/stable/kopia/Chart.yaml +++ b/charts/stable/kopia/Chart.yaml @@ -35,5 +35,5 @@ sources: - https://github.com/trueforge-org/truecharts/tree/master/charts/stable/kopia - https://kopia.io/docs/installation/#docker-images type: application -version: 26.2.21 +version: 27.0.0 diff --git a/charts/stable/kopia/ci/test-values.yaml b/charts/stable/kopia/ci/test-values.yaml deleted file mode 100644 index 3d8a16608ab..00000000000 --- a/charts/stable/kopia/ci/test-values.yaml +++ /dev/null @@ -1,10 +0,0 @@ -workload: - main: - podSpec: - containers: - main: - args: - - server - - start - - --address=http://0.0.0.0:10238 - - --insecure diff --git a/charts/stable/kopia/values.yaml b/charts/stable/kopia/values.yaml index 31c3926ce90..39729cf5ae7 100644 --- a/charts/stable/kopia/values.yaml +++ b/charts/stable/kopia/values.yaml @@ -1,13 +1,13 @@ image: repository: oci.trueforge.org/containerforge/kopia - tag: 0.22.3@sha256:f6fe7a8d1f048164203c05e1f8ead63d3ef807df93a92fbb57ef1eb7447300f6 + tag: 0.22.3@sha256:95d9cc5eba6845d5323958114035c316bce8c7d0c45324ce80924591e273bff4 pullPolicy: IfNotPresent service: main: ports: main: protocol: http - port: 10238 + port: 51515 kopia: user: "user" @@ -37,13 +37,13 @@ workload: persistence: config: enabled: true - mountPath: "/app/config" + mountPath: "/config" cache: enabled: true - mountPath: "/app/cache" + mountPath: "/config/cache" logs: enabled: true - mountPath: "/app/logs" + mountPath: "/config/logs" rclone: enabled: true - mountPath: "/app/rclone" + mountPath: "/config/rclone"