questions.yaml 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847
  1. groups:
  2. - name: Immich Configuration
  3. description: Configure Immich
  4. - name: Network Configuration
  5. description: Configure Network for Immich
  6. - name: Storage Configuration
  7. description: Configure Storage for Immich
  8. - name: Resources Configuration
  9. description: Configure Resources for Immich
  10. portals:
  11. web_portal:
  12. protocols:
  13. - "$kubernetes-resource_configmap_portal_protocol"
  14. host:
  15. - "$kubernetes-resource_configmap_portal_host"
  16. ports:
  17. - "$kubernetes-resource_configmap_portal_port"
  18. path: "$kubernetes-resource_configmap_portal_path"
  19. questions:
  20. - variable: TZ
  21. group: Immich Configuration
  22. label: Timezone
  23. schema:
  24. type: string
  25. default: Etc/UTC
  26. required: true
  27. $ref:
  28. - definitions/timezone
  29. - variable: immichConfig
  30. label: ""
  31. group: Immich Configuration
  32. schema:
  33. type: dict
  34. attrs:
  35. - variable: publicLoginMessage
  36. label: Public Login Message
  37. description: |
  38. The message that will be displayed on the login page.
  39. schema:
  40. type: string
  41. default: ""
  42. - variable: enableML
  43. label: Enable Machine Learning
  44. description: |
  45. Enable Machine Learning
  46. schema:
  47. type: boolean
  48. default: true
  49. - variable: enableTypesense
  50. label: Enable Typesense
  51. description: |
  52. Enable Typesense
  53. schema:
  54. type: boolean
  55. default: true
  56. - variable: immichNetwork
  57. label: ""
  58. group: Network Configuration
  59. schema:
  60. type: dict
  61. attrs:
  62. - variable: webuiPort
  63. label: Web Port
  64. description: The port for the Immich WebUI.
  65. schema:
  66. type: int
  67. default: 30041
  68. min: 9000
  69. max: 65535
  70. required: true
  71. - variable: immichStorage
  72. label: ""
  73. group: Storage Configuration
  74. schema:
  75. type: dict
  76. attrs:
  77. - variable: uploads
  78. label: Immich Uploads Storage
  79. description: The path to store Immich uploads.
  80. schema:
  81. type: dict
  82. attrs:
  83. - variable: type
  84. label: Type
  85. description: |
  86. ixVolume: Is dataset created automatically by the system.</br>
  87. Host Path: Is a path that already exists on the system.
  88. schema:
  89. type: string
  90. required: true
  91. immutable: true
  92. default: ixVolume
  93. enum:
  94. - value: hostPath
  95. description: Host Path (Path that already exists on the system)
  96. - value: ixVolume
  97. description: ixVolume (Dataset created automatically by the system)
  98. - variable: ixVolumeConfig
  99. label: ixVolume Configuration
  100. description: The configuration for the ixVolume dataset.
  101. schema:
  102. type: dict
  103. show_if: [["type", "=", "ixVolume"]]
  104. $ref:
  105. - "normalize/ixVolume"
  106. attrs:
  107. - variable: aclEnable
  108. label: Enable ACL
  109. description: Enable ACL for the dataset.
  110. schema:
  111. type: boolean
  112. default: false
  113. - variable: datasetName
  114. label: Dataset Name
  115. description: The name of the dataset to use for storage.
  116. schema:
  117. type: string
  118. required: true
  119. immutable: true
  120. hidden: true
  121. default: "uploads"
  122. - variable: aclEntries
  123. label: ACL Configuration
  124. schema:
  125. type: dict
  126. show_if: [["aclEnable", "=", true]]
  127. attrs: []
  128. - variable: hostPathConfig
  129. label: hostPathConfig
  130. schema:
  131. type: dict
  132. show_if: [["type", "=", "hostPath"]]
  133. attrs:
  134. - variable: aclEnable
  135. label: Enable ACL
  136. description: Enable ACL for the dataset.
  137. schema:
  138. type: boolean
  139. default: false
  140. - variable: acl
  141. label: ACL Configuration
  142. schema:
  143. type: dict
  144. show_if: [["aclEnable", "=", true]]
  145. attrs: []
  146. $ref:
  147. - "normalize/acl"
  148. - variable: hostPath
  149. label: Host Path
  150. description: The host path to use for storage.
  151. schema:
  152. type: hostpath
  153. show_if: [["aclEnable", "=", false]]
  154. immutable: true
  155. required: true
  156. - variable: library
  157. label: Immich Library Storage
  158. description: The path to store Immich Library.
  159. schema:
  160. type: dict
  161. attrs:
  162. - variable: type
  163. label: Type
  164. description: |
  165. ixVolume: Is dataset created automatically by the system.</br>
  166. Host Path: Is a path that already exists on the system.
  167. schema:
  168. type: string
  169. required: true
  170. immutable: true
  171. default: ixVolume
  172. enum:
  173. - value: hostPath
  174. description: Host Path (Path that already exists on the system)
  175. - value: ixVolume
  176. description: ixVolume (Dataset created automatically by the system)
  177. - variable: ixVolumeConfig
  178. label: ixVolume Configuration
  179. description: The configuration for the ixVolume dataset.
  180. schema:
  181. type: dict
  182. show_if: [["type", "=", "ixVolume"]]
  183. $ref:
  184. - "normalize/ixVolume"
  185. attrs:
  186. - variable: aclEnable
  187. label: Enable ACL
  188. description: Enable ACL for the dataset.
  189. schema:
  190. type: boolean
  191. default: false
  192. - variable: datasetName
  193. label: Dataset Name
  194. description: The name of the dataset to use for storage.
  195. schema:
  196. type: string
  197. required: true
  198. immutable: true
  199. hidden: true
  200. default: "library"
  201. - variable: aclEntries
  202. label: ACL Configuration
  203. schema:
  204. type: dict
  205. show_if: [["aclEnable", "=", true]]
  206. attrs: []
  207. - variable: hostPathConfig
  208. label: hostPathConfig
  209. schema:
  210. type: dict
  211. show_if: [["type", "=", "hostPath"]]
  212. attrs:
  213. - variable: aclEnable
  214. label: Enable ACL
  215. description: Enable ACL for the dataset.
  216. schema:
  217. type: boolean
  218. default: false
  219. - variable: acl
  220. label: ACL Configuration
  221. schema:
  222. type: dict
  223. show_if: [["aclEnable", "=", true]]
  224. attrs: []
  225. $ref:
  226. - "normalize/acl"
  227. - variable: hostPath
  228. label: Host Path
  229. description: The host path to use for storage.
  230. schema:
  231. type: hostpath
  232. show_if: [["aclEnable", "=", false]]
  233. immutable: true
  234. required: true
  235. - variable: thumbs
  236. label: Immich Thumbs Storage
  237. description: The path to store Immich Thumbs.
  238. schema:
  239. type: dict
  240. attrs:
  241. - variable: type
  242. label: Type
  243. description: |
  244. ixVolume: Is dataset created automatically by the system.</br>
  245. Host Path: Is a path that already exists on the system.
  246. schema:
  247. type: string
  248. required: true
  249. immutable: true
  250. default: ixVolume
  251. enum:
  252. - value: hostPath
  253. description: Host Path (Path that already exists on the system)
  254. - value: ixVolume
  255. description: ixVolume (Dataset created automatically by the system)
  256. - variable: ixVolumeConfig
  257. label: ixVolume Configuration
  258. description: The configuration for the ixVolume dataset.
  259. schema:
  260. type: dict
  261. show_if: [["type", "=", "ixVolume"]]
  262. $ref:
  263. - "normalize/ixVolume"
  264. attrs:
  265. - variable: aclEnable
  266. label: Enable ACL
  267. description: Enable ACL for the dataset.
  268. schema:
  269. type: boolean
  270. default: false
  271. - variable: datasetName
  272. label: Dataset Name
  273. description: The name of the dataset to use for storage.
  274. schema:
  275. type: string
  276. required: true
  277. immutable: true
  278. hidden: true
  279. default: "thumbs"
  280. - variable: aclEntries
  281. label: ACL Configuration
  282. schema:
  283. type: dict
  284. show_if: [["aclEnable", "=", true]]
  285. attrs: []
  286. - variable: hostPathConfig
  287. label: hostPathConfig
  288. schema:
  289. type: dict
  290. show_if: [["type", "=", "hostPath"]]
  291. attrs:
  292. - variable: aclEnable
  293. label: Enable ACL
  294. description: Enable ACL for the dataset.
  295. schema:
  296. type: boolean
  297. default: false
  298. - variable: acl
  299. label: ACL Configuration
  300. schema:
  301. type: dict
  302. show_if: [["aclEnable", "=", true]]
  303. attrs: []
  304. $ref:
  305. - "normalize/acl"
  306. - variable: hostPath
  307. label: Host Path
  308. description: The host path to use for storage.
  309. schema:
  310. type: hostpath
  311. show_if: [["aclEnable", "=", false]]
  312. immutable: true
  313. required: true
  314. - variable: profile
  315. label: Immich Profile Storage
  316. description: The path to store Immich Profile.
  317. schema:
  318. type: dict
  319. attrs:
  320. - variable: type
  321. label: Type
  322. description: |
  323. ixVolume: Is dataset created automatically by the system.</br>
  324. Host Path: Is a path that already exists on the system.
  325. schema:
  326. type: string
  327. required: true
  328. immutable: true
  329. default: ixVolume
  330. enum:
  331. - value: hostPath
  332. description: Host Path (Path that already exists on the system)
  333. - value: ixVolume
  334. description: ixVolume (Dataset created automatically by the system)
  335. - variable: ixVolumeConfig
  336. label: ixVolume Configuration
  337. description: The configuration for the ixVolume dataset.
  338. schema:
  339. type: dict
  340. show_if: [["type", "=", "ixVolume"]]
  341. $ref:
  342. - "normalize/ixVolume"
  343. attrs:
  344. - variable: aclEnable
  345. label: Enable ACL
  346. description: Enable ACL for the dataset.
  347. schema:
  348. type: boolean
  349. default: false
  350. - variable: datasetName
  351. label: Dataset Name
  352. description: The name of the dataset to use for storage.
  353. schema:
  354. type: string
  355. required: true
  356. immutable: true
  357. hidden: true
  358. default: "profile"
  359. - variable: aclEntries
  360. label: ACL Configuration
  361. schema:
  362. type: dict
  363. show_if: [["aclEnable", "=", true]]
  364. attrs: []
  365. - variable: hostPathConfig
  366. label: hostPathConfig
  367. schema:
  368. type: dict
  369. show_if: [["type", "=", "hostPath"]]
  370. attrs:
  371. - variable: aclEnable
  372. label: Enable ACL
  373. description: Enable ACL for the dataset.
  374. schema:
  375. type: boolean
  376. default: false
  377. - variable: acl
  378. label: ACL Configuration
  379. schema:
  380. type: dict
  381. show_if: [["aclEnable", "=", true]]
  382. attrs: []
  383. $ref:
  384. - "normalize/acl"
  385. - variable: hostPath
  386. label: Host Path
  387. description: The host path to use for storage.
  388. schema:
  389. type: hostpath
  390. show_if: [["aclEnable", "=", false]]
  391. immutable: true
  392. required: true
  393. - variable: video
  394. label: Immich Video Storage
  395. description: The path to store Immich Video.
  396. schema:
  397. type: dict
  398. attrs:
  399. - variable: type
  400. label: Type
  401. description: |
  402. ixVolume: Is dataset created automatically by the system.</br>
  403. Host Path: Is a path that already exists on the system.
  404. schema:
  405. type: string
  406. required: true
  407. immutable: true
  408. default: ixVolume
  409. enum:
  410. - value: hostPath
  411. description: Host Path (Path that already exists on the system)
  412. - value: ixVolume
  413. description: ixVolume (Dataset created automatically by the system)
  414. - variable: ixVolumeConfig
  415. label: ixVolume Configuration
  416. description: The configuration for the ixVolume dataset.
  417. schema:
  418. type: dict
  419. show_if: [["type", "=", "ixVolume"]]
  420. $ref:
  421. - "normalize/ixVolume"
  422. attrs:
  423. - variable: aclEnable
  424. label: Enable ACL
  425. description: Enable ACL for the dataset.
  426. schema:
  427. type: boolean
  428. default: false
  429. - variable: datasetName
  430. label: Dataset Name
  431. description: The name of the dataset to use for storage.
  432. schema:
  433. type: string
  434. required: true
  435. immutable: true
  436. hidden: true
  437. default: "video"
  438. - variable: aclEntries
  439. label: ACL Configuration
  440. schema:
  441. type: dict
  442. show_if: [["aclEnable", "=", true]]
  443. attrs: []
  444. - variable: hostPathConfig
  445. label: hostPathConfig
  446. schema:
  447. type: dict
  448. show_if: [["type", "=", "hostPath"]]
  449. attrs:
  450. - variable: aclEnable
  451. label: Enable ACL
  452. description: Enable ACL for the dataset.
  453. schema:
  454. type: boolean
  455. default: false
  456. - variable: acl
  457. label: ACL Configuration
  458. schema:
  459. type: dict
  460. show_if: [["aclEnable", "=", true]]
  461. attrs: []
  462. $ref:
  463. - "normalize/acl"
  464. - variable: hostPath
  465. label: Host Path
  466. description: The host path to use for storage.
  467. schema:
  468. type: hostpath
  469. show_if: [["aclEnable", "=", false]]
  470. immutable: true
  471. required: true
  472. - variable: pgData
  473. label: Immich Postgres Data Storage
  474. description: The path to store Immich Postgres Data.
  475. schema:
  476. type: dict
  477. attrs:
  478. - variable: type
  479. label: Type
  480. description: |
  481. ixVolume: Is dataset created automatically by the system.</br>
  482. Host Path: Is a path that already exists on the system.
  483. schema:
  484. type: string
  485. required: true
  486. immutable: true
  487. default: ixVolume
  488. enum:
  489. - value: hostPath
  490. description: Host Path (Path that already exists on the system)
  491. - value: ixVolume
  492. description: ixVolume (Dataset created automatically by the system)
  493. - variable: ixVolumeConfig
  494. label: ixVolume Configuration
  495. description: The configuration for the ixVolume dataset.
  496. schema:
  497. type: dict
  498. # Nothing to show for the user
  499. hidden: true
  500. show_if: [["type", "=", "ixVolume"]]
  501. $ref:
  502. - "normalize/ixVolume"
  503. attrs:
  504. - variable: aclEnable
  505. label: Enable ACL
  506. description: Enable ACL for the dataset.
  507. schema:
  508. type: boolean
  509. # Postgres does a CHMOD at startup
  510. # Which fails with ACL
  511. hidden: true
  512. default: false
  513. - variable: datasetName
  514. label: Dataset Name
  515. description: The name of the dataset to use for storage.
  516. schema:
  517. type: string
  518. required: true
  519. immutable: true
  520. hidden: true
  521. default: "pgData"
  522. - variable: aclEntries
  523. label: ACL Configuration
  524. schema:
  525. type: dict
  526. show_if: [["aclEnable", "=", true]]
  527. attrs: []
  528. - variable: hostPathConfig
  529. label: hostPathConfig
  530. schema:
  531. type: dict
  532. show_if: [["type", "=", "hostPath"]]
  533. attrs:
  534. - variable: aclEnable
  535. label: Enable ACL
  536. description: Enable ACL for the dataset.
  537. schema:
  538. type: boolean
  539. # Postgres does a CHMOD at startup
  540. # Which fails with ACL
  541. hidden: true
  542. default: false
  543. - variable: acl
  544. label: ACL Configuration
  545. schema:
  546. type: dict
  547. show_if: [["aclEnable", "=", true]]
  548. attrs: []
  549. $ref:
  550. - "normalize/acl"
  551. - variable: hostPath
  552. label: Host Path
  553. description: The host path to use for storage.
  554. schema:
  555. type: hostpath
  556. show_if: [["aclEnable", "=", false]]
  557. immutable: true
  558. required: true
  559. - variable: pgBackup
  560. label: Immich Postgres Backup Storage
  561. description: The path to store Immich Postgres Backup.
  562. schema:
  563. type: dict
  564. attrs:
  565. - variable: type
  566. label: Type
  567. description: |
  568. ixVolume: Is dataset created automatically by the system.</br>
  569. Host Path: Is a path that already exists on the system.
  570. schema:
  571. type: string
  572. required: true
  573. immutable: true
  574. default: ixVolume
  575. enum:
  576. - value: hostPath
  577. description: Host Path (Path that already exists on the system)
  578. - value: ixVolume
  579. description: ixVolume (Dataset created automatically by the system)
  580. - variable: ixVolumeConfig
  581. label: ixVolume Configuration
  582. description: The configuration for the ixVolume dataset.
  583. schema:
  584. type: dict
  585. # Nothing to show for the user
  586. hidden: true
  587. show_if: [["type", "=", "ixVolume"]]
  588. $ref:
  589. - "normalize/ixVolume"
  590. attrs:
  591. - variable: aclEnable
  592. label: Enable ACL
  593. description: Enable ACL for the dataset.
  594. schema:
  595. type: boolean
  596. # Postgres does a CHMOD at startup
  597. # Which fails with ACL
  598. hidden: true
  599. default: false
  600. - variable: datasetName
  601. label: Dataset Name
  602. description: The name of the dataset to use for storage.
  603. schema:
  604. type: string
  605. required: true
  606. immutable: true
  607. hidden: true
  608. default: "pgBackup"
  609. - variable: aclEntries
  610. label: ACL Configuration
  611. schema:
  612. type: dict
  613. show_if: [["aclEnable", "=", true]]
  614. attrs: []
  615. - variable: hostPathConfig
  616. label: hostPathConfig
  617. schema:
  618. type: dict
  619. show_if: [["type", "=", "hostPath"]]
  620. attrs:
  621. - variable: aclEnable
  622. label: Enable ACL
  623. description: Enable ACL for the dataset.
  624. schema:
  625. type: boolean
  626. # Postgres does a CHMOD at startup
  627. # Which fails with ACL
  628. hidden: true
  629. default: false
  630. - variable: acl
  631. label: ACL Configuration
  632. schema:
  633. type: dict
  634. show_if: [["aclEnable", "=", true]]
  635. attrs: []
  636. $ref:
  637. - "normalize/acl"
  638. - variable: hostPath
  639. label: Host Path
  640. description: The host path to use for storage.
  641. schema:
  642. type: hostpath
  643. show_if: [["aclEnable", "=", false]]
  644. immutable: true
  645. required: true
  646. - variable: additionalStorages
  647. label: Additional Storage
  648. description: Additional storage for Immich.
  649. schema:
  650. type: list
  651. default: []
  652. items:
  653. - variable: storageEntry
  654. label: Storage Entry
  655. schema:
  656. type: dict
  657. attrs:
  658. - variable: type
  659. label: Type
  660. description: |
  661. ixVolume: Is dataset created automatically by the system.</br>
  662. Host Path: Is a path that already exists on the system.</br>
  663. SMB Share: Is a SMB share that is mounted to a persistent volume claim.
  664. schema:
  665. type: string
  666. required: true
  667. default: "ixVolume"
  668. immutable: true
  669. enum:
  670. - value: "hostPath"
  671. description: Host Path (Path that already exists on the system)
  672. - value: "ixVolume"
  673. description: ixVolume (Dataset created automatically by the system)
  674. - value: "smb-pv-pvc"
  675. description: SMB Share (Mounts a persistent volume claim to a SMB share)
  676. - variable: readOnly
  677. label: Read Only
  678. description: Mount the volume as read only.
  679. schema:
  680. type: boolean
  681. default: false
  682. - variable: mountPath
  683. label: Mount Path
  684. description: The path inside the container to mount the storage.
  685. schema:
  686. type: path
  687. required: true
  688. - variable: hostPathConfig
  689. label: hostPathConfig
  690. schema:
  691. type: dict
  692. show_if: [["type", "=", "hostPath"]]
  693. attrs:
  694. - variable: aclEnable
  695. label: Enable ACL
  696. description: Enable ACL for the dataset.
  697. schema:
  698. type: boolean
  699. default: false
  700. - variable: acl
  701. label: ACL Configuration
  702. schema:
  703. type: dict
  704. show_if: [["aclEnable", "=", true]]
  705. attrs: []
  706. $ref:
  707. - "normalize/acl"
  708. - variable: hostPath
  709. label: Host Path
  710. description: The host path to use for storage.
  711. schema:
  712. type: hostpath
  713. show_if: [["aclEnable", "=", false]]
  714. immutable: true
  715. required: true
  716. - variable: ixVolumeConfig
  717. label: ixVolume Configuration
  718. description: The configuration for the ixVolume dataset.
  719. schema:
  720. type: dict
  721. show_if: [["type", "=", "ixVolume"]]
  722. $ref:
  723. - "normalize/ixVolume"
  724. attrs:
  725. - variable: aclEnable
  726. label: Enable ACL
  727. description: Enable ACL for the dataset.
  728. schema:
  729. type: boolean
  730. default: false
  731. - variable: datasetName
  732. label: Dataset Name
  733. description: The name of the dataset to use for storage.
  734. schema:
  735. type: string
  736. required: true
  737. immutable: true
  738. default: "storage_entry"
  739. - variable: aclEntries
  740. label: ACL Configuration
  741. schema:
  742. type: dict
  743. show_if: [["aclEnable", "=", true]]
  744. attrs: []
  745. - variable: smbConfig
  746. label: SMB Share Configuration
  747. description: The configuration for the SMB Share.
  748. schema:
  749. type: dict
  750. show_if: [["type", "=", "smb-pv-pvc"]]
  751. attrs:
  752. - variable: server
  753. label: Server
  754. description: The server for the SMB share.
  755. schema:
  756. type: string
  757. required: true
  758. - variable: share
  759. label: Share
  760. description: The share name for the SMB share.
  761. schema:
  762. type: string
  763. required: true
  764. - variable: domain
  765. label: Domain (Optional)
  766. description: The domain for the SMB share.
  767. schema:
  768. type: string
  769. - variable: username
  770. label: Username
  771. description: The username for the SMB share.
  772. schema:
  773. type: string
  774. required: true
  775. - variable: password
  776. label: Password
  777. description: The password for the SMB share.
  778. schema:
  779. type: string
  780. required: true
  781. private: true
  782. - variable: size
  783. label: Size (in Gi)
  784. description: The size of the volume quota.
  785. schema:
  786. type: int
  787. required: true
  788. min: 1
  789. default: 1
  790. - variable: resources
  791. label: ""
  792. group: Resources Configuration
  793. schema:
  794. type: dict
  795. attrs:
  796. - variable: limits
  797. label: Limits
  798. schema:
  799. type: dict
  800. attrs:
  801. - variable: cpu
  802. label: CPU
  803. description: CPU limit for Immich.
  804. schema:
  805. type: string
  806. max_length: 6
  807. valid_chars: '^(0\.[1-9]|[1-9][0-9]*)(\.[0-9]|m?)$'
  808. valid_chars_error: |
  809. Valid CPU limit formats are</br>
  810. - Plain Integer - eg. 1</br>
  811. - Float - eg. 0.5</br>
  812. - Milicpu - eg. 500m
  813. default: "4000m"
  814. required: true
  815. - variable: memory
  816. label: Memory
  817. description: Memory limit for Immich.
  818. schema:
  819. type: string
  820. max_length: 12
  821. valid_chars: '^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$'
  822. valid_chars_error: |
  823. Valid Memory limit formats are</br>
  824. - Suffixed with E/P/T/G/M/K - eg. 1G</br>
  825. - Suffixed with Ei/Pi/Ti/Gi/Mi/Ki - eg. 1Gi</br>
  826. - Plain Integer in bytes - eg. 1024</br>
  827. - Exponent - eg. 134e6
  828. default: "8Gi"
  829. required: true
  830. - variable: immichGPU
  831. group: Resources Configuration
  832. label: GPU Configuration
  833. schema:
  834. type: dict
  835. $ref:
  836. - "definitions/gpuConfiguration"
  837. attrs: []