questions.yaml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. groups:
  2. - name: Palworld Configuration
  3. description: Configure Palworld
  4. - name: User and Group Configuration
  5. description: Configure User and Group for Palworld
  6. - name: Network Configuration
  7. description: Configure Network for Palworld
  8. - name: Storage Configuration
  9. description: Configure Storage for Palworld
  10. - name: Resources Configuration
  11. description: Configure Resources for Palworld
  12. questions:
  13. - variable: palworldConfig
  14. label: ""
  15. group: Palworld Configuration
  16. schema:
  17. type: dict
  18. attrs:
  19. - variable: adminPassword
  20. label: Admin Password
  21. description: Your server admin password
  22. schema:
  23. type: string
  24. private: true
  25. default: ""
  26. - variable: gameParams
  27. label: Game Parameters
  28. description: |
  29. Enter your game parameters </br>
  30. Format: EpicApp=PalServer
  31. schema:
  32. type: list
  33. default:
  34. - EpicApp=PalServer
  35. items:
  36. - variable: gameParam
  37. label: Game Parameter
  38. schema:
  39. type: string
  40. required: true
  41. - variable: gameParamsExtra
  42. label: Extra Game Parameters
  43. description: |
  44. Enter your extra game parameters </br>
  45. Format: -NoAsyncLoadingThread
  46. schema:
  47. type: list
  48. default:
  49. - -useperfthreads
  50. - -NoAsyncLoadingThread
  51. - -UseMultithreadForDS
  52. items:
  53. - variable: gameParamExtra
  54. label: Extra Game Parameter
  55. schema:
  56. type: string
  57. required: true
  58. - variable: updatePublicIP
  59. label: Update Public IP
  60. description: |
  61. If enabled the container will check on each container
  62. start if the Public IP is still valid.
  63. schema:
  64. type: boolean
  65. default: false
  66. - variable: validate
  67. label: Validate
  68. description: If enabled the container validates the game data
  69. schema:
  70. type: boolean
  71. default: false
  72. - variable: username
  73. label: Username
  74. description: Leave blank for anonymous login
  75. schema:
  76. type: string
  77. default: ""
  78. - variable: password
  79. label: Password
  80. description: Leave blank for anonymous login
  81. schema:
  82. type: string
  83. default: ""
  84. show_if: [["username", "!=", ""]]
  85. private: true
  86. - variable: additionalEnvs
  87. label: Additional Environment Variables
  88. description: Configure additional environment variables for Palworld.
  89. schema:
  90. type: list
  91. default: []
  92. items:
  93. - variable: env
  94. label: Environment Variable
  95. schema:
  96. type: dict
  97. attrs:
  98. - variable: name
  99. label: Name
  100. schema:
  101. type: string
  102. required: true
  103. - variable: value
  104. label: Value
  105. schema:
  106. type: string
  107. required: true
  108. - variable: palworldID
  109. label: ""
  110. group: User and Group Configuration
  111. schema:
  112. type: dict
  113. attrs:
  114. - variable: user
  115. label: User ID
  116. description: The user id that Palworld files will be owned by.
  117. schema:
  118. type: int
  119. min: 568
  120. default: 568
  121. required: true
  122. - variable: group
  123. label: Group ID
  124. description: The group id that Palworld files will be owned by.
  125. schema:
  126. type: int
  127. min: 568
  128. default: 568
  129. required: true
  130. - variable: palworldNetwork
  131. label: ""
  132. group: Network Configuration
  133. schema:
  134. type: dict
  135. attrs:
  136. - variable: serverPort
  137. label: Server Port
  138. description: The UDP port for the Palworld Server.
  139. schema:
  140. type: int
  141. default: 38211
  142. min: 9000
  143. max: 65535
  144. required: true
  145. - variable: rconPort
  146. label: RCON Port
  147. description: The TCP port for the Palworld RCON.
  148. schema:
  149. type: int
  150. default: 38212
  151. min: 9000
  152. max: 65535
  153. required: true
  154. - variable: hostNetwork
  155. label: Host Network
  156. description: |
  157. Bind to the host network. It might be needed for the UDP server port to work.
  158. schema:
  159. type: boolean
  160. default: false
  161. - variable: palworldStorage
  162. label: ""
  163. group: Storage Configuration
  164. schema:
  165. type: dict
  166. attrs:
  167. - variable: steamcmd
  168. label: Palworld SteamCMD Storage
  169. description: The path to store Palworld SteamCMD.
  170. schema:
  171. type: dict
  172. attrs:
  173. - variable: type
  174. label: Type
  175. description: |
  176. ixVolume: Is dataset created automatically by the system.</br>
  177. Host Path: Is a path that already exists on the system.
  178. schema:
  179. type: string
  180. required: true
  181. immutable: true
  182. default: "ixVolume"
  183. enum:
  184. - value: "hostPath"
  185. description: Host Path (Path that already exists on the system)
  186. - value: "ixVolume"
  187. description: ixVolume (Dataset created automatically by the system)
  188. - variable: ixVolumeConfig
  189. label: ixVolume Configuration
  190. description: The configuration for the ixVolume dataset.
  191. schema:
  192. type: dict
  193. show_if: [["type", "=", "ixVolume"]]
  194. $ref:
  195. - "normalize/ixVolume"
  196. attrs:
  197. - variable: aclEnable
  198. label: Enable ACL
  199. description: Enable ACL for the dataset.
  200. schema:
  201. type: boolean
  202. default: false
  203. - variable: datasetName
  204. label: Dataset Name
  205. description: The name of the dataset to use for storage.
  206. schema:
  207. type: string
  208. required: true
  209. immutable: true
  210. hidden: true
  211. default: "steamcmd"
  212. - variable: aclEntries
  213. label: ACL Configuration
  214. schema:
  215. type: dict
  216. show_if: [["aclEnable", "=", true]]
  217. attrs: []
  218. - variable: hostPathConfig
  219. label: Host Path Configuration
  220. schema:
  221. type: dict
  222. show_if: [["type", "=", "hostPath"]]
  223. attrs:
  224. - variable: aclEnable
  225. label: Enable ACL
  226. description: Enable ACL for the dataset.
  227. schema:
  228. type: boolean
  229. default: false
  230. - variable: acl
  231. label: ACL Configuration
  232. schema:
  233. type: dict
  234. show_if: [["aclEnable", "=", true]]
  235. attrs: []
  236. $ref:
  237. - "normalize/acl"
  238. - variable: hostPath
  239. label: Host Path
  240. description: The host path to use for storage.
  241. schema:
  242. type: hostpath
  243. show_if: [["aclEnable", "=", false]]
  244. required: true
  245. - variable: server
  246. label: Palworld Server Storage
  247. description: The path to store Palworld Server.
  248. schema:
  249. type: dict
  250. attrs:
  251. - variable: type
  252. label: Type
  253. description: |
  254. ixVolume: Is dataset created automatically by the system.</br>
  255. Host Path: Is a path that already exists on the system.
  256. schema:
  257. type: string
  258. required: true
  259. immutable: true
  260. default: "ixVolume"
  261. enum:
  262. - value: "hostPath"
  263. description: Host Path (Path that already exists on the system)
  264. - value: "ixVolume"
  265. description: ixVolume (Dataset created automatically by the system)
  266. - variable: readOnly
  267. label: Read Only
  268. description: Mount the volume as read only.
  269. schema:
  270. type: boolean
  271. default: false
  272. - variable: ixVolumeConfig
  273. label: ixVolume Configuration
  274. description: The configuration for the ixVolume dataset.
  275. schema:
  276. type: dict
  277. show_if: [["type", "=", "ixVolume"]]
  278. $ref:
  279. - "normalize/ixVolume"
  280. attrs:
  281. - variable: aclEnable
  282. label: Enable ACL
  283. description: Enable ACL for the dataset.
  284. schema:
  285. type: boolean
  286. default: false
  287. - variable: datasetName
  288. label: Dataset Name
  289. description: The name of the dataset to use for storage.
  290. schema:
  291. type: string
  292. required: true
  293. immutable: true
  294. hidden: true
  295. default: "server"
  296. - variable: aclEntries
  297. label: ACL Configuration
  298. schema:
  299. type: dict
  300. show_if: [["aclEnable", "=", true]]
  301. attrs: []
  302. - variable: hostPathConfig
  303. label: Host Path Configuration
  304. schema:
  305. type: dict
  306. show_if: [["type", "=", "hostPath"]]
  307. attrs:
  308. - variable: aclEnable
  309. label: Enable ACL
  310. description: Enable ACL for the dataset.
  311. schema:
  312. type: boolean
  313. default: false
  314. - variable: acl
  315. label: ACL Configuration
  316. schema:
  317. type: dict
  318. show_if: [["aclEnable", "=", true]]
  319. attrs: []
  320. $ref:
  321. - "normalize/acl"
  322. - variable: hostPath
  323. label: Host Path
  324. description: The host path to use for storage.
  325. schema:
  326. type: hostpath
  327. show_if: [["aclEnable", "=", false]]
  328. required: true
  329. - variable: additionalStorages
  330. label: Additional Storage
  331. description: Additional storage for Palworld.
  332. schema:
  333. type: list
  334. default: []
  335. items:
  336. - variable: storageEntry
  337. label: Storage Entry
  338. schema:
  339. type: dict
  340. attrs:
  341. - variable: type
  342. label: Type
  343. description: |
  344. ixVolume: Is dataset created automatically by the system.</br>
  345. Host Path: Is a path that already exists on the system.</br>
  346. SMB Share: Is a SMB share that is mounted to a persistent volume claim.
  347. schema:
  348. type: string
  349. required: true
  350. default: "ixVolume"
  351. immutable: true
  352. enum:
  353. - value: "hostPath"
  354. description: Host Path (Path that already exists on the system)
  355. - value: "ixVolume"
  356. description: ixVolume (Dataset created automatically by the system)
  357. - value: "smb-pv-pvc"
  358. description: SMB Share (Mounts a persistent volume claim to a SMB share)
  359. - variable: readOnly
  360. label: Read Only
  361. description: Mount the volume as read only.
  362. schema:
  363. type: boolean
  364. default: false
  365. - variable: mountPath
  366. label: Mount Path
  367. description: The path inside the container to mount the storage.
  368. schema:
  369. type: path
  370. required: true
  371. - variable: hostPathConfig
  372. label: Host Path Configuration
  373. schema:
  374. type: dict
  375. show_if: [["type", "=", "hostPath"]]
  376. attrs:
  377. - variable: aclEnable
  378. label: Enable ACL
  379. description: Enable ACL for the dataset.
  380. schema:
  381. type: boolean
  382. default: false
  383. - variable: acl
  384. label: ACL Configuration
  385. schema:
  386. type: dict
  387. show_if: [["aclEnable", "=", true]]
  388. attrs: []
  389. $ref:
  390. - "normalize/acl"
  391. - variable: hostPath
  392. label: Host Path
  393. description: The host path to use for storage.
  394. schema:
  395. type: hostpath
  396. show_if: [["aclEnable", "=", false]]
  397. required: true
  398. - variable: ixVolumeConfig
  399. label: ixVolume Configuration
  400. description: The configuration for the ixVolume dataset.
  401. schema:
  402. type: dict
  403. show_if: [["type", "=", "ixVolume"]]
  404. $ref:
  405. - "normalize/ixVolume"
  406. attrs:
  407. - variable: aclEnable
  408. label: Enable ACL
  409. description: Enable ACL for the dataset.
  410. schema:
  411. type: boolean
  412. default: false
  413. - variable: datasetName
  414. label: Dataset Name
  415. description: The name of the dataset to use for storage.
  416. schema:
  417. type: string
  418. required: true
  419. immutable: true
  420. default: "storage_entry"
  421. - variable: aclEntries
  422. label: ACL Configuration
  423. schema:
  424. type: dict
  425. show_if: [["aclEnable", "=", true]]
  426. attrs: []
  427. - variable: smbConfig
  428. label: SMB Share Configuration
  429. description: The configuration for the SMB Share.
  430. schema:
  431. type: dict
  432. show_if: [["type", "=", "smb-pv-pvc"]]
  433. attrs:
  434. - variable: server
  435. label: Server
  436. description: The server for the SMB share.
  437. schema:
  438. type: string
  439. required: true
  440. - variable: share
  441. label: Share
  442. description: The share name for the SMB share.
  443. schema:
  444. type: string
  445. required: true
  446. - variable: domain
  447. label: Domain (Optional)
  448. description: The domain for the SMB share.
  449. schema:
  450. type: string
  451. - variable: username
  452. label: Username
  453. description: The username for the SMB share.
  454. schema:
  455. type: string
  456. required: true
  457. - variable: password
  458. label: Password
  459. description: The password for the SMB share.
  460. schema:
  461. type: string
  462. required: true
  463. private: true
  464. - variable: size
  465. label: Size (in Gi)
  466. description: The size of the volume quota.
  467. schema:
  468. type: int
  469. required: true
  470. min: 1
  471. default: 1
  472. - variable: resources
  473. group: Resources Configuration
  474. label: ""
  475. schema:
  476. type: dict
  477. attrs:
  478. - variable: limits
  479. label: Limits
  480. schema:
  481. type: dict
  482. attrs:
  483. - variable: cpu
  484. label: CPU
  485. description: CPU limit for Palworld.
  486. schema:
  487. type: string
  488. max_length: 6
  489. valid_chars: '^(0\.[1-9]|[1-9][0-9]*)(\.[0-9]|m?)$'
  490. valid_chars_error: |
  491. Valid CPU limit formats are</br>
  492. - Plain Integer - eg. 1</br>
  493. - Float - eg. 0.5</br>
  494. - Milicpu - eg. 500m
  495. default: "4000m"
  496. required: true
  497. - variable: memory
  498. label: Memory
  499. description: Memory limit for Palworld.
  500. schema:
  501. type: string
  502. max_length: 12
  503. valid_chars: '^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$'
  504. valid_chars_error: |
  505. Valid Memory limit formats are</br>
  506. - Suffixed with E/P/T/G/M/K - eg. 1G</br>
  507. - Suffixed with Ei/Pi/Ti/Gi/Mi/Ki - eg. 1Gi</br>
  508. - Plain Integer in bytes - eg. 1024</br>
  509. - Exponent - eg. 134e6
  510. default: "8Gi"
  511. required: true