**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._
278 lines
14 KiB
YAML
278 lines
14 KiB
YAML
# Include{groups}
|
|
portals: {}
|
|
questions:
|
|
# Include{global}
|
|
# Include{credentials}
|
|
# Include{workload}
|
|
# Include{workloadDeployment}
|
|
# Include{replicas1}
|
|
# Include{podSpec}
|
|
# Include{containerMain}
|
|
- variable: env
|
|
group: "App Configuration"
|
|
label: "Image Environment"
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: EULA
|
|
label: Minecraft Eula
|
|
schema:
|
|
type: boolean
|
|
required: true
|
|
default: false
|
|
- variable: ENABLE_LAN_VISIBILITY
|
|
label: Enable Lan Visibility
|
|
schema:
|
|
type: boolean
|
|
default: false
|
|
- variable: VERSION
|
|
label: "Minecraft version"
|
|
description: "Options: LATEST, PREVIOUS or version number"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "LATEST"
|
|
- variable: SERVER_NAME
|
|
label: "Server Name"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "Dedicated Server on TrueNAS Scale!"
|
|
- variable: GAMEMODE
|
|
label: "Default gamemode"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "survival"
|
|
enum:
|
|
- value: "survival"
|
|
description: "Survival"
|
|
- value: "creative"
|
|
description: "Creative"
|
|
- value: "adventure"
|
|
description: "Adventure"
|
|
- value: "spectator"
|
|
description: "Spectator"
|
|
- variable: DIFFICULTY
|
|
label: "Difficulty"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "easy"
|
|
enum:
|
|
- value: "peaceful"
|
|
description: "Peaceful"
|
|
- value: "easy"
|
|
description: "Easy"
|
|
- value: "normal"
|
|
description: "Normal"
|
|
- value: "hard"
|
|
description: "Hard"
|
|
- variable: LEVEL_TYPE
|
|
label: "Level type"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "DEFAULT"
|
|
enum:
|
|
- value: "DEFAULT"
|
|
description: "Default"
|
|
- value: "FLAT"
|
|
description: "Flat"
|
|
- value: "LEGACY"
|
|
description: "Legacy"
|
|
- variable: ALLOW_CHEATS
|
|
label: "Enable/Disable Cheats"
|
|
schema:
|
|
type: boolean
|
|
default: false
|
|
- variable: MAX_PLAYERS
|
|
label: "Max players"
|
|
schema:
|
|
type: int
|
|
min: 1
|
|
required: true
|
|
default: 10
|
|
- variable: ONLINE_MODE
|
|
label: "Online mode"
|
|
schema:
|
|
type: boolean
|
|
default: true
|
|
- variable: WHITE_LIST
|
|
label: "White list"
|
|
schema:
|
|
type: boolean
|
|
default: false
|
|
- variable: WHITE_LIST_USERS
|
|
label: "White List Users"
|
|
description: "A user:xuid comma separated list."
|
|
schema:
|
|
type: string
|
|
default: ""
|
|
show_if: [[WHITE_LIST, "=", true]]
|
|
- variable: OPS
|
|
label: "OPS"
|
|
description: "To OP a player, use the XUID value, not the player's username. Multiple values accepted in this format `XUID,XUID` separated by a comma."
|
|
schema:
|
|
type: string
|
|
default: ""
|
|
- variable: VIEW_DISTANCE
|
|
label: "View distance"
|
|
schema:
|
|
type: int
|
|
min: 1
|
|
required: true
|
|
default: 32
|
|
- variable: TICK_DISTANCE
|
|
label: "Tick distance"
|
|
schema:
|
|
type: int
|
|
min: 1
|
|
required: true
|
|
default: 4
|
|
- variable: PLAYER_IDLE_TIMEOUT
|
|
label: "Player idle timeout"
|
|
schema:
|
|
type: int
|
|
min: 0
|
|
required: true
|
|
default: 30
|
|
- variable: MAX_THREADS
|
|
label: "Max threads"
|
|
schema:
|
|
type: int
|
|
min: 0
|
|
required: true
|
|
default: 8
|
|
- variable: LEVEL_NAME
|
|
label: "Level name"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "Bedrock level"
|
|
- variable: LEVEL_SEED
|
|
label: "Level seed"
|
|
schema:
|
|
type: string
|
|
default: ""
|
|
- variable: DEFAULT_PLAYER_PERMISSION_LEVEL
|
|
label: "Default player permission level"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "member"
|
|
enum:
|
|
- value: "visitor"
|
|
description: "Visitor"
|
|
- value: "member"
|
|
description: "Member"
|
|
- value: "operator"
|
|
description: "Operator"
|
|
- variable: TEXTUREPACK_REQUIRED
|
|
label: "Require texturepack"
|
|
schema:
|
|
type: boolean
|
|
default: false
|
|
- variable: SERVER_AUTHORITATIVE_MOVEMENT
|
|
label: "Server authoritave movement"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "server-auth"
|
|
enum:
|
|
- value: "client-auth"
|
|
description: "client-auth"
|
|
- value: "server-auth"
|
|
description: "server-auth"
|
|
- value: "server-auth-with-rewind"
|
|
description: "server-auth-with-rewind"
|
|
- variable: PLAYER_MOVEMENT_SCORE_THRESHOLD
|
|
label: "Player movement score threshold"
|
|
schema:
|
|
type: int
|
|
min: 1
|
|
required: true
|
|
default: 20
|
|
- variable: PLAYER_MOVEMENT_DISTANCE_THRESHOLD
|
|
label: "Player movement distance threshold"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: "0.3"
|
|
- variable: PLAYER_MOVEMENT_DURATION_THRESHOLD_IN_MS
|
|
label: "Player movement duration threshold in MS"
|
|
schema:
|
|
type: int
|
|
min: 1
|
|
required: true
|
|
default: 500
|
|
- variable: CORRECT_PLAYER_MOVEMENT
|
|
label: "Enable/Disable Player movement correction"
|
|
schema:
|
|
type: boolean
|
|
default: false
|
|
# Include{containerBasic}
|
|
# Include{containerAdvanced}
|
|
# Include{containerConfig}
|
|
# Include{podOptions}
|
|
# Include{serviceRoot}
|
|
# Include{serviceMain}
|
|
# Include{serviceSelectorLoadBalancer}
|
|
# Include{serviceSelectorExtras}
|
|
- variable: main
|
|
label: "Main Service Port Configuration"
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: port
|
|
label: "Port"
|
|
description: "This port exposes the container port on the service"
|
|
schema:
|
|
type: int
|
|
default: 19132
|
|
required: true
|
|
# Include{externalInterfaces}
|
|
|
|
# Include{serviceList}
|
|
# Include{persistenceRoot}
|
|
- variable: config
|
|
label: "App Config Storage"
|
|
description: "Stores the Application Configuration."
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
# Include{persistenceBasic}
|
|
# Include{persistenceList}
|
|
# Include{securityContextRoot}
|
|
- variable: runAsUser
|
|
label: "runAsUser"
|
|
description: "The UserID of the user running the application"
|
|
schema:
|
|
type: int
|
|
default: 568
|
|
- variable: runAsGroup
|
|
label: "runAsGroup"
|
|
description: "The groupID this App of the user running the application"
|
|
schema:
|
|
type: int
|
|
default: 568
|
|
# 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}
|