app_versions.json 238 KB

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