app_versions.json 236 KB

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