02e10381ac
**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 - [ ] 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._
264 lines
8.9 KiB
YAML
264 lines
8.9 KiB
YAML
# Include{groups}
|
|
portals: {}
|
|
questions:
|
|
# Include{global}
|
|
# Include{credentials}
|
|
# 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:
|
|
- variable: anime_section
|
|
label: Anime Section
|
|
description: The libraries where your anime resides.
|
|
schema:
|
|
type: list
|
|
required: true
|
|
default: []
|
|
items:
|
|
- 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: ""
|
|
# Include{containerConfig}
|
|
# Include{podOptions}
|
|
# Include{externalInterfaces}
|
|
|
|
# Include{serviceList}
|
|
# Include{persistenceList}
|
|
# 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
|
|
# Include{securityContextContainer}
|
|
# Include{securityContextAdvanced}
|
|
# Include{securityContextPod}
|
|
- 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}
|
|
# Include{netshoot}
|
|
# Include{vpn}
|
|
# Include{documentation}
|