app_versions.json 235 KB

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