app_versions.json 235 KB

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