From 46c2976f96f0808019fe0f0b260692c9bb0521de Mon Sep 17 00:00:00 2001 From: Jakob Bouchard Date: Wed, 14 Feb 2024 06:11:42 -0500 Subject: [PATCH] fix(actualserver): fix actualserver mountPaths **BREAKING CHANGES** (#18237) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes #18235 Changes the mountPaths from `/app/...` to `/data/...`. **⚙️ 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?** I have tested manually changing the options in the current app installation I have, as well as mounting the paths as additional app storage. **✔️ 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 - [x] ⬆️ I increased versions for any altered app according to semantic versioning --- _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: Jakob Bouchard Co-authored-by: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> --- charts/stable/actualserver/Chart.yaml | 2 +- charts/stable/actualserver/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/stable/actualserver/Chart.yaml b/charts/stable/actualserver/Chart.yaml index 25250beae40..ec4bea2deae 100644 --- a/charts/stable/actualserver/Chart.yaml +++ b/charts/stable/actualserver/Chart.yaml @@ -34,4 +34,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/actualserver - https://ghcr.io/actualbudget/actual-server type: application -version: 8.1.0 +version: 9.0.0 diff --git a/charts/stable/actualserver/values.yaml b/charts/stable/actualserver/values.yaml index 527502941ef..bd6bb4ea8a1 100644 --- a/charts/stable/actualserver/values.yaml +++ b/charts/stable/actualserver/values.yaml @@ -34,10 +34,10 @@ service: persistence: server-files: enabled: true - mountPath: /app/server-files + mountPath: /data/server-files user-files: enabled: true - mountPath: /app/user-files + mountPath: /data/user-files portal: open: enabled: true