fix(sonarr) fix auth method and add docs (#13142)
**Description** - Update the auth method list and add the None for v3. - Left External as is and rename the description for both values for the respective versions. - Added docs to better explain the auth options and give a warning on using Basic. ⚒️ Fixes #11314 **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [X] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ 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 - [X] 📄 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 **➕ 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._
This commit is contained in:
parent
096b149425
commit
74e77e5e53
|
@ -22,7 +22,7 @@ sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/sonarr
|
- https://github.com/truecharts/charts/tree/master/charts/stable/sonarr
|
||||||
- https://github.com/Sonarr/Sonarr
|
- https://github.com/Sonarr/Sonarr
|
||||||
type: application
|
type: application
|
||||||
version: 16.0.0
|
version: 16.0.1
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Installation Notes
|
||||||
|
|
||||||
|
## Sonarr (v3)
|
||||||
|
|
||||||
|
The current stable version of Sonarr is v3. When configuring Sonarr v3, the default authentication method is `In-App Setting`. The available authentication methods for Sonarr v3 are as follows:
|
||||||
|
|
||||||
|
- **In-App Setting**: Allows users to make changes via the web GUI (Graphical User Interface).
|
||||||
|
- **None**: No authentication required.
|
||||||
|
- **Basic**: Basic username and password authentication.
|
||||||
|
- **Forms**: Form-based authentication.
|
||||||
|
|
||||||
|
For Sonarr v3, we strongly recommend using either "In-App Setting" or "None" for the authentication method.
|
||||||
|
|
||||||
|
:::warning
|
||||||
|
|
||||||
|
We strongly discourage the use of the "Basic" authentication method, as it may potentially impact system probes and security.
|
||||||
|
|
||||||
|
:::
|
|
@ -27,8 +27,8 @@ questions:
|
||||||
enum:
|
enum:
|
||||||
- value: ""
|
- value: ""
|
||||||
description: In-App Setting
|
description: In-App Setting
|
||||||
- value: External
|
- value: None
|
||||||
description: External/None
|
description: None
|
||||||
- value: Basic
|
- value: Basic
|
||||||
description: Basic
|
description: Basic
|
||||||
- value: Forms
|
- value: Forms
|
||||||
|
|
Loading…
Reference in New Issue