From cde7d4651c12dceb3064e9a4a83db112051b7ecc Mon Sep 17 00:00:00 2001 From: Jamie Date: Thu, 11 Jan 2024 06:38:15 -0500 Subject: [PATCH] feat(authelia): Update authelia questions.yaml (#17082) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** add server buffers to questions.yaml for authelia ⚒️ Fixes # 17081 **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [ ] 🪛 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?** I am not sure how to test but the changes looked simple enough **📃 Notes:** N/A **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ 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 **➕ 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: Jamie --- charts/enterprise/authelia/Chart.yaml | 2 +- charts/enterprise/authelia/questions.yaml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/charts/enterprise/authelia/Chart.yaml b/charts/enterprise/authelia/Chart.yaml index ae2114fa1bb..463a676b6b6 100644 --- a/charts/enterprise/authelia/Chart.yaml +++ b/charts/enterprise/authelia/Chart.yaml @@ -1,7 +1,7 @@ kubeVersion: ">=1.24.0-0" apiVersion: v2 name: authelia -version: 22.1.9 +version: 22.2.0 appVersion: 4.37.5 description: Authelia is a Single Sign-On Multi-Factor portal for web apps home: https://truecharts.org/charts/enterprise/authelia diff --git a/charts/enterprise/authelia/questions.yaml b/charts/enterprise/authelia/questions.yaml index a4f77b755bc..f812c996668 100644 --- a/charts/enterprise/authelia/questions.yaml +++ b/charts/enterprise/authelia/questions.yaml @@ -73,6 +73,25 @@ questions: description: "json" - value: "text" description: "text" + - variable: server + group: "App Configuration" + label: "Server Configuration" + schema: + additional_attrs: true + type: dict + attrs: + - variable: write_buffer_size + label: "Write Buffer Size" + description: "Configures the maximum response size. The default of 4096 is generally sufficient for most use cases." + schema: + type: int + default: 4096 + - variable: read_buffer_size + label: "Read Buffer Size" + description: "Configures the maximum request size. The default of 4096 is generally sufficient for most use cases." + schema: + type: int + default: 4096 - variable: totp group: "App Configuration" label: "TOTP Configuration"