app_versions.json 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985
  1. {
  2. "3.0.20": {
  3. "healthy": true,
  4. "supported": false,
  5. "healthy_error": null,
  6. "location": "/__w/charts/charts/community/immich/3.0.20",
  7. "last_update": "2024-04-20 13:18:33",
  8. "required_features": [
  9. "normalize/acl",
  10. "normalize/ixVolume",
  11. "definitions/gpuConfiguration",
  12. "definitions/timezone"
  13. ],
  14. "human_version": "1.102.0_3.0.20",
  15. "version": "3.0.20",
  16. "chart_metadata": {
  17. "name": "immich",
  18. "description": "Immich is a self-hosted photo and video backup solution directly from your mobile phone.",
  19. "annotations": {
  20. "title": "Immich"
  21. },
  22. "type": "application",
  23. "version": "3.0.20",
  24. "apiVersion": "v2",
  25. "appVersion": "1.102.0",
  26. "kubeVersion": ">=1.16.0-0",
  27. "maintainers": [
  28. {
  29. "name": "truenas",
  30. "url": "https://www.truenas.com/",
  31. "email": "dev@ixsystems.com"
  32. }
  33. ],
  34. "dependencies": [
  35. {
  36. "name": "common",
  37. "repository": "file://../../../common",
  38. "version": "1.2.9"
  39. }
  40. ],
  41. "home": "https://immich.app",
  42. "icon": "https://media.sys.truenas.net/apps/immich/icons/icon.svg",
  43. "sources": [
  44. "https://immich.app",
  45. "https://github.com/truenas/charts/tree/master/community/immich",
  46. "https://github.com/immich-app/immich"
  47. ],
  48. "keywords": [
  49. "photos",
  50. "backup"
  51. ]
  52. },
  53. "app_metadata": {
  54. "runAsContext": [
  55. {
  56. "userName": "root",
  57. "groupName": "root",
  58. "gid": 0,
  59. "uid": 0,
  60. "description": "Immich runs as root user in order to spawn different sub-processes."
  61. }
  62. ],
  63. "capabilities": [
  64. {
  65. "name": "CHOWN",
  66. "description": "Immich Proxy is able to chown files."
  67. },
  68. {
  69. "name": "SETUID",
  70. "description": "Immich Proxy and Web is able to set user ID for it's sub-processes."
  71. },
  72. {
  73. "name": "SETGID",
  74. "description": "Immich Proxy and Web is able to set group ID for it's sub-processes."
  75. }
  76. ],
  77. "hostMounts": []
  78. },
  79. "schema": {
  80. "groups": [
  81. {
  82. "name": "Immich Configuration",
  83. "description": "Configure Immich"
  84. },
  85. {
  86. "name": "Network Configuration",
  87. "description": "Configure Network for Immich"
  88. },
  89. {
  90. "name": "Storage Configuration",
  91. "description": "Configure Storage for Immich"
  92. },
  93. {
  94. "name": "Resources Configuration",
  95. "description": "Configure Resources for Immich"
  96. }
  97. ],
  98. "portals": {
  99. "web_portal": {
  100. "protocols": [
  101. "$kubernetes-resource_configmap_portal_protocol"
  102. ],
  103. "host": [
  104. "$kubernetes-resource_configmap_portal_host"
  105. ],
  106. "ports": [
  107. "$kubernetes-resource_configmap_portal_port"
  108. ],
  109. "path": "$kubernetes-resource_configmap_portal_path"
  110. }
  111. },
  112. "questions": [
  113. {
  114. "variable": "TZ",
  115. "group": "Immich Configuration",
  116. "label": "Timezone",
  117. "schema": {
  118. "type": "string",
  119. "default": "America/Los_Angeles",
  120. "required": true,
  121. "$ref": [
  122. "definitions/timezone"
  123. ],
  124. "enum": [
  125. {
  126. "value": "Asia/Damascus",
  127. "description": "'Asia/Damascus' timezone"
  128. },
  129. {
  130. "value": "Asia/Saigon",
  131. "description": "'Asia/Saigon' timezone"
  132. }
  133. ]
  134. }
  135. },
  136. {
  137. "variable": "immichConfig",
  138. "label": "",
  139. "group": "Immich Configuration",
  140. "schema": {
  141. "type": "dict",
  142. "attrs": [
  143. {
  144. "variable": "enableML",
  145. "label": "Enable Machine Learning",
  146. "description": "Enable Machine Learning\n",
  147. "schema": {
  148. "type": "boolean",
  149. "default": true
  150. }
  151. },
  152. {
  153. "variable": "mlImageType",
  154. "label": "Machine Learning Image Type",
  155. "description": "The type of image to use for Machine Learning.\n",
  156. "schema": {
  157. "type": "string",
  158. "default": "mlImage",
  159. "enum": [
  160. {
  161. "value": "mlImage",
  162. "description": "Default Machine Learning Image"
  163. },
  164. {
  165. "value": "mlCudaImage",
  166. "description": "Cuda Machine Learning Image"
  167. },
  168. {
  169. "value": "mlOpenvinoImage",
  170. "description": "Openvino Machine Learning Image"
  171. }
  172. ]
  173. }
  174. }
  175. ]
  176. }
  177. },
  178. {
  179. "variable": "immichNetwork",
  180. "label": "",
  181. "group": "Network Configuration",
  182. "schema": {
  183. "type": "dict",
  184. "attrs": [
  185. {
  186. "variable": "webuiPort",
  187. "label": "Web Port",
  188. "description": "The port for the Immich WebUI.",
  189. "schema": {
  190. "type": "int",
  191. "default": 30041,
  192. "min": 9000,
  193. "max": 65535,
  194. "required": true
  195. }
  196. }
  197. ]
  198. }
  199. },
  200. {
  201. "variable": "immichStorage",
  202. "label": "",
  203. "group": "Storage Configuration",
  204. "schema": {
  205. "type": "dict",
  206. "attrs": [
  207. {
  208. "variable": "uploads",
  209. "label": "Immich Uploads Storage",
  210. "description": "The path to store Immich uploads.",
  211. "schema": {
  212. "type": "dict",
  213. "attrs": [
  214. {
  215. "variable": "type",
  216. "label": "Type",
  217. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  218. "schema": {
  219. "type": "string",
  220. "required": true,
  221. "immutable": true,
  222. "default": "ixVolume",
  223. "enum": [
  224. {
  225. "value": "hostPath",
  226. "description": "Host Path (Path that already exists on the system)"
  227. },
  228. {
  229. "value": "ixVolume",
  230. "description": "ixVolume (Dataset created automatically by the system)"
  231. }
  232. ]
  233. }
  234. },
  235. {
  236. "variable": "ixVolumeConfig",
  237. "label": "ixVolume Configuration",
  238. "description": "The configuration for the ixVolume dataset.",
  239. "schema": {
  240. "type": "dict",
  241. "show_if": [
  242. [
  243. "type",
  244. "=",
  245. "ixVolume"
  246. ]
  247. ],
  248. "$ref": [
  249. "normalize/ixVolume"
  250. ],
  251. "attrs": [
  252. {
  253. "variable": "aclEnable",
  254. "label": "Enable ACL",
  255. "description": "Enable ACL for the dataset.",
  256. "schema": {
  257. "type": "boolean",
  258. "default": false
  259. }
  260. },
  261. {
  262. "variable": "datasetName",
  263. "label": "Dataset Name",
  264. "description": "The name of the dataset to use for storage.",
  265. "schema": {
  266. "type": "string",
  267. "required": true,
  268. "immutable": true,
  269. "hidden": true,
  270. "default": "uploads"
  271. }
  272. },
  273. {
  274. "variable": "aclEntries",
  275. "label": "ACL Configuration",
  276. "schema": {
  277. "type": "dict",
  278. "show_if": [
  279. [
  280. "aclEnable",
  281. "=",
  282. true
  283. ]
  284. ],
  285. "attrs": [
  286. {
  287. "variable": "path",
  288. "label": "Path",
  289. "description": "Path to perform ACL",
  290. "schema": {
  291. "type": "string",
  292. "hidden": true
  293. }
  294. },
  295. {
  296. "variable": "entries",
  297. "label": "ACL Entries",
  298. "description": "ACL Entries",
  299. "schema": {
  300. "type": "list",
  301. "items": [
  302. {
  303. "variable": "aclEntry",
  304. "label": "ACL Entry",
  305. "schema": {
  306. "type": "dict",
  307. "attrs": [
  308. {
  309. "variable": "id_type",
  310. "label": "ID Type",
  311. "schema": {
  312. "type": "string",
  313. "enum": [
  314. {
  315. "value": "USER",
  316. "description": "Entry is for a USER"
  317. },
  318. {
  319. "value": "GROUP",
  320. "description": "Entry is for a GROUP"
  321. }
  322. ],
  323. "default": "USER"
  324. }
  325. },
  326. {
  327. "variable": "id",
  328. "label": "ID",
  329. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  330. "schema": {
  331. "type": "int",
  332. "required": true,
  333. "min": 0
  334. }
  335. },
  336. {
  337. "variable": "access",
  338. "label": "Access",
  339. "schema": {
  340. "type": "string",
  341. "enum": [
  342. {
  343. "value": "READ",
  344. "description": "Read Access"
  345. },
  346. {
  347. "value": "MODIFY",
  348. "description": "Modify Access"
  349. },
  350. {
  351. "value": "FULL_CONTROL",
  352. "description": "FULL_CONTROL Access"
  353. }
  354. ]
  355. }
  356. }
  357. ]
  358. }
  359. }
  360. ]
  361. }
  362. }
  363. ]
  364. }
  365. }
  366. ]
  367. }
  368. },
  369. {
  370. "variable": "hostPathConfig",
  371. "label": "Host Path Configuration",
  372. "schema": {
  373. "type": "dict",
  374. "show_if": [
  375. [
  376. "type",
  377. "=",
  378. "hostPath"
  379. ]
  380. ],
  381. "attrs": [
  382. {
  383. "variable": "aclEnable",
  384. "label": "Enable ACL",
  385. "description": "Enable ACL for the dataset.",
  386. "schema": {
  387. "type": "boolean",
  388. "default": false
  389. }
  390. },
  391. {
  392. "variable": "acl",
  393. "label": "ACL Configuration",
  394. "schema": {
  395. "type": "dict",
  396. "show_if": [
  397. [
  398. "aclEnable",
  399. "=",
  400. true
  401. ]
  402. ],
  403. "attrs": [
  404. {
  405. "variable": "path",
  406. "label": "Host Path",
  407. "description": "Host Path to perform ACL",
  408. "schema": {
  409. "type": "hostpath",
  410. "required": true,
  411. "empty": false
  412. }
  413. },
  414. {
  415. "variable": "entries",
  416. "label": "ACL Entries",
  417. "description": "ACL Entries",
  418. "schema": {
  419. "type": "list",
  420. "items": [
  421. {
  422. "variable": "aclEntry",
  423. "label": "ACL Entry",
  424. "schema": {
  425. "type": "dict",
  426. "attrs": [
  427. {
  428. "variable": "id_type",
  429. "label": "ID Type",
  430. "schema": {
  431. "type": "string",
  432. "enum": [
  433. {
  434. "value": "USER",
  435. "description": "Entry is for a USER"
  436. },
  437. {
  438. "value": "GROUP",
  439. "description": "Entry is for a GROUP"
  440. }
  441. ],
  442. "default": "USER"
  443. }
  444. },
  445. {
  446. "variable": "id",
  447. "label": "ID",
  448. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  449. "schema": {
  450. "type": "int",
  451. "required": true,
  452. "min": 0
  453. }
  454. },
  455. {
  456. "variable": "access",
  457. "label": "Access",
  458. "schema": {
  459. "type": "string",
  460. "enum": [
  461. {
  462. "value": "READ",
  463. "description": "Read Access"
  464. },
  465. {
  466. "value": "MODIFY",
  467. "description": "Modify Access"
  468. },
  469. {
  470. "value": "FULL_CONTROL",
  471. "description": "FULL_CONTROL Access"
  472. }
  473. ]
  474. }
  475. }
  476. ]
  477. }
  478. }
  479. ]
  480. }
  481. },
  482. {
  483. "variable": "options",
  484. "label": "ACL Options",
  485. "schema": {
  486. "type": "dict",
  487. "attrs": [
  488. {
  489. "variable": "force",
  490. "label": "Force Flag",
  491. "description": "Enabling `Force` applies ACL even if the path has existing data",
  492. "schema": {
  493. "type": "boolean",
  494. "default": false
  495. }
  496. }
  497. ]
  498. }
  499. }
  500. ],
  501. "$ref": [
  502. "normalize/acl"
  503. ]
  504. }
  505. },
  506. {
  507. "variable": "hostPath",
  508. "label": "Host Path",
  509. "description": "The host path to use for storage.",
  510. "schema": {
  511. "type": "hostpath",
  512. "show_if": [
  513. [
  514. "aclEnable",
  515. "=",
  516. false
  517. ]
  518. ],
  519. "required": true
  520. }
  521. }
  522. ]
  523. }
  524. }
  525. ]
  526. }
  527. },
  528. {
  529. "variable": "library",
  530. "label": "Immich Library Storage",
  531. "description": "The path to store Immich Library.",
  532. "schema": {
  533. "type": "dict",
  534. "attrs": [
  535. {
  536. "variable": "type",
  537. "label": "Type",
  538. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  539. "schema": {
  540. "type": "string",
  541. "required": true,
  542. "immutable": true,
  543. "default": "ixVolume",
  544. "enum": [
  545. {
  546. "value": "hostPath",
  547. "description": "Host Path (Path that already exists on the system)"
  548. },
  549. {
  550. "value": "ixVolume",
  551. "description": "ixVolume (Dataset created automatically by the system)"
  552. }
  553. ]
  554. }
  555. },
  556. {
  557. "variable": "ixVolumeConfig",
  558. "label": "ixVolume Configuration",
  559. "description": "The configuration for the ixVolume dataset.",
  560. "schema": {
  561. "type": "dict",
  562. "show_if": [
  563. [
  564. "type",
  565. "=",
  566. "ixVolume"
  567. ]
  568. ],
  569. "$ref": [
  570. "normalize/ixVolume"
  571. ],
  572. "attrs": [
  573. {
  574. "variable": "aclEnable",
  575. "label": "Enable ACL",
  576. "description": "Enable ACL for the dataset.",
  577. "schema": {
  578. "type": "boolean",
  579. "default": false
  580. }
  581. },
  582. {
  583. "variable": "datasetName",
  584. "label": "Dataset Name",
  585. "description": "The name of the dataset to use for storage.",
  586. "schema": {
  587. "type": "string",
  588. "required": true,
  589. "immutable": true,
  590. "hidden": true,
  591. "default": "library"
  592. }
  593. },
  594. {
  595. "variable": "aclEntries",
  596. "label": "ACL Configuration",
  597. "schema": {
  598. "type": "dict",
  599. "show_if": [
  600. [
  601. "aclEnable",
  602. "=",
  603. true
  604. ]
  605. ],
  606. "attrs": [
  607. {
  608. "variable": "path",
  609. "label": "Path",
  610. "description": "Path to perform ACL",
  611. "schema": {
  612. "type": "string",
  613. "hidden": true
  614. }
  615. },
  616. {
  617. "variable": "entries",
  618. "label": "ACL Entries",
  619. "description": "ACL Entries",
  620. "schema": {
  621. "type": "list",
  622. "items": [
  623. {
  624. "variable": "aclEntry",
  625. "label": "ACL Entry",
  626. "schema": {
  627. "type": "dict",
  628. "attrs": [
  629. {
  630. "variable": "id_type",
  631. "label": "ID Type",
  632. "schema": {
  633. "type": "string",
  634. "enum": [
  635. {
  636. "value": "USER",
  637. "description": "Entry is for a USER"
  638. },
  639. {
  640. "value": "GROUP",
  641. "description": "Entry is for a GROUP"
  642. }
  643. ],
  644. "default": "USER"
  645. }
  646. },
  647. {
  648. "variable": "id",
  649. "label": "ID",
  650. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  651. "schema": {
  652. "type": "int",
  653. "required": true,
  654. "min": 0
  655. }
  656. },
  657. {
  658. "variable": "access",
  659. "label": "Access",
  660. "schema": {
  661. "type": "string",
  662. "enum": [
  663. {
  664. "value": "READ",
  665. "description": "Read Access"
  666. },
  667. {
  668. "value": "MODIFY",
  669. "description": "Modify Access"
  670. },
  671. {
  672. "value": "FULL_CONTROL",
  673. "description": "FULL_CONTROL Access"
  674. }
  675. ]
  676. }
  677. }
  678. ]
  679. }
  680. }
  681. ]
  682. }
  683. }
  684. ]
  685. }
  686. }
  687. ]
  688. }
  689. },
  690. {
  691. "variable": "hostPathConfig",
  692. "label": "Host Path Configuration",
  693. "schema": {
  694. "type": "dict",
  695. "show_if": [
  696. [
  697. "type",
  698. "=",
  699. "hostPath"
  700. ]
  701. ],
  702. "attrs": [
  703. {
  704. "variable": "aclEnable",
  705. "label": "Enable ACL",
  706. "description": "Enable ACL for the dataset.",
  707. "schema": {
  708. "type": "boolean",
  709. "default": false
  710. }
  711. },
  712. {
  713. "variable": "acl",
  714. "label": "ACL Configuration",
  715. "schema": {
  716. "type": "dict",
  717. "show_if": [
  718. [
  719. "aclEnable",
  720. "=",
  721. true
  722. ]
  723. ],
  724. "attrs": [
  725. {
  726. "variable": "path",
  727. "label": "Host Path",
  728. "description": "Host Path to perform ACL",
  729. "schema": {
  730. "type": "hostpath",
  731. "required": true,
  732. "empty": false
  733. }
  734. },
  735. {
  736. "variable": "entries",
  737. "label": "ACL Entries",
  738. "description": "ACL Entries",
  739. "schema": {
  740. "type": "list",
  741. "items": [
  742. {
  743. "variable": "aclEntry",
  744. "label": "ACL Entry",
  745. "schema": {
  746. "type": "dict",
  747. "attrs": [
  748. {
  749. "variable": "id_type",
  750. "label": "ID Type",
  751. "schema": {
  752. "type": "string",
  753. "enum": [
  754. {
  755. "value": "USER",
  756. "description": "Entry is for a USER"
  757. },
  758. {
  759. "value": "GROUP",
  760. "description": "Entry is for a GROUP"
  761. }
  762. ],
  763. "default": "USER"
  764. }
  765. },
  766. {
  767. "variable": "id",
  768. "label": "ID",
  769. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  770. "schema": {
  771. "type": "int",
  772. "required": true,
  773. "min": 0
  774. }
  775. },
  776. {
  777. "variable": "access",
  778. "label": "Access",
  779. "schema": {
  780. "type": "string",
  781. "enum": [
  782. {
  783. "value": "READ",
  784. "description": "Read Access"
  785. },
  786. {
  787. "value": "MODIFY",
  788. "description": "Modify Access"
  789. },
  790. {
  791. "value": "FULL_CONTROL",
  792. "description": "FULL_CONTROL Access"
  793. }
  794. ]
  795. }
  796. }
  797. ]
  798. }
  799. }
  800. ]
  801. }
  802. },
  803. {
  804. "variable": "options",
  805. "label": "ACL Options",
  806. "schema": {
  807. "type": "dict",
  808. "attrs": [
  809. {
  810. "variable": "force",
  811. "label": "Force Flag",
  812. "description": "Enabling `Force` applies ACL even if the path has existing data",
  813. "schema": {
  814. "type": "boolean",
  815. "default": false
  816. }
  817. }
  818. ]
  819. }
  820. }
  821. ],
  822. "$ref": [
  823. "normalize/acl"
  824. ]
  825. }
  826. },
  827. {
  828. "variable": "hostPath",
  829. "label": "Host Path",
  830. "description": "The host path to use for storage.",
  831. "schema": {
  832. "type": "hostpath",
  833. "show_if": [
  834. [
  835. "aclEnable",
  836. "=",
  837. false
  838. ]
  839. ],
  840. "required": true
  841. }
  842. }
  843. ]
  844. }
  845. }
  846. ]
  847. }
  848. },
  849. {
  850. "variable": "thumbs",
  851. "label": "Immich Thumbs Storage",
  852. "description": "The path to store Immich Thumbs.",
  853. "schema": {
  854. "type": "dict",
  855. "attrs": [
  856. {
  857. "variable": "type",
  858. "label": "Type",
  859. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  860. "schema": {
  861. "type": "string",
  862. "required": true,
  863. "immutable": true,
  864. "default": "ixVolume",
  865. "enum": [
  866. {
  867. "value": "hostPath",
  868. "description": "Host Path (Path that already exists on the system)"
  869. },
  870. {
  871. "value": "ixVolume",
  872. "description": "ixVolume (Dataset created automatically by the system)"
  873. }
  874. ]
  875. }
  876. },
  877. {
  878. "variable": "ixVolumeConfig",
  879. "label": "ixVolume Configuration",
  880. "description": "The configuration for the ixVolume dataset.",
  881. "schema": {
  882. "type": "dict",
  883. "show_if": [
  884. [
  885. "type",
  886. "=",
  887. "ixVolume"
  888. ]
  889. ],
  890. "$ref": [
  891. "normalize/ixVolume"
  892. ],
  893. "attrs": [
  894. {
  895. "variable": "aclEnable",
  896. "label": "Enable ACL",
  897. "description": "Enable ACL for the dataset.",
  898. "schema": {
  899. "type": "boolean",
  900. "default": false
  901. }
  902. },
  903. {
  904. "variable": "datasetName",
  905. "label": "Dataset Name",
  906. "description": "The name of the dataset to use for storage.",
  907. "schema": {
  908. "type": "string",
  909. "required": true,
  910. "immutable": true,
  911. "hidden": true,
  912. "default": "thumbs"
  913. }
  914. },
  915. {
  916. "variable": "aclEntries",
  917. "label": "ACL Configuration",
  918. "schema": {
  919. "type": "dict",
  920. "show_if": [
  921. [
  922. "aclEnable",
  923. "=",
  924. true
  925. ]
  926. ],
  927. "attrs": [
  928. {
  929. "variable": "path",
  930. "label": "Path",
  931. "description": "Path to perform ACL",
  932. "schema": {
  933. "type": "string",
  934. "hidden": true
  935. }
  936. },
  937. {
  938. "variable": "entries",
  939. "label": "ACL Entries",
  940. "description": "ACL Entries",
  941. "schema": {
  942. "type": "list",
  943. "items": [
  944. {
  945. "variable": "aclEntry",
  946. "label": "ACL Entry",
  947. "schema": {
  948. "type": "dict",
  949. "attrs": [
  950. {
  951. "variable": "id_type",
  952. "label": "ID Type",
  953. "schema": {
  954. "type": "string",
  955. "enum": [
  956. {
  957. "value": "USER",
  958. "description": "Entry is for a USER"
  959. },
  960. {
  961. "value": "GROUP",
  962. "description": "Entry is for a GROUP"
  963. }
  964. ],
  965. "default": "USER"
  966. }
  967. },
  968. {
  969. "variable": "id",
  970. "label": "ID",
  971. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  972. "schema": {
  973. "type": "int",
  974. "required": true,
  975. "min": 0
  976. }
  977. },
  978. {
  979. "variable": "access",
  980. "label": "Access",
  981. "schema": {
  982. "type": "string",
  983. "enum": [
  984. {
  985. "value": "READ",
  986. "description": "Read Access"
  987. },
  988. {
  989. "value": "MODIFY",
  990. "description": "Modify Access"
  991. },
  992. {
  993. "value": "FULL_CONTROL",
  994. "description": "FULL_CONTROL Access"
  995. }
  996. ]
  997. }
  998. }
  999. ]
  1000. }
  1001. }
  1002. ]
  1003. }
  1004. }
  1005. ]
  1006. }
  1007. }
  1008. ]
  1009. }
  1010. },
  1011. {
  1012. "variable": "hostPathConfig",
  1013. "label": "Host Path Configuration",
  1014. "schema": {
  1015. "type": "dict",
  1016. "show_if": [
  1017. [
  1018. "type",
  1019. "=",
  1020. "hostPath"
  1021. ]
  1022. ],
  1023. "attrs": [
  1024. {
  1025. "variable": "aclEnable",
  1026. "label": "Enable ACL",
  1027. "description": "Enable ACL for the dataset.",
  1028. "schema": {
  1029. "type": "boolean",
  1030. "default": false
  1031. }
  1032. },
  1033. {
  1034. "variable": "acl",
  1035. "label": "ACL Configuration",
  1036. "schema": {
  1037. "type": "dict",
  1038. "show_if": [
  1039. [
  1040. "aclEnable",
  1041. "=",
  1042. true
  1043. ]
  1044. ],
  1045. "attrs": [
  1046. {
  1047. "variable": "path",
  1048. "label": "Host Path",
  1049. "description": "Host Path to perform ACL",
  1050. "schema": {
  1051. "type": "hostpath",
  1052. "required": true,
  1053. "empty": false
  1054. }
  1055. },
  1056. {
  1057. "variable": "entries",
  1058. "label": "ACL Entries",
  1059. "description": "ACL Entries",
  1060. "schema": {
  1061. "type": "list",
  1062. "items": [
  1063. {
  1064. "variable": "aclEntry",
  1065. "label": "ACL Entry",
  1066. "schema": {
  1067. "type": "dict",
  1068. "attrs": [
  1069. {
  1070. "variable": "id_type",
  1071. "label": "ID Type",
  1072. "schema": {
  1073. "type": "string",
  1074. "enum": [
  1075. {
  1076. "value": "USER",
  1077. "description": "Entry is for a USER"
  1078. },
  1079. {
  1080. "value": "GROUP",
  1081. "description": "Entry is for a GROUP"
  1082. }
  1083. ],
  1084. "default": "USER"
  1085. }
  1086. },
  1087. {
  1088. "variable": "id",
  1089. "label": "ID",
  1090. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1091. "schema": {
  1092. "type": "int",
  1093. "required": true,
  1094. "min": 0
  1095. }
  1096. },
  1097. {
  1098. "variable": "access",
  1099. "label": "Access",
  1100. "schema": {
  1101. "type": "string",
  1102. "enum": [
  1103. {
  1104. "value": "READ",
  1105. "description": "Read Access"
  1106. },
  1107. {
  1108. "value": "MODIFY",
  1109. "description": "Modify Access"
  1110. },
  1111. {
  1112. "value": "FULL_CONTROL",
  1113. "description": "FULL_CONTROL Access"
  1114. }
  1115. ]
  1116. }
  1117. }
  1118. ]
  1119. }
  1120. }
  1121. ]
  1122. }
  1123. },
  1124. {
  1125. "variable": "options",
  1126. "label": "ACL Options",
  1127. "schema": {
  1128. "type": "dict",
  1129. "attrs": [
  1130. {
  1131. "variable": "force",
  1132. "label": "Force Flag",
  1133. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1134. "schema": {
  1135. "type": "boolean",
  1136. "default": false
  1137. }
  1138. }
  1139. ]
  1140. }
  1141. }
  1142. ],
  1143. "$ref": [
  1144. "normalize/acl"
  1145. ]
  1146. }
  1147. },
  1148. {
  1149. "variable": "hostPath",
  1150. "label": "Host Path",
  1151. "description": "The host path to use for storage.",
  1152. "schema": {
  1153. "type": "hostpath",
  1154. "show_if": [
  1155. [
  1156. "aclEnable",
  1157. "=",
  1158. false
  1159. ]
  1160. ],
  1161. "required": true
  1162. }
  1163. }
  1164. ]
  1165. }
  1166. }
  1167. ]
  1168. }
  1169. },
  1170. {
  1171. "variable": "profile",
  1172. "label": "Immich Profile Storage",
  1173. "description": "The path to store Immich Profile.",
  1174. "schema": {
  1175. "type": "dict",
  1176. "attrs": [
  1177. {
  1178. "variable": "type",
  1179. "label": "Type",
  1180. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1181. "schema": {
  1182. "type": "string",
  1183. "required": true,
  1184. "immutable": true,
  1185. "default": "ixVolume",
  1186. "enum": [
  1187. {
  1188. "value": "hostPath",
  1189. "description": "Host Path (Path that already exists on the system)"
  1190. },
  1191. {
  1192. "value": "ixVolume",
  1193. "description": "ixVolume (Dataset created automatically by the system)"
  1194. }
  1195. ]
  1196. }
  1197. },
  1198. {
  1199. "variable": "ixVolumeConfig",
  1200. "label": "ixVolume Configuration",
  1201. "description": "The configuration for the ixVolume dataset.",
  1202. "schema": {
  1203. "type": "dict",
  1204. "show_if": [
  1205. [
  1206. "type",
  1207. "=",
  1208. "ixVolume"
  1209. ]
  1210. ],
  1211. "$ref": [
  1212. "normalize/ixVolume"
  1213. ],
  1214. "attrs": [
  1215. {
  1216. "variable": "aclEnable",
  1217. "label": "Enable ACL",
  1218. "description": "Enable ACL for the dataset.",
  1219. "schema": {
  1220. "type": "boolean",
  1221. "default": false
  1222. }
  1223. },
  1224. {
  1225. "variable": "datasetName",
  1226. "label": "Dataset Name",
  1227. "description": "The name of the dataset to use for storage.",
  1228. "schema": {
  1229. "type": "string",
  1230. "required": true,
  1231. "immutable": true,
  1232. "hidden": true,
  1233. "default": "profile"
  1234. }
  1235. },
  1236. {
  1237. "variable": "aclEntries",
  1238. "label": "ACL Configuration",
  1239. "schema": {
  1240. "type": "dict",
  1241. "show_if": [
  1242. [
  1243. "aclEnable",
  1244. "=",
  1245. true
  1246. ]
  1247. ],
  1248. "attrs": [
  1249. {
  1250. "variable": "path",
  1251. "label": "Path",
  1252. "description": "Path to perform ACL",
  1253. "schema": {
  1254. "type": "string",
  1255. "hidden": true
  1256. }
  1257. },
  1258. {
  1259. "variable": "entries",
  1260. "label": "ACL Entries",
  1261. "description": "ACL Entries",
  1262. "schema": {
  1263. "type": "list",
  1264. "items": [
  1265. {
  1266. "variable": "aclEntry",
  1267. "label": "ACL Entry",
  1268. "schema": {
  1269. "type": "dict",
  1270. "attrs": [
  1271. {
  1272. "variable": "id_type",
  1273. "label": "ID Type",
  1274. "schema": {
  1275. "type": "string",
  1276. "enum": [
  1277. {
  1278. "value": "USER",
  1279. "description": "Entry is for a USER"
  1280. },
  1281. {
  1282. "value": "GROUP",
  1283. "description": "Entry is for a GROUP"
  1284. }
  1285. ],
  1286. "default": "USER"
  1287. }
  1288. },
  1289. {
  1290. "variable": "id",
  1291. "label": "ID",
  1292. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1293. "schema": {
  1294. "type": "int",
  1295. "required": true,
  1296. "min": 0
  1297. }
  1298. },
  1299. {
  1300. "variable": "access",
  1301. "label": "Access",
  1302. "schema": {
  1303. "type": "string",
  1304. "enum": [
  1305. {
  1306. "value": "READ",
  1307. "description": "Read Access"
  1308. },
  1309. {
  1310. "value": "MODIFY",
  1311. "description": "Modify Access"
  1312. },
  1313. {
  1314. "value": "FULL_CONTROL",
  1315. "description": "FULL_CONTROL Access"
  1316. }
  1317. ]
  1318. }
  1319. }
  1320. ]
  1321. }
  1322. }
  1323. ]
  1324. }
  1325. }
  1326. ]
  1327. }
  1328. }
  1329. ]
  1330. }
  1331. },
  1332. {
  1333. "variable": "hostPathConfig",
  1334. "label": "Host Path Configuration",
  1335. "schema": {
  1336. "type": "dict",
  1337. "show_if": [
  1338. [
  1339. "type",
  1340. "=",
  1341. "hostPath"
  1342. ]
  1343. ],
  1344. "attrs": [
  1345. {
  1346. "variable": "aclEnable",
  1347. "label": "Enable ACL",
  1348. "description": "Enable ACL for the dataset.",
  1349. "schema": {
  1350. "type": "boolean",
  1351. "default": false
  1352. }
  1353. },
  1354. {
  1355. "variable": "acl",
  1356. "label": "ACL Configuration",
  1357. "schema": {
  1358. "type": "dict",
  1359. "show_if": [
  1360. [
  1361. "aclEnable",
  1362. "=",
  1363. true
  1364. ]
  1365. ],
  1366. "attrs": [
  1367. {
  1368. "variable": "path",
  1369. "label": "Host Path",
  1370. "description": "Host Path to perform ACL",
  1371. "schema": {
  1372. "type": "hostpath",
  1373. "required": true,
  1374. "empty": false
  1375. }
  1376. },
  1377. {
  1378. "variable": "entries",
  1379. "label": "ACL Entries",
  1380. "description": "ACL Entries",
  1381. "schema": {
  1382. "type": "list",
  1383. "items": [
  1384. {
  1385. "variable": "aclEntry",
  1386. "label": "ACL Entry",
  1387. "schema": {
  1388. "type": "dict",
  1389. "attrs": [
  1390. {
  1391. "variable": "id_type",
  1392. "label": "ID Type",
  1393. "schema": {
  1394. "type": "string",
  1395. "enum": [
  1396. {
  1397. "value": "USER",
  1398. "description": "Entry is for a USER"
  1399. },
  1400. {
  1401. "value": "GROUP",
  1402. "description": "Entry is for a GROUP"
  1403. }
  1404. ],
  1405. "default": "USER"
  1406. }
  1407. },
  1408. {
  1409. "variable": "id",
  1410. "label": "ID",
  1411. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1412. "schema": {
  1413. "type": "int",
  1414. "required": true,
  1415. "min": 0
  1416. }
  1417. },
  1418. {
  1419. "variable": "access",
  1420. "label": "Access",
  1421. "schema": {
  1422. "type": "string",
  1423. "enum": [
  1424. {
  1425. "value": "READ",
  1426. "description": "Read Access"
  1427. },
  1428. {
  1429. "value": "MODIFY",
  1430. "description": "Modify Access"
  1431. },
  1432. {
  1433. "value": "FULL_CONTROL",
  1434. "description": "FULL_CONTROL Access"
  1435. }
  1436. ]
  1437. }
  1438. }
  1439. ]
  1440. }
  1441. }
  1442. ]
  1443. }
  1444. },
  1445. {
  1446. "variable": "options",
  1447. "label": "ACL Options",
  1448. "schema": {
  1449. "type": "dict",
  1450. "attrs": [
  1451. {
  1452. "variable": "force",
  1453. "label": "Force Flag",
  1454. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1455. "schema": {
  1456. "type": "boolean",
  1457. "default": false
  1458. }
  1459. }
  1460. ]
  1461. }
  1462. }
  1463. ],
  1464. "$ref": [
  1465. "normalize/acl"
  1466. ]
  1467. }
  1468. },
  1469. {
  1470. "variable": "hostPath",
  1471. "label": "Host Path",
  1472. "description": "The host path to use for storage.",
  1473. "schema": {
  1474. "type": "hostpath",
  1475. "show_if": [
  1476. [
  1477. "aclEnable",
  1478. "=",
  1479. false
  1480. ]
  1481. ],
  1482. "required": true
  1483. }
  1484. }
  1485. ]
  1486. }
  1487. }
  1488. ]
  1489. }
  1490. },
  1491. {
  1492. "variable": "video",
  1493. "label": "Immich Video Storage",
  1494. "description": "The path to store Immich Video.",
  1495. "schema": {
  1496. "type": "dict",
  1497. "attrs": [
  1498. {
  1499. "variable": "type",
  1500. "label": "Type",
  1501. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1502. "schema": {
  1503. "type": "string",
  1504. "required": true,
  1505. "immutable": true,
  1506. "default": "ixVolume",
  1507. "enum": [
  1508. {
  1509. "value": "hostPath",
  1510. "description": "Host Path (Path that already exists on the system)"
  1511. },
  1512. {
  1513. "value": "ixVolume",
  1514. "description": "ixVolume (Dataset created automatically by the system)"
  1515. }
  1516. ]
  1517. }
  1518. },
  1519. {
  1520. "variable": "ixVolumeConfig",
  1521. "label": "ixVolume Configuration",
  1522. "description": "The configuration for the ixVolume dataset.",
  1523. "schema": {
  1524. "type": "dict",
  1525. "show_if": [
  1526. [
  1527. "type",
  1528. "=",
  1529. "ixVolume"
  1530. ]
  1531. ],
  1532. "$ref": [
  1533. "normalize/ixVolume"
  1534. ],
  1535. "attrs": [
  1536. {
  1537. "variable": "aclEnable",
  1538. "label": "Enable ACL",
  1539. "description": "Enable ACL for the dataset.",
  1540. "schema": {
  1541. "type": "boolean",
  1542. "default": false
  1543. }
  1544. },
  1545. {
  1546. "variable": "datasetName",
  1547. "label": "Dataset Name",
  1548. "description": "The name of the dataset to use for storage.",
  1549. "schema": {
  1550. "type": "string",
  1551. "required": true,
  1552. "immutable": true,
  1553. "hidden": true,
  1554. "default": "video"
  1555. }
  1556. },
  1557. {
  1558. "variable": "aclEntries",
  1559. "label": "ACL Configuration",
  1560. "schema": {
  1561. "type": "dict",
  1562. "show_if": [
  1563. [
  1564. "aclEnable",
  1565. "=",
  1566. true
  1567. ]
  1568. ],
  1569. "attrs": [
  1570. {
  1571. "variable": "path",
  1572. "label": "Path",
  1573. "description": "Path to perform ACL",
  1574. "schema": {
  1575. "type": "string",
  1576. "hidden": true
  1577. }
  1578. },
  1579. {
  1580. "variable": "entries",
  1581. "label": "ACL Entries",
  1582. "description": "ACL Entries",
  1583. "schema": {
  1584. "type": "list",
  1585. "items": [
  1586. {
  1587. "variable": "aclEntry",
  1588. "label": "ACL Entry",
  1589. "schema": {
  1590. "type": "dict",
  1591. "attrs": [
  1592. {
  1593. "variable": "id_type",
  1594. "label": "ID Type",
  1595. "schema": {
  1596. "type": "string",
  1597. "enum": [
  1598. {
  1599. "value": "USER",
  1600. "description": "Entry is for a USER"
  1601. },
  1602. {
  1603. "value": "GROUP",
  1604. "description": "Entry is for a GROUP"
  1605. }
  1606. ],
  1607. "default": "USER"
  1608. }
  1609. },
  1610. {
  1611. "variable": "id",
  1612. "label": "ID",
  1613. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1614. "schema": {
  1615. "type": "int",
  1616. "required": true,
  1617. "min": 0
  1618. }
  1619. },
  1620. {
  1621. "variable": "access",
  1622. "label": "Access",
  1623. "schema": {
  1624. "type": "string",
  1625. "enum": [
  1626. {
  1627. "value": "READ",
  1628. "description": "Read Access"
  1629. },
  1630. {
  1631. "value": "MODIFY",
  1632. "description": "Modify Access"
  1633. },
  1634. {
  1635. "value": "FULL_CONTROL",
  1636. "description": "FULL_CONTROL Access"
  1637. }
  1638. ]
  1639. }
  1640. }
  1641. ]
  1642. }
  1643. }
  1644. ]
  1645. }
  1646. }
  1647. ]
  1648. }
  1649. }
  1650. ]
  1651. }
  1652. },
  1653. {
  1654. "variable": "hostPathConfig",
  1655. "label": "Host Path Configuration",
  1656. "schema": {
  1657. "type": "dict",
  1658. "show_if": [
  1659. [
  1660. "type",
  1661. "=",
  1662. "hostPath"
  1663. ]
  1664. ],
  1665. "attrs": [
  1666. {
  1667. "variable": "aclEnable",
  1668. "label": "Enable ACL",
  1669. "description": "Enable ACL for the dataset.",
  1670. "schema": {
  1671. "type": "boolean",
  1672. "default": false
  1673. }
  1674. },
  1675. {
  1676. "variable": "acl",
  1677. "label": "ACL Configuration",
  1678. "schema": {
  1679. "type": "dict",
  1680. "show_if": [
  1681. [
  1682. "aclEnable",
  1683. "=",
  1684. true
  1685. ]
  1686. ],
  1687. "attrs": [
  1688. {
  1689. "variable": "path",
  1690. "label": "Host Path",
  1691. "description": "Host Path to perform ACL",
  1692. "schema": {
  1693. "type": "hostpath",
  1694. "required": true,
  1695. "empty": false
  1696. }
  1697. },
  1698. {
  1699. "variable": "entries",
  1700. "label": "ACL Entries",
  1701. "description": "ACL Entries",
  1702. "schema": {
  1703. "type": "list",
  1704. "items": [
  1705. {
  1706. "variable": "aclEntry",
  1707. "label": "ACL Entry",
  1708. "schema": {
  1709. "type": "dict",
  1710. "attrs": [
  1711. {
  1712. "variable": "id_type",
  1713. "label": "ID Type",
  1714. "schema": {
  1715. "type": "string",
  1716. "enum": [
  1717. {
  1718. "value": "USER",
  1719. "description": "Entry is for a USER"
  1720. },
  1721. {
  1722. "value": "GROUP",
  1723. "description": "Entry is for a GROUP"
  1724. }
  1725. ],
  1726. "default": "USER"
  1727. }
  1728. },
  1729. {
  1730. "variable": "id",
  1731. "label": "ID",
  1732. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1733. "schema": {
  1734. "type": "int",
  1735. "required": true,
  1736. "min": 0
  1737. }
  1738. },
  1739. {
  1740. "variable": "access",
  1741. "label": "Access",
  1742. "schema": {
  1743. "type": "string",
  1744. "enum": [
  1745. {
  1746. "value": "READ",
  1747. "description": "Read Access"
  1748. },
  1749. {
  1750. "value": "MODIFY",
  1751. "description": "Modify Access"
  1752. },
  1753. {
  1754. "value": "FULL_CONTROL",
  1755. "description": "FULL_CONTROL Access"
  1756. }
  1757. ]
  1758. }
  1759. }
  1760. ]
  1761. }
  1762. }
  1763. ]
  1764. }
  1765. },
  1766. {
  1767. "variable": "options",
  1768. "label": "ACL Options",
  1769. "schema": {
  1770. "type": "dict",
  1771. "attrs": [
  1772. {
  1773. "variable": "force",
  1774. "label": "Force Flag",
  1775. "description": "Enabling `Force` applies ACL even if the path has existing data",
  1776. "schema": {
  1777. "type": "boolean",
  1778. "default": false
  1779. }
  1780. }
  1781. ]
  1782. }
  1783. }
  1784. ],
  1785. "$ref": [
  1786. "normalize/acl"
  1787. ]
  1788. }
  1789. },
  1790. {
  1791. "variable": "hostPath",
  1792. "label": "Host Path",
  1793. "description": "The host path to use for storage.",
  1794. "schema": {
  1795. "type": "hostpath",
  1796. "show_if": [
  1797. [
  1798. "aclEnable",
  1799. "=",
  1800. false
  1801. ]
  1802. ],
  1803. "required": true
  1804. }
  1805. }
  1806. ]
  1807. }
  1808. }
  1809. ]
  1810. }
  1811. },
  1812. {
  1813. "variable": "pgData",
  1814. "label": "Immich Postgres Data Storage",
  1815. "description": "The path to store Immich Postgres Data.",
  1816. "schema": {
  1817. "type": "dict",
  1818. "attrs": [
  1819. {
  1820. "variable": "type",
  1821. "label": "Type",
  1822. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1823. "schema": {
  1824. "type": "string",
  1825. "required": true,
  1826. "immutable": true,
  1827. "default": "ixVolume",
  1828. "enum": [
  1829. {
  1830. "value": "hostPath",
  1831. "description": "Host Path (Path that already exists on the system)"
  1832. },
  1833. {
  1834. "value": "ixVolume",
  1835. "description": "ixVolume (Dataset created automatically by the system)"
  1836. }
  1837. ]
  1838. }
  1839. },
  1840. {
  1841. "variable": "ixVolumeConfig",
  1842. "label": "ixVolume Configuration",
  1843. "description": "The configuration for the ixVolume dataset.",
  1844. "schema": {
  1845. "type": "dict",
  1846. "hidden": true,
  1847. "show_if": [
  1848. [
  1849. "type",
  1850. "=",
  1851. "ixVolume"
  1852. ]
  1853. ],
  1854. "$ref": [
  1855. "normalize/ixVolume"
  1856. ],
  1857. "attrs": [
  1858. {
  1859. "variable": "aclEnable",
  1860. "label": "Enable ACL",
  1861. "description": "Enable ACL for the dataset.",
  1862. "schema": {
  1863. "type": "boolean",
  1864. "hidden": true,
  1865. "default": false
  1866. }
  1867. },
  1868. {
  1869. "variable": "datasetName",
  1870. "label": "Dataset Name",
  1871. "description": "The name of the dataset to use for storage.",
  1872. "schema": {
  1873. "type": "string",
  1874. "required": true,
  1875. "immutable": true,
  1876. "hidden": true,
  1877. "default": "pgData"
  1878. }
  1879. },
  1880. {
  1881. "variable": "aclEntries",
  1882. "label": "ACL Configuration",
  1883. "schema": {
  1884. "type": "dict",
  1885. "show_if": [
  1886. [
  1887. "aclEnable",
  1888. "=",
  1889. true
  1890. ]
  1891. ],
  1892. "attrs": [
  1893. {
  1894. "variable": "path",
  1895. "label": "Path",
  1896. "description": "Path to perform ACL",
  1897. "schema": {
  1898. "type": "string",
  1899. "hidden": true
  1900. }
  1901. },
  1902. {
  1903. "variable": "entries",
  1904. "label": "ACL Entries",
  1905. "description": "ACL Entries",
  1906. "schema": {
  1907. "type": "list",
  1908. "items": [
  1909. {
  1910. "variable": "aclEntry",
  1911. "label": "ACL Entry",
  1912. "schema": {
  1913. "type": "dict",
  1914. "attrs": [
  1915. {
  1916. "variable": "id_type",
  1917. "label": "ID Type",
  1918. "schema": {
  1919. "type": "string",
  1920. "enum": [
  1921. {
  1922. "value": "USER",
  1923. "description": "Entry is for a USER"
  1924. },
  1925. {
  1926. "value": "GROUP",
  1927. "description": "Entry is for a GROUP"
  1928. }
  1929. ],
  1930. "default": "USER"
  1931. }
  1932. },
  1933. {
  1934. "variable": "id",
  1935. "label": "ID",
  1936. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  1937. "schema": {
  1938. "type": "int",
  1939. "required": true,
  1940. "min": 0
  1941. }
  1942. },
  1943. {
  1944. "variable": "access",
  1945. "label": "Access",
  1946. "schema": {
  1947. "type": "string",
  1948. "enum": [
  1949. {
  1950. "value": "READ",
  1951. "description": "Read Access"
  1952. },
  1953. {
  1954. "value": "MODIFY",
  1955. "description": "Modify Access"
  1956. },
  1957. {
  1958. "value": "FULL_CONTROL",
  1959. "description": "FULL_CONTROL Access"
  1960. }
  1961. ]
  1962. }
  1963. }
  1964. ]
  1965. }
  1966. }
  1967. ]
  1968. }
  1969. }
  1970. ]
  1971. }
  1972. }
  1973. ]
  1974. }
  1975. },
  1976. {
  1977. "variable": "hostPathConfig",
  1978. "label": "Host Path Configuration",
  1979. "schema": {
  1980. "type": "dict",
  1981. "show_if": [
  1982. [
  1983. "type",
  1984. "=",
  1985. "hostPath"
  1986. ]
  1987. ],
  1988. "attrs": [
  1989. {
  1990. "variable": "aclEnable",
  1991. "label": "Enable ACL",
  1992. "description": "Enable ACL for the dataset.",
  1993. "schema": {
  1994. "type": "boolean",
  1995. "hidden": true,
  1996. "default": false
  1997. }
  1998. },
  1999. {
  2000. "variable": "acl",
  2001. "label": "ACL Configuration",
  2002. "schema": {
  2003. "type": "dict",
  2004. "show_if": [
  2005. [
  2006. "aclEnable",
  2007. "=",
  2008. true
  2009. ]
  2010. ],
  2011. "attrs": [
  2012. {
  2013. "variable": "path",
  2014. "label": "Host Path",
  2015. "description": "Host Path to perform ACL",
  2016. "schema": {
  2017. "type": "hostpath",
  2018. "required": true,
  2019. "empty": false
  2020. }
  2021. },
  2022. {
  2023. "variable": "entries",
  2024. "label": "ACL Entries",
  2025. "description": "ACL Entries",
  2026. "schema": {
  2027. "type": "list",
  2028. "items": [
  2029. {
  2030. "variable": "aclEntry",
  2031. "label": "ACL Entry",
  2032. "schema": {
  2033. "type": "dict",
  2034. "attrs": [
  2035. {
  2036. "variable": "id_type",
  2037. "label": "ID Type",
  2038. "schema": {
  2039. "type": "string",
  2040. "enum": [
  2041. {
  2042. "value": "USER",
  2043. "description": "Entry is for a USER"
  2044. },
  2045. {
  2046. "value": "GROUP",
  2047. "description": "Entry is for a GROUP"
  2048. }
  2049. ],
  2050. "default": "USER"
  2051. }
  2052. },
  2053. {
  2054. "variable": "id",
  2055. "label": "ID",
  2056. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  2057. "schema": {
  2058. "type": "int",
  2059. "required": true,
  2060. "min": 0
  2061. }
  2062. },
  2063. {
  2064. "variable": "access",
  2065. "label": "Access",
  2066. "schema": {
  2067. "type": "string",
  2068. "enum": [
  2069. {
  2070. "value": "READ",
  2071. "description": "Read Access"
  2072. },
  2073. {
  2074. "value": "MODIFY",
  2075. "description": "Modify Access"
  2076. },
  2077. {
  2078. "value": "FULL_CONTROL",
  2079. "description": "FULL_CONTROL Access"
  2080. }
  2081. ]
  2082. }
  2083. }
  2084. ]
  2085. }
  2086. }
  2087. ]
  2088. }
  2089. },
  2090. {
  2091. "variable": "options",
  2092. "label": "ACL Options",
  2093. "schema": {
  2094. "type": "dict",
  2095. "attrs": [
  2096. {
  2097. "variable": "force",
  2098. "label": "Force Flag",
  2099. "description": "Enabling `Force` applies ACL even if the path has existing data",
  2100. "schema": {
  2101. "type": "boolean",
  2102. "default": false
  2103. }
  2104. }
  2105. ]
  2106. }
  2107. }
  2108. ],
  2109. "$ref": [
  2110. "normalize/acl"
  2111. ]
  2112. }
  2113. },
  2114. {
  2115. "variable": "hostPath",
  2116. "label": "Host Path",
  2117. "description": "The host path to use for storage.",
  2118. "schema": {
  2119. "type": "hostpath",
  2120. "show_if": [
  2121. [
  2122. "aclEnable",
  2123. "=",
  2124. false
  2125. ]
  2126. ],
  2127. "required": true
  2128. }
  2129. }
  2130. ]
  2131. }
  2132. }
  2133. ]
  2134. }
  2135. },
  2136. {
  2137. "variable": "pgBackup",
  2138. "label": "Immich Postgres Backup Storage",
  2139. "description": "The path to store Immich Postgres Backup.",
  2140. "schema": {
  2141. "type": "dict",
  2142. "attrs": [
  2143. {
  2144. "variable": "type",
  2145. "label": "Type",
  2146. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  2147. "schema": {
  2148. "type": "string",
  2149. "required": true,
  2150. "immutable": true,
  2151. "default": "ixVolume",
  2152. "enum": [
  2153. {
  2154. "value": "hostPath",
  2155. "description": "Host Path (Path that already exists on the system)"
  2156. },
  2157. {
  2158. "value": "ixVolume",
  2159. "description": "ixVolume (Dataset created automatically by the system)"
  2160. }
  2161. ]
  2162. }
  2163. },
  2164. {
  2165. "variable": "ixVolumeConfig",
  2166. "label": "ixVolume Configuration",
  2167. "description": "The configuration for the ixVolume dataset.",
  2168. "schema": {
  2169. "type": "dict",
  2170. "hidden": true,
  2171. "show_if": [
  2172. [
  2173. "type",
  2174. "=",
  2175. "ixVolume"
  2176. ]
  2177. ],
  2178. "$ref": [
  2179. "normalize/ixVolume"
  2180. ],
  2181. "attrs": [
  2182. {
  2183. "variable": "aclEnable",
  2184. "label": "Enable ACL",
  2185. "description": "Enable ACL for the dataset.",
  2186. "schema": {
  2187. "type": "boolean",
  2188. "hidden": true,
  2189. "default": false
  2190. }
  2191. },
  2192. {
  2193. "variable": "datasetName",
  2194. "label": "Dataset Name",
  2195. "description": "The name of the dataset to use for storage.",
  2196. "schema": {
  2197. "type": "string",
  2198. "required": true,
  2199. "immutable": true,
  2200. "hidden": true,
  2201. "default": "pgBackup"
  2202. }
  2203. },
  2204. {
  2205. "variable": "aclEntries",
  2206. "label": "ACL Configuration",
  2207. "schema": {
  2208. "type": "dict",
  2209. "show_if": [
  2210. [
  2211. "aclEnable",
  2212. "=",
  2213. true
  2214. ]
  2215. ],
  2216. "attrs": [
  2217. {
  2218. "variable": "path",
  2219. "label": "Path",
  2220. "description": "Path to perform ACL",
  2221. "schema": {
  2222. "type": "string",
  2223. "hidden": true
  2224. }
  2225. },
  2226. {
  2227. "variable": "entries",
  2228. "label": "ACL Entries",
  2229. "description": "ACL Entries",
  2230. "schema": {
  2231. "type": "list",
  2232. "items": [
  2233. {
  2234. "variable": "aclEntry",
  2235. "label": "ACL Entry",
  2236. "schema": {
  2237. "type": "dict",
  2238. "attrs": [
  2239. {
  2240. "variable": "id_type",
  2241. "label": "ID Type",
  2242. "schema": {
  2243. "type": "string",
  2244. "enum": [
  2245. {
  2246. "value": "USER",
  2247. "description": "Entry is for a USER"
  2248. },
  2249. {
  2250. "value": "GROUP",
  2251. "description": "Entry is for a GROUP"
  2252. }
  2253. ],
  2254. "default": "USER"
  2255. }
  2256. },
  2257. {
  2258. "variable": "id",
  2259. "label": "ID",
  2260. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  2261. "schema": {
  2262. "type": "int",
  2263. "required": true,
  2264. "min": 0
  2265. }
  2266. },
  2267. {
  2268. "variable": "access",
  2269. "label": "Access",
  2270. "schema": {
  2271. "type": "string",
  2272. "enum": [
  2273. {
  2274. "value": "READ",
  2275. "description": "Read Access"
  2276. },
  2277. {
  2278. "value": "MODIFY",
  2279. "description": "Modify Access"
  2280. },
  2281. {
  2282. "value": "FULL_CONTROL",
  2283. "description": "FULL_CONTROL Access"
  2284. }
  2285. ]
  2286. }
  2287. }
  2288. ]
  2289. }
  2290. }
  2291. ]
  2292. }
  2293. }
  2294. ]
  2295. }
  2296. }
  2297. ]
  2298. }
  2299. },
  2300. {
  2301. "variable": "hostPathConfig",
  2302. "label": "Host Path Configuration",
  2303. "schema": {
  2304. "type": "dict",
  2305. "show_if": [
  2306. [
  2307. "type",
  2308. "=",
  2309. "hostPath"
  2310. ]
  2311. ],
  2312. "attrs": [
  2313. {
  2314. "variable": "aclEnable",
  2315. "label": "Enable ACL",
  2316. "description": "Enable ACL for the dataset.",
  2317. "schema": {
  2318. "type": "boolean",
  2319. "hidden": true,
  2320. "default": false
  2321. }
  2322. },
  2323. {
  2324. "variable": "acl",
  2325. "label": "ACL Configuration",
  2326. "schema": {
  2327. "type": "dict",
  2328. "show_if": [
  2329. [
  2330. "aclEnable",
  2331. "=",
  2332. true
  2333. ]
  2334. ],
  2335. "attrs": [
  2336. {
  2337. "variable": "path",
  2338. "label": "Host Path",
  2339. "description": "Host Path to perform ACL",
  2340. "schema": {
  2341. "type": "hostpath",
  2342. "required": true,
  2343. "empty": false
  2344. }
  2345. },
  2346. {
  2347. "variable": "entries",
  2348. "label": "ACL Entries",
  2349. "description": "ACL Entries",
  2350. "schema": {
  2351. "type": "list",
  2352. "items": [
  2353. {
  2354. "variable": "aclEntry",
  2355. "label": "ACL Entry",
  2356. "schema": {
  2357. "type": "dict",
  2358. "attrs": [
  2359. {
  2360. "variable": "id_type",
  2361. "label": "ID Type",
  2362. "schema": {
  2363. "type": "string",
  2364. "enum": [
  2365. {
  2366. "value": "USER",
  2367. "description": "Entry is for a USER"
  2368. },
  2369. {
  2370. "value": "GROUP",
  2371. "description": "Entry is for a GROUP"
  2372. }
  2373. ],
  2374. "default": "USER"
  2375. }
  2376. },
  2377. {
  2378. "variable": "id",
  2379. "label": "ID",
  2380. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  2381. "schema": {
  2382. "type": "int",
  2383. "required": true,
  2384. "min": 0
  2385. }
  2386. },
  2387. {
  2388. "variable": "access",
  2389. "label": "Access",
  2390. "schema": {
  2391. "type": "string",
  2392. "enum": [
  2393. {
  2394. "value": "READ",
  2395. "description": "Read Access"
  2396. },
  2397. {
  2398. "value": "MODIFY",
  2399. "description": "Modify Access"
  2400. },
  2401. {
  2402. "value": "FULL_CONTROL",
  2403. "description": "FULL_CONTROL Access"
  2404. }
  2405. ]
  2406. }
  2407. }
  2408. ]
  2409. }
  2410. }
  2411. ]
  2412. }
  2413. },
  2414. {
  2415. "variable": "options",
  2416. "label": "ACL Options",
  2417. "schema": {
  2418. "type": "dict",
  2419. "attrs": [
  2420. {
  2421. "variable": "force",
  2422. "label": "Force Flag",
  2423. "description": "Enabling `Force` applies ACL even if the path has existing data",
  2424. "schema": {
  2425. "type": "boolean",
  2426. "default": false
  2427. }
  2428. }
  2429. ]
  2430. }
  2431. }
  2432. ],
  2433. "$ref": [
  2434. "normalize/acl"
  2435. ]
  2436. }
  2437. },
  2438. {
  2439. "variable": "hostPath",
  2440. "label": "Host Path",
  2441. "description": "The host path to use for storage.",
  2442. "schema": {
  2443. "type": "hostpath",
  2444. "show_if": [
  2445. [
  2446. "aclEnable",
  2447. "=",
  2448. false
  2449. ]
  2450. ],
  2451. "required": true
  2452. }
  2453. }
  2454. ]
  2455. }
  2456. }
  2457. ]
  2458. }
  2459. },
  2460. {
  2461. "variable": "additionalStorages",
  2462. "label": "Additional Storage",
  2463. "description": "Additional storage for Immich.",
  2464. "schema": {
  2465. "type": "list",
  2466. "default": [],
  2467. "items": [
  2468. {
  2469. "variable": "storageEntry",
  2470. "label": "Storage Entry",
  2471. "schema": {
  2472. "type": "dict",
  2473. "attrs": [
  2474. {
  2475. "variable": "type",
  2476. "label": "Type",
  2477. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.</br>\nSMB Share: Is a SMB share that is mounted to a persistent volume claim.\n",
  2478. "schema": {
  2479. "type": "string",
  2480. "required": true,
  2481. "default": "ixVolume",
  2482. "immutable": true,
  2483. "enum": [
  2484. {
  2485. "value": "hostPath",
  2486. "description": "Host Path (Path that already exists on the system)"
  2487. },
  2488. {
  2489. "value": "ixVolume",
  2490. "description": "ixVolume (Dataset created automatically by the system)"
  2491. },
  2492. {
  2493. "value": "smb-pv-pvc",
  2494. "description": "SMB Share (Mounts a persistent volume claim to a SMB share)"
  2495. }
  2496. ]
  2497. }
  2498. },
  2499. {
  2500. "variable": "readOnly",
  2501. "label": "Read Only",
  2502. "description": "Mount the volume as read only.",
  2503. "schema": {
  2504. "type": "boolean",
  2505. "default": false
  2506. }
  2507. },
  2508. {
  2509. "variable": "mountPath",
  2510. "label": "Mount Path",
  2511. "description": "The path inside the container to mount the storage.",
  2512. "schema": {
  2513. "type": "path",
  2514. "required": true
  2515. }
  2516. },
  2517. {
  2518. "variable": "hostPathConfig",
  2519. "label": "Host Path Configuration",
  2520. "schema": {
  2521. "type": "dict",
  2522. "show_if": [
  2523. [
  2524. "type",
  2525. "=",
  2526. "hostPath"
  2527. ]
  2528. ],
  2529. "attrs": [
  2530. {
  2531. "variable": "aclEnable",
  2532. "label": "Enable ACL",
  2533. "description": "Enable ACL for the dataset.",
  2534. "schema": {
  2535. "type": "boolean",
  2536. "default": false
  2537. }
  2538. },
  2539. {
  2540. "variable": "acl",
  2541. "label": "ACL Configuration",
  2542. "schema": {
  2543. "type": "dict",
  2544. "show_if": [
  2545. [
  2546. "aclEnable",
  2547. "=",
  2548. true
  2549. ]
  2550. ],
  2551. "attrs": [
  2552. {
  2553. "variable": "path",
  2554. "label": "Host Path",
  2555. "description": "Host Path to perform ACL",
  2556. "schema": {
  2557. "type": "hostpath",
  2558. "required": true,
  2559. "empty": false
  2560. }
  2561. },
  2562. {
  2563. "variable": "entries",
  2564. "label": "ACL Entries",
  2565. "description": "ACL Entries",
  2566. "schema": {
  2567. "type": "list",
  2568. "items": [
  2569. {
  2570. "variable": "aclEntry",
  2571. "label": "ACL Entry",
  2572. "schema": {
  2573. "type": "dict",
  2574. "attrs": [
  2575. {
  2576. "variable": "id_type",
  2577. "label": "ID Type",
  2578. "schema": {
  2579. "type": "string",
  2580. "enum": [
  2581. {
  2582. "value": "USER",
  2583. "description": "Entry is for a USER"
  2584. },
  2585. {
  2586. "value": "GROUP",
  2587. "description": "Entry is for a GROUP"
  2588. }
  2589. ],
  2590. "default": "USER"
  2591. }
  2592. },
  2593. {
  2594. "variable": "id",
  2595. "label": "ID",
  2596. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  2597. "schema": {
  2598. "type": "int",
  2599. "required": true,
  2600. "min": 0
  2601. }
  2602. },
  2603. {
  2604. "variable": "access",
  2605. "label": "Access",
  2606. "schema": {
  2607. "type": "string",
  2608. "enum": [
  2609. {
  2610. "value": "READ",
  2611. "description": "Read Access"
  2612. },
  2613. {
  2614. "value": "MODIFY",
  2615. "description": "Modify Access"
  2616. },
  2617. {
  2618. "value": "FULL_CONTROL",
  2619. "description": "FULL_CONTROL Access"
  2620. }
  2621. ]
  2622. }
  2623. }
  2624. ]
  2625. }
  2626. }
  2627. ]
  2628. }
  2629. },
  2630. {
  2631. "variable": "options",
  2632. "label": "ACL Options",
  2633. "schema": {
  2634. "type": "dict",
  2635. "attrs": [
  2636. {
  2637. "variable": "force",
  2638. "label": "Force Flag",
  2639. "description": "Enabling `Force` applies ACL even if the path has existing data",
  2640. "schema": {
  2641. "type": "boolean",
  2642. "default": false
  2643. }
  2644. }
  2645. ]
  2646. }
  2647. }
  2648. ],
  2649. "$ref": [
  2650. "normalize/acl"
  2651. ]
  2652. }
  2653. },
  2654. {
  2655. "variable": "hostPath",
  2656. "label": "Host Path",
  2657. "description": "The host path to use for storage.",
  2658. "schema": {
  2659. "type": "hostpath",
  2660. "show_if": [
  2661. [
  2662. "aclEnable",
  2663. "=",
  2664. false
  2665. ]
  2666. ],
  2667. "required": true
  2668. }
  2669. }
  2670. ]
  2671. }
  2672. },
  2673. {
  2674. "variable": "ixVolumeConfig",
  2675. "label": "ixVolume Configuration",
  2676. "description": "The configuration for the ixVolume dataset.",
  2677. "schema": {
  2678. "type": "dict",
  2679. "show_if": [
  2680. [
  2681. "type",
  2682. "=",
  2683. "ixVolume"
  2684. ]
  2685. ],
  2686. "$ref": [
  2687. "normalize/ixVolume"
  2688. ],
  2689. "attrs": [
  2690. {
  2691. "variable": "aclEnable",
  2692. "label": "Enable ACL",
  2693. "description": "Enable ACL for the dataset.",
  2694. "schema": {
  2695. "type": "boolean",
  2696. "default": false
  2697. }
  2698. },
  2699. {
  2700. "variable": "datasetName",
  2701. "label": "Dataset Name",
  2702. "description": "The name of the dataset to use for storage.",
  2703. "schema": {
  2704. "type": "string",
  2705. "required": true,
  2706. "immutable": true,
  2707. "default": "storage_entry"
  2708. }
  2709. },
  2710. {
  2711. "variable": "aclEntries",
  2712. "label": "ACL Configuration",
  2713. "schema": {
  2714. "type": "dict",
  2715. "show_if": [
  2716. [
  2717. "aclEnable",
  2718. "=",
  2719. true
  2720. ]
  2721. ],
  2722. "attrs": [
  2723. {
  2724. "variable": "path",
  2725. "label": "Path",
  2726. "description": "Path to perform ACL",
  2727. "schema": {
  2728. "type": "string",
  2729. "hidden": true
  2730. }
  2731. },
  2732. {
  2733. "variable": "entries",
  2734. "label": "ACL Entries",
  2735. "description": "ACL Entries",
  2736. "schema": {
  2737. "type": "list",
  2738. "items": [
  2739. {
  2740. "variable": "aclEntry",
  2741. "label": "ACL Entry",
  2742. "schema": {
  2743. "type": "dict",
  2744. "attrs": [
  2745. {
  2746. "variable": "id_type",
  2747. "label": "ID Type",
  2748. "schema": {
  2749. "type": "string",
  2750. "enum": [
  2751. {
  2752. "value": "USER",
  2753. "description": "Entry is for a USER"
  2754. },
  2755. {
  2756. "value": "GROUP",
  2757. "description": "Entry is for a GROUP"
  2758. }
  2759. ],
  2760. "default": "USER"
  2761. }
  2762. },
  2763. {
  2764. "variable": "id",
  2765. "label": "ID",
  2766. "description": "Make sure to check the ID value is correct and aligns with RunAs user context of the application",
  2767. "schema": {
  2768. "type": "int",
  2769. "required": true,
  2770. "min": 0
  2771. }
  2772. },
  2773. {
  2774. "variable": "access",
  2775. "label": "Access",
  2776. "schema": {
  2777. "type": "string",
  2778. "enum": [
  2779. {
  2780. "value": "READ",
  2781. "description": "Read Access"
  2782. },
  2783. {
  2784. "value": "MODIFY",
  2785. "description": "Modify Access"
  2786. },
  2787. {
  2788. "value": "FULL_CONTROL",
  2789. "description": "FULL_CONTROL Access"
  2790. }
  2791. ]
  2792. }
  2793. }
  2794. ]
  2795. }
  2796. }
  2797. ]
  2798. }
  2799. }
  2800. ]
  2801. }
  2802. }
  2803. ]
  2804. }
  2805. },
  2806. {
  2807. "variable": "smbConfig",
  2808. "label": "SMB Share Configuration",
  2809. "description": "The configuration for the SMB Share.",
  2810. "schema": {
  2811. "type": "dict",
  2812. "show_if": [
  2813. [
  2814. "type",
  2815. "=",
  2816. "smb-pv-pvc"
  2817. ]
  2818. ],
  2819. "attrs": [
  2820. {
  2821. "variable": "server",
  2822. "label": "Server",
  2823. "description": "The server for the SMB share.",
  2824. "schema": {
  2825. "type": "string",
  2826. "required": true
  2827. }
  2828. },
  2829. {
  2830. "variable": "share",
  2831. "label": "Share",
  2832. "description": "The share name for the SMB share.",
  2833. "schema": {
  2834. "type": "string",
  2835. "required": true
  2836. }
  2837. },
  2838. {
  2839. "variable": "domain",
  2840. "label": "Domain (Optional)",
  2841. "description": "The domain for the SMB share.",
  2842. "schema": {
  2843. "type": "string"
  2844. }
  2845. },
  2846. {
  2847. "variable": "username",
  2848. "label": "Username",
  2849. "description": "The username for the SMB share.",
  2850. "schema": {
  2851. "type": "string",
  2852. "required": true
  2853. }
  2854. },
  2855. {
  2856. "variable": "password",
  2857. "label": "Password",
  2858. "description": "The password for the SMB share.",
  2859. "schema": {
  2860. "type": "string",
  2861. "required": true,
  2862. "private": true
  2863. }
  2864. },
  2865. {
  2866. "variable": "size",
  2867. "label": "Size (in Gi)",
  2868. "description": "The size of the volume quota.",
  2869. "schema": {
  2870. "type": "int",
  2871. "required": true,
  2872. "min": 1,
  2873. "default": 1
  2874. }
  2875. }
  2876. ]
  2877. }
  2878. }
  2879. ]
  2880. }
  2881. }
  2882. ]
  2883. }
  2884. }
  2885. ]
  2886. }
  2887. },
  2888. {
  2889. "variable": "resources",
  2890. "label": "",
  2891. "group": "Resources Configuration",
  2892. "schema": {
  2893. "type": "dict",
  2894. "attrs": [
  2895. {
  2896. "variable": "limits",
  2897. "label": "Limits",
  2898. "schema": {
  2899. "type": "dict",
  2900. "attrs": [
  2901. {
  2902. "variable": "cpu",
  2903. "label": "CPU",
  2904. "description": "CPU limit for Immich.",
  2905. "schema": {
  2906. "type": "string",
  2907. "max_length": 6,
  2908. "valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
  2909. "valid_chars_error": "Valid CPU limit formats are</br>\n- Plain Integer - eg. 1</br>\n- Float - eg. 0.5</br>\n- Milicpu - eg. 500m\n",
  2910. "default": "4000m",
  2911. "required": true
  2912. }
  2913. },
  2914. {
  2915. "variable": "memory",
  2916. "label": "Memory",
  2917. "description": "Memory limit for Immich.",
  2918. "schema": {
  2919. "type": "string",
  2920. "max_length": 12,
  2921. "valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
  2922. "valid_chars_error": "Valid Memory limit formats are</br>\n- Suffixed with E/P/T/G/M/K - eg. 1G</br>\n- Suffixed with Ei/Pi/Ti/Gi/Mi/Ki - eg. 1Gi</br>\n- Plain Integer in bytes - eg. 1024</br>\n- Exponent - eg. 134e6\n",
  2923. "default": "8Gi",
  2924. "required": true
  2925. }
  2926. }
  2927. ]
  2928. }
  2929. }
  2930. ]
  2931. }
  2932. },
  2933. {
  2934. "variable": "immichGPU",
  2935. "group": "Resources Configuration",
  2936. "label": "GPU Configuration",
  2937. "schema": {
  2938. "type": "dict",
  2939. "$ref": [
  2940. "definitions/gpuConfiguration"
  2941. ],
  2942. "attrs": []
  2943. }
  2944. },
  2945. {
  2946. "variable": "immichGPUContainers",
  2947. "group": "Resources Configuration",
  2948. "label": "GPU Containers",
  2949. "description": "Select which containers should use GPU.",
  2950. "schema": {
  2951. "type": "dict",
  2952. "show_if": [
  2953. [
  2954. "immichGPU",
  2955. "!=",
  2956. {}
  2957. ]
  2958. ],
  2959. "attrs": [
  2960. {
  2961. "variable": "microservices",
  2962. "label": "Enable GPU for Microservices",
  2963. "schema": {
  2964. "type": "boolean",
  2965. "default": true
  2966. }
  2967. },
  2968. {
  2969. "variable": "machinelearning",
  2970. "label": "Enable GPU for Machine Learning",
  2971. "schema": {
  2972. "type": "boolean",
  2973. "default": true
  2974. }
  2975. }
  2976. ]
  2977. }
  2978. }
  2979. ]
  2980. },
  2981. "app_readme": "<h1>Immich</h1>\n<p><a href=\"https://immich.app\">Immich</a> - Self-hosted backup solution for photos and videos on mobile device</p>",
  2982. "detailed_readme": "<h1>Immich</h1>\n<p><a href=\"https://immich.app\">Immich</a> - Self-hosted backup solution for photos and videos on mobile device</p>",
  2983. "changelog": null
  2984. }
  2985. }