feat(authelia): Update authelia questions.yaml (#17082)

**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 <jamie@axelrtgs.com>
This commit is contained in:
Jamie 2024-01-11 06:38:15 -05:00 committed by GitHub
parent 7e0c9a152f
commit cde7d4651c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

View File

@ -1,7 +1,7 @@
kubeVersion: ">=1.24.0-0" kubeVersion: ">=1.24.0-0"
apiVersion: v2 apiVersion: v2
name: authelia name: authelia
version: 22.1.9 version: 22.2.0
appVersion: 4.37.5 appVersion: 4.37.5
description: Authelia is a Single Sign-On Multi-Factor portal for web apps description: Authelia is a Single Sign-On Multi-Factor portal for web apps
home: https://truecharts.org/charts/enterprise/authelia home: https://truecharts.org/charts/enterprise/authelia

View File

@ -73,6 +73,25 @@ questions:
description: "json" description: "json"
- value: "text" - value: "text"
description: "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 - variable: totp
group: "App Configuration" group: "App Configuration"
label: "TOTP Configuration" label: "TOTP Configuration"