From 37a9673754cd280b7bfe0a35a243f312ff5f0866 Mon Sep 17 00:00:00 2001 From: alfi0812 <43101280+alfi0812@users.noreply.github.com> Date: Thu, 9 May 2024 04:23:57 +0200 Subject: [PATCH] fix(speedtest-tracker): Add additional ENV as config options are depreciated (#21767) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Add additional ENV as config options are depreciated. **⚙️ 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 **🧪 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 - [ ] ⚠️ 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 - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ 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/speedtest-tracker/Chart.yaml | 2 +- charts/stable/speedtest-tracker/questions.yaml | 10 ++++++++++ charts/stable/speedtest-tracker/values.yaml | 2 ++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/charts/stable/speedtest-tracker/Chart.yaml b/charts/stable/speedtest-tracker/Chart.yaml index 3ed1620f17d11..8d33ae3bcc1b7 100644 --- a/charts/stable/speedtest-tracker/Chart.yaml +++ b/charts/stable/speedtest-tracker/Chart.yaml @@ -42,4 +42,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/speedtest-tracker - https://ghcr.io/linuxserver/speedtest-tracker type: application -version: 2.1.0 +version: 2.1.1 diff --git a/charts/stable/speedtest-tracker/questions.yaml b/charts/stable/speedtest-tracker/questions.yaml index 03012367b9e97..758473bec7af1 100644 --- a/charts/stable/speedtest-tracker/questions.yaml +++ b/charts/stable/speedtest-tracker/questions.yaml @@ -27,6 +27,16 @@ questions: schema: type: string default: "" + - variable: PUBLIC_DASHBOARD + label: "Enables the public dashboard for guest (unauthenticated) users" + schema: + type: boolean + default: false + - variable: APP_NAME + label: "Used to define the application's name in the dashboard and in notifications" + schema: + type: string + default: "Speedtest Tracker" - variable: mail label: Show Mail Server Settings schema: diff --git a/charts/stable/speedtest-tracker/values.yaml b/charts/stable/speedtest-tracker/values.yaml index f13e2d6f3815f..3b7d9a356bde8 100644 --- a/charts/stable/speedtest-tracker/values.yaml +++ b/charts/stable/speedtest-tracker/values.yaml @@ -93,3 +93,5 @@ workload: expandObjectName: false name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}' key: url + PUBLIC_DASHBOARD: true + APP_NAME: "Speedtest Tracker"