TrueChartsClone/charts/stable/plexanisync/questions.yaml

263 lines
8.9 KiB
YAML
Raw Normal View History

# Include{groups}
portals: {}
questions:
# Include{global}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}
# Include{containerBasic}
# Include{containerAdvanced}
- variable: plexanisync
group: App Configuration
label: PlexAniSync Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: interval
label: Interval
description: The time in between syncs in seconds.
schema:
type: int
default: 3600
min: 600
- variable: plex
label: Plex Integration
schema:
additional_attrs: true
type: dict
attrs:
migrate(plexanisync) migrate to new common (#10001) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [X] ⚠️ 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 - [ ] 📄 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._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-07-03 16:44:31 -04:00
- variable: anime_section
label: Anime Section
description: The libraries where your anime resides.
schema:
type: list
required: true
default: []
items:
migrate(plexanisync) migrate to new common (#10001) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [X] ⚠️ 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 - [ ] 📄 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._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-07-03 16:44:31 -04:00
- variable: anime_section_library_entry
label: Anime Section Library Entry
description: Single library per entry.
schema:
type: string
default: ""
required: true
- variable: plex_auth_method
label: Authentication Method
description: Select Direct if you plan to auth the admin user, select Myplex for all other home users.
schema:
type: string
required: true
default: direct
enum:
- value: direct
description: Direct
- value: myplex
description: MyPlex
- variable: plex_url
label: Plex URL
description: The address to your Plex Media Server.
schema:
type: string
show_if: [["plex_auth_method", "=", "direct"]]
required: true
default: ""
- variable: plex_token
label: Plex Token
schema:
type: string
show_if: [["plex_auth_method", "=", "direct"]]
required: true
private: true
default: ""
- variable: myplex_server_name
label: Plex Server Name
description: The name of your Plex Media Server.
schema:
type: string
show_if: [["plex_auth_method", "=", "myplex"]]
required: true
default: ""
- variable: myplex_user
label: My Plex User
schema:
type: string
show_if: [["plex_auth_method", "=", "myplex"]]
required: true
default: ""
- variable: myplex_token
label: My Plex Token
schema:
type: string
show_if: [["plex_auth_method", "=", "myplex"]]
required: true
private: true
default: ""
- variable: home_user_sync
label: Home User Sync
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: home_username
label: Home Username
schema:
type: string
required: true
default: ""
- variable: home_server_url
label: Home Server URL
schema:
type: string
required: true
default: ""
- variable: anilist
label: Anilist Integration
schema:
additional_attrs: true
type: dict
attrs:
- variable: ani_username
label: Ani UserName
description: Your AniList.co username.
schema:
type: string
required: true
default: ""
- variable: ani_token
label: Ani Token
description: Your AniList.co token.
schema:
type: string
max_length: 2000
required: true
private: true
default: ""
- variable: plex_ep_count_priority
label: Plex Episode Count Priority
description: Plex episode watched count will take priority over AniList.
schema:
type: boolean
default: false
- variable: skip_list_update
label: Skip List Update
description: Will NOT update your AniList which is useful if you want to do a test run.
schema:
type: boolean
default: false
- variable: log_failed_matches
label: Log Failed Matches
description: Enables logs to be written when matches fail.
schema:
type: boolean
default: true
- variable: custom-mappings
group: App Configuration
label: Custom Mappings
schema:
additional_attrs: true
type: dict
attrs:
- variable: remote_urls
label: Remote URLs
schema:
type: list
default: []
items:
- variable: remote_url_entry
label: Remote URL
schema:
type: string
required: true
default: ""
- variable: entries
label: Entries
schema:
type: list
default: []
items:
- variable: entry
label: entry
schema:
additional_attrs: true
type: dict
attrs:
- variable: title
label: Title
schema:
type: string
required: true
default: ""
- variable: seasons
label: Seasons
schema:
type: list
default: []
items:
- variable: season_entry
label: Season Entry
schema:
additional_attrs: true
type: dict
attrs:
- variable: season
label: Season
schema:
type: int
required: true
- variable: anilist_id
label: ANI List ID
schema:
type: int
required: true
- variable: synonyms
label: Synonyms
schema:
type: list
default: []
items:
- variable: synonym
label: Synonym
schema:
type: string
required: true
default: ""
feat(plexanisync) move plexanisync to stable (#12017) **Description** Move plexanisync to stable. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ 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?** <!-- 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 - [ ] 📄 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._
2023-08-29 13:17:16 -04:00
# Include{containerConfig}
# Include{podOptions}
fix(scale-gui): replace serviceexpert with externalinterfaces/networking-group in the SCALE GUI (#21154) **Description** Seems this was missing in the gui by accident **⚙️ Type of change** - [ ] ⚙️ 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?** <!-- 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] 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._
2024-04-22 08:11:52 -04:00
# Include{externalInterfaces}
# Include{serviceList}
# Include{persistenceList}
fix(stable): already adapt questions.yaml GUI to prevent tests from needlessly failing for unported charts (#8720) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ 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?** <!-- 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ 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: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-05-03 04:30:22 -04:00
# Include{securityContextRoot}
- variable: runAsUser
label: "runAsUser"
description: "The UserID of the user running the application"
schema:
type: int
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID of the user running the application"
schema:
type: int
default: 0
2023-03-01 03:30:36 -05:00
# Include{securityContextContainer}
# Include{securityContextAdvanced}
# Include{securityContextPod}
fix(stable): already adapt questions.yaml GUI to prevent tests from needlessly failing for unported charts (#8720) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ 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?** <!-- 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ 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: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-05-03 04:30:22 -04:00
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
schema:
type: int
default: 568
# Include{resources}
# Include{advanced}
# Include{addons}
# Include{codeserver}
2023-03-01 03:30:36 -05:00
# Include{netshoot}
# Include{vpn}
# Include{documentation}